/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Spicyhunt - Restaurant 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. Our Dishes Css
07. Our Daily Offer Css
08. Our Menu Css
09. Intro Video Css
10. Our Ingredients Css
11. Our Testimonial Css
12. Our Blog Css
13. Reserve Table Css
14. Footer Css
15. About Us Page Css
16. Services Page Css
17. Service Single Css
18. Menu Page css
19. Blog Archive Css
20. Blog Single Css
21. Page Chefs Css
22. Chef Single Css
23. Testimonials Page css
24. Image Gallery css
25. Video Gallery css
26. FAQ Page css
27. Contact Us Page css
28. 404 Error Page css
29. Responsive css
-------------------------------------------------------------------------------------- */

@font-face {
    font-family: 'WonderGarden';
    src: url('../fonts/WonderGardenScript-Regular.eot');
    src: url('../fonts/WonderGardenScript-Regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/WonderGardenScript-Regular.woff2') format('woff2'),
         url('../fonts/WonderGardenScript-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'WonderGardenSans';
    src: url('../fonts/WonderGardenSansRegular-Regular.eot');
    src: url('../fonts/WonderGardenSansRegular-Regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/WonderGardenSansRegular-Regular.woff2') format('woff2'),
         url('../fonts/WonderGardenSansRegular-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color		    : #FFFFFF;
	--secondary-color		: #141414;
	--text-color			: #AEB0B4;
	--accent-color			: #cbae92;
	--divider-color			: #FFFFFF1A;
	--dark-divider-color	: #000000;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Lexend", sans-serif;
	--bg-texture			: url('../images/backgrounds/bg-texture.png');
	--gold: #c9a96e;
	--dark: #0a0a0a;
	--light-text: #f5f5f5;
}

/************************************/
/*** 	   02. General Css		  ***/
/************************************/

html {
	scroll-behavior: smooth;
  }

body{
	position: relative;
	font-family: var(--default-font);
	font-size: 18px;
	font-weight: 400;
	line-height: 1em;
	background-color: var(--dark-divider-color);
	color: var(--text-color);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.1em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

::selection{
	color: var(--white-color);
	filter: invert(1);
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.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{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--primary-color);
	border-radius: 30px;
	padding: 17px 58px 17px 30px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.btn-default:hover{
	background: transparent;
	color: var(--dark-divider-color);
}

.btn-default::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::before{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 14px;
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    transform: translate(-30px, -50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover:after{
	filter: brightness(0) invert(0);
	transform: translate(-28px, -50%);
}

.btn-default.btn-highlighted{
	background: var(--primary-color);
	color: var(--dark-divider-color);
}

.btn-default.btn-highlighted:hover{
	color: var(--primary-color);
}

.btn-default.btn-highlighted::before{
	background: var(--accent-color);
}

.btn-default.btn-highlighted:after{
	background-image: url('../images/arrow-dark.svg');
}

.btn-default.btn-highlighted:hover:after{
	filter: brightness(0) invert(1);
}

.btn-reverse {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--primary-color);
	color: var(--accent-color);
	border-radius: 30px;
	padding: 17px 58px 17px 30px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.btn-reverse:hover {
	background: transparent;
	color: var(--primary-color);
}

.btn-reverse::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: -15%;
	width: 0;
	height: 106%;
	background: var(--accent-color);
	transform: skew(-45deg);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-reverse:hover::before {
	width: 100%;
	transform: skew(0deg);
	right: 0;
}

.btn-reverse::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 14px;
	background-image: url('../images/arrow-dark.svg');
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	transform: translate(-30px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-reverse:hover::after {
	filter: brightness(0) invert(1);
	transform: translate(-28px, -50%);
}

.btn-reverse.btn-highlighted {
	background: var(--accent-color);
	color: var(--primary-color);
}

.btn-reverse.btn-highlighted:hover {
	color: var(--accent-color);
}

.btn-reverse.btn-highlighted::before {
	background: var(--primary-color);
}

.btn-reverse.btn-highlighted::after {
	background-image: url('../images/arrow-white.svg');
}

.btn-reverse.btn-highlighted:hover::after {
	filter: brightness(0) invert(0);
}

.menu-button {
	color: var(--accent-color);
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.3s ease;
  }

  .menu-button:hover {
	color: #fefae0;
  }

.readmore-btn{
    display: inline-block;
	background-image: url('../images/arrow-accent.svg');
    background-repeat: no-repeat;
    background-position: right 3px center;
    background-size: 18px auto;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 30px;
    border: none;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover{
	background-position: right center;
	color: var(--primary-color);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	text-align: center;
	max-width: 635px;
	margin: 0 auto;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 14px;
    font-weight: 700;
	line-height: 1.3em;
	letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
	padding-left: 16px;
    margin-bottom: 10px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 6px;
    height: 6px;
}

.section-title h1{
	font-size: 96px;
	line-height: 110%;
	letter-spacing: 0.15rem;
	font-weight: 200;
	text-transform: uppercase;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 42px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-title p{
	margin-top: 10px;
	margin-bottom: 0;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}



/************************************/
/**** 	   03. Header Css		 ****/
/************************************/


.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    padding: 10px 9px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg,#000 0,rgba(0,0,0,0) 100%);
}

.reserve-link {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    color: #ffffff;
	margin-right: 10px;
}

.logo {
    height: 65px;
	transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  	will-change: height, content;
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0c0c0c;
    z-index: 1045;
    display: flex;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
	overflow-y: hidden;
	scrollbar-width: none !important;
}

.sidebar::-webkit-scrollbar {
    display: none !important;
}

.sidebar.show {
    transform: translateX(0%);
}

.sidebar .left-panel {
    width: 50%;
    background: var(--bg-texture);
    color: white;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
    padding-left: 14%;
}

.sidebar .right-panel {
    width: 50%;
    background-color: #000;
}

.sidebar nav .nav-link {
    color: white;
    font-weight: 600;
    font-size: 27px;
    text-transform: uppercase;
    letter-spacing: 1px;
	padding: 0px !important;
}

.nav-item{
	margin-bottom: 48px;
	transition: .3s color ease;
	line-height: 160%;
  letter-spacing: .2rem;
}

.sidebar nav .nav-link.active {
    color: var(--accent-color);
    position: relative;
}

.sidebar nav .nav-link.active::after {
    content: "";
    position: absolute;

}

.contact-section {
    display: flex;
    align-items: flex-start;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-phone {
	font-size: 23px;
    color: #fffdea;
    margin: 0;
}

.contact-address {
    color: #888;
    font-size: 16px;
    margin: 0;
}

.menu-icons{
	margin-top: 48px;
}

@media (max-width: 991px) {
    .right-panel {
        display: none !important;
    }

    .sidebar .left-panel {
        width: 100% !important;
        padding: 3rem 2rem;
        align-items: center;
        text-align: center;
    }

    .contact-section {
        border-left: none;
        justify-content: center;
        text-align: center;
    }

	.sidebar nav .nav-link.active::after {
		left: 59px !important;
	}
}

@media (max-width: 768px) {
    .sidebar {
        flex-direction: column;
        transform: translateX(100%);
    }

    .sidebar .left-panel {
        width: 100% !important;
        background-color: #0c0c0c;
        padding: 12rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
		background-image: url(../images/sidebar-image/left-sidebar-pattern.svg);
		background-repeat: no-repeat; /* ⛔ stop repeating */
		background-size: cover;       /* ✅ stretch to fill nicely */
		background-position: center;  /* 🎯 keep it centered */
    }

    .logo {
        height: 40px;
    }

    .header {
        flex-direction: row-reverse;
    }

    .header .logo {
        margin-right: auto !important;
        margin-left: 0 !important;
    }

    .header .btn {
        margin-left: auto;
		--bs-btn-padding-x: 0px !important;
    }

}

.phone-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
	font-size: 10px;
    border-radius: 50%;
    border: 2px solid white;
    color: white;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.phone-circle:hover {
    background-color: white;
    color: #000;
}

.phone-circle-desktop {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	font-size: 14px;
	border-radius: 50%;
	border: 2px solid white;
	color: white;
	margin-right: 5px;
	transition: all 0.3s ease;
}

.phone-circle-desktop:hover {
    background-color: var(--accent-color);
	border: 2px solid var(--accent-color);
    color: #000;
}

.mx-4-custom{
	margin-right: 1rem!important;
}

/************************************/
/***        04. Hero Css	      ***/
/************************************/

.hero {
	position: relative;
	width: 100%;
	height: 97vh;
	overflow: hidden;
	display: flex;
	align-items: center;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.torn-overlay-bottom-header {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 170px;
    z-index: 11;
    pointer-events: none;
}

@media (max-width: 1080px) {
	.torn-overlay-bottom-header{
		bottom: -128px;
	}
}

@media (max-width: 1080px) {
	.torn-overlay-bottom-header{
		bottom: -134px;
	}
}

@media (max-width: 424px) {
	.torn-overlay-bottom-header{
		bottom: -134px;
	}
}

@media (max-width: 374px) {
	.torn-overlay-bottom-header{
		bottom: -141px;
	}
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	overflow: hidden;
    z-index: 0;
}
.background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none; /* prevent the video from blocking clicks */
}

  .content {
	position: absolute;
	z-index: 3;
	padding-left: 10%;
	width: 100%;
  }

  .content-mobile {
    position: absolute;
    bottom: 7rem;
    left: 1.5rem;
    color: white;
    text-align: left;
    z-index: 2;
	}

  .title {
    font-family: 'Lexend', sans-serif;
    font-size: 5vw;
    font-weight: 300;
    letter-spacing: 0.2em;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.script-container {
    position: relative;
    display: inline-block;
    margin-left: 40%;
    margin-top: -5%;
}
.script {
    font-family: 'WonderGarden', sans-serif;
    font-size: 20vw;
    color: var(--accent-color);
    font-weight: normal;
    line-height: 1;
    opacity: 1;
    transform: rotate(-5deg);
    margin: 0;
    position: absolute;
    z-index: 10;
    margin-top: -230px;
    margin-left: -410px;
}

  .torn-edge {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 3;
  }

  /* Responsive styles */
  @media (max-width: 1200px) {
	.title {
	  font-size: 6vw;
	}

	.script {
	  font-size: 20vw;
	  position: absolute;
	  z-index: 10;
	  margin-top: -116px;
      margin-left: -146px;
	}
  }

  @media (max-width: 768px) {
    .title {
        font-size: 8vw;
    }

    .script {
        font-size: 15vw;
		margin-top: -118px;
    	margin-left: -114px;
    }

	.content {
	  padding-left: 5%;
	}

    .script-container {
        margin-left: 30%;
        margin-top: -8%;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 10vw;
    }

    .script {
        font-size: 32vw;
		margin-top: -88px;
        margin-left: 69px;
    }

    .script-container {
        margin-left: 20%;
        margin-top: -10%;
    }
}

/************************************/
/***       05. About Us Css       ***/
/************************************/

.fifty-fifty {
	position: relative;
	padding-top: 94px;
	padding-bottom: 50px;
}

.fifty-fifty .container {
	position: relative;
	z-index: 10;
	padding-right: 17px;
  padding-left: 18px;
}

.flex-container {
	display: flex;
	border: 1px solid var(--accent-color);
	padding: 30px;
	position: relative;
  	overflow: visible;
	z-index: 10;
  }

.title-about{
	font-family: Lexend;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fffdea;
}

.title-about span{
	color: var(--accent-color);
}

@media (min-width: 1200px) {
	.container, .shrinked-container {
	  max-width: 1140px;
	}
  }

  .fifty-fifty .title-container {
	margin-bottom: 100px;
  }

  /* .fifty-fifty .flex-container .left-col {
	position: relative;
  } */

  .fifty-fifty .flex-container .left-col, .fifty-fifty .flex-container .right-col {
	width: 535px;
	height: auto;
	position: relative;
	padding: 45px 30px;

  }

  .fifty-fifty .flex-container .middle-border {
	width: 1px;
	height: auto;
	background: var(--accent-color);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
  }

  .fifty-fifty .flex-container .middle-border .absolute-text {
	position: absolute;
	font-family: Lexend;
	font-weight: 600;
	font-size: 13px;
	line-height: 160%;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #fff;
	transform: rotate(-90deg) translateY(-1px);
	transform-origin: center;
	white-space: nowrap;
	background: #000;
	padding: 0 24px;
  }

  .fifty-fifty .flex-container .right-col {
	width: 480px;
	height: auto;
	position: relative;
  }

  .fifty-fifty .flex-container .right-col .fancy-text-box {
	width: 480px;
	height: 100%;
	position: relative;
	z-index: 10;
	background: #000;
	border: 1px solid var(--accent-color);
	padding: 48px;
  }

  .fifty-fifty .flex-container .right-col .fancy-text-box .text-content {
	position: relative;
	z-index: 10;
  }

  .fifty-fifty .flex-container .right-col .fancy-text-box p {
	font-family: Trirong;
	font-weight: 300;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: .01em;
  }

  .fifty-fifty .flex-container .right-col .fancy-text-box a.arrow-btn {
	display: inline-flex;
	align-items: center;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: .01em;
	color: var(--accent-color);
	margin-top: 32px;
  }

  .fifty-fifty .flex-container .right-col .fancy-text-box .absolute-box {
	position: absolute;
	z-index: 5;
	width: 100%;
	height: 100%;
	background:#000;
	border: 1px solid var(--accent-color);
	top: -8px;
	left: -8px;
  }

  .fifty-fifty .flex-container .right-col .absolute-image {
	position: absolute;
	top: -100px;
	right: -100px;
	z-index: 5;
	width: 280px;
	height: 280px;
  }

  .fifty-fifty .flex-container .right-col .title-container {
	margin-top: 80px;
  }

  .fifty-fifty .title-container {
	margin-bottom: 100px;
  }

  .fifty-fifty .absolute-bottom {
	position: absolute;
	width: 100%;
	height: 295px;
	bottom: -231px;
	pointer-events: none;
	left: 0;
	z-index: 5;
  }

  .fifty-fifty .absolute-bottom img {
  	transform: rotate(180deg);
  }

  .fifty-fifty .flex-container .left-col .absolute-image {
	z-index: 5;
	width: 366px;
	height: 383px;
	position: absolute;
	bottom: 0;
	left: 0;
	margin-left: -95px;
	margin-bottom: -110px;
  }

  .about-us-footer{
	font-family: Lexend;
	font-weight: 500;
	font-size: 20px;
	line-height: 160%;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: #fffdea;
	max-width: 600px;
  }

  @media (max-width: 1080px) {
  .fifty-fifty .title-container {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
	text-align: center;
	margin-left:11%;
  }

.fifty-fifty .flex-container {
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
  }

  .fifty-fifty .flex-container .left-col {
    max-width: 580px;
    width: 100%;
    height: auto;
	padding: 10px;
  }

  .fifty-fifty .flex-container .left-col .absolute-image {
    width: 174px;
    height: 183px;
    margin-left: -35px;
    margin-bottom: -80px;
  }

  .fifty-fifty .flex-container .middle-border {
    display: none;
  }

  .fifty-fifty .flex-container .right-col {
    width: 100%;
    max-width: 580px;
    height: auto;
	padding: 10px;
    padding-bottom: 40px;
  }

  .fifty-fifty .flex-container .right-col .fancy-text-box {
    width: 100%;
    max-width: 580px;
    padding: 40px 32px;
  }

  .about-us-footer{
	margin-top: 40px !important;
	margin-left: auto;
    margin-right: auto;
  }

}

.about-us-btn-mob{
	margin-bottom: 30px !important;
}

@media (max-width: 992px) {
	.fifty-fifty .absolute-bottom {
	  bottom: -200px;
	}
  }

  @media (max-width: 767px) {
	.fifty-fifty .title-container {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
		text-align: center;
		margin-left:2%;
	  }
  }

@media (max-width: 424px) {
	.fifty-fifty .title-container {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
		margin-left: 5%;
	  }
	  .flex-container{
		padding: 15px;
	  }
  }

  .about-detail-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
	padding-top: 70px;
	/* border-top: 1px solid var(--divider-color); */
}

@media (max-width: 767px) {
	.about-detail-box{
		padding-top: 33px;
	}
}

.about-detail-item{
	width: calc(33.33% - 20px);
	display: flex;
	align-items: center;
}

.about-detail-item .icon-box {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 95, 31, 0.1); /* soft background tint */
	border: 2px solid var(--accent-color);
	border-radius: 50%;
	margin-right: 30px;
	transition: all 0.3s ease-in-out;
	box-shadow:
		inset 0 0 7px var(--accent-color),     /* inner glow */
		0 0 7px var(--accent-color),            /* outer soft glow */
		/* 0 0 10px #FF5F1F,           mid outer glow */
		0 0 20px rgba(203, 174, 146, 0.6); /* extended soft glow */
}

/* .about-detail-item:hover .icon-box{
	border-color: var(--primary-color);
} */

.about-detail-item .icon-box img {
	width: 100%;
	max-width: 40px;
	transition: all 0.3s ease-in-out;
	filter: drop-shadow(0 0 1px var(--accent-color) ) drop-shadow(0 0 2px var(--accent-color));
}

.about-detail-item:hover .icon-box img{
	transform: rotateY(180deg);
    /* filter: brightness(0) invert(1); */
}

.about-detail-content{
	width: calc(100% - 110px);
}

.about-detail-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.about-detail-content p{
	margin: 0;
}

.absolute-bottom{
	position: absolute;
	width: 100%;
	height: 230px;
	bottom: -150px;
	pointer-events: none;
	left: 0;
	z-index: 5;
}

.top-right-image {
	position: absolute;
	top: 105px;
	right: -118px;
	width: 300px;
	height: 300px;
	z-index: 9;
	pointer-events: none;
  }

  .bottom-left-image {
	position: absolute;
	bottom: 243px;
	left: -114px;
	width: 300px;
	height: 300px;
	z-index: 9;
	pointer-events: none;
  }

  @media (max-width: 1080px) {
	.about-detail-box{
		padding-top: 85px;
	}
	.top-right-image {
		width: 200px;
		height: 200px;
		top: 130px;
		right: -68px;
	}

	.bottom-left-image {
		width: 200px;
		height: 200px;
		bottom: 435px;
		left: -62px;
	}
  }

  @media (max-width: 767px) {
	.top-right-image {
		width: 200px;
		height: 200px;
		top: 257px;
		right: -65px;
	}

	.bottom-left-image {
		width: 200px;
		height: 200px;
		bottom: 432px;
		left: -65px;
	}
  }

  @media (max-width: 424px) {
	.top-right-image {
		width: 200px;
		height: 200px;
		top: 275px;
		right: -70px;
	}

	.bottom-left-image {
		width: 200px;
		height: 200px;
		bottom: 428px;
		left: -69px;
  }
}

  @media (max-width: 374px) {
	.top-right-image {
		width: 200px;
		height: 200px;
		top: 365px;
		right: -70px;
	}

	.bottom-left-image {
		width: 200px;
		height: 200px;
		bottom: 460px;
		left: -62px;
	}
  }

/************************************/
/***      06. Slider 2     ***/
/************************************/

#carouselBasicExample {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    height: 100vh;
    min-height: 500px;
	transition: transform 0.6s ease-in-out;
}

.carousel .carousel-fade .carousel-item {
	opacity: 0;
	transition-property: opacity;
	transform: none;
  }

  .carousel .carousel-fade .carousel-item.active,
  .carousel .carousel-fade .carousel-item-next.carousel-item-start,
  .carousel .carousel-fade .carousel-item-prev.carousel-item-end {
	opacity: 1;
  }

  .carousel .carousel-fade .active.carousel-item-start,
  .carousel .carousel-fade .active.carousel-item-end {
	opacity: 0;
  }

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.bg-dining{
	background-image: url('../images/slider-2/dining.webp');
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.bg-drinks{
	background-image: url('../images/slider-2/drinks.webp');
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.bg-food{
	background-image: url('../images/slider-2/food.webp');
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

@media (max-width: 767px) {
	.bg-dining{
		background-image: url('../images/slider-2/dining-mob.webp');
	}

	.bg-drinks{
		background-image: url('../images/slider-2/drinks-mob.webp');
	}

	.bg-food{
		background-image: url('../images/slider-2/food-mob.webp');
	}
}
/* Overlay for better text visibility */
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background: rgba(0, 0, 0, 0.5); */
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
}

/* Custom indicators styling */
.carousel-indicators.custom-indicators {
    position: static;
    margin-bottom: 20px;
    justify-content: center;
    z-index: 3;
    width: 100%;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    margin: 0 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--accent-color);
    transform: scale(1.3);
}

.carousel-caption h5 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;

}

.carousel-caption h5::after {
    content: "";
    display: block;
    width: 100px;
    height: 10px;
    background: url(images/section-images/brush-border.svg) no-repeat center center;
    margin: 10px auto;
}

.carousel-caption p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #f1f1f1;
    line-height: 1.7;
}

.torn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    z-index: 11;
    pointer-events: none;
    transform: rotate(180deg);
}

.torn-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 11;
    pointer-events: none;
}

.torn-overlay img,
.torn-overlay-bottom img {
    width: 100%;
    display: block;
}


/* Responsive styling */
@media (min-width: 768px) {
    .carousel-caption {
        padding-left: 160px;
        padding-right: 160px;
    }
    .carousel-caption p {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .carousel-caption p {
        font-size: 1rem;
    }
    .carousel-item {
        height: 80vh;
    }
}

@media (max-width: 991px) {
    .torn-overlay {
        top: -57px;
    }
    .torn-overlay-bottom {
        bottom: -57px;
    }

	.gallery {
		padding-top: 80px !important;
	}
}

@media (max-width: 767px) {
	.gallery {
        padding-bottom: 45px !important;
    }
    .torn-overlay {
        top: -27px;
    }
    .torn-overlay-bottom {
        bottom: -44px;
    }
}

@media (max-width: 740px) {
    .torn-overlay {
        top: -28px;
    }
}

@media (max-width: 730px) {
    .torn-overlay {
        top: -30px;
    }
}

@media (max-width: 715px) {
	.torn-overlay {
        top: -30px;
    }
}

@media (max-width: 700px) {
    .torn-overlay {
        top: -32px;
    }
}

@media (max-width: 680px) {
    .torn-overlay {
        top: -35px;
    }
}

@media (max-width: 660px) {
    .torn-overlay {
        top: -37px;
    }
}

@media (max-width: 640px) {
	.torn-overlay {
        top: -39px;
    }
}

@media (max-width: 620px) {
    .torn-overlay {
        top: -41px;
    }
}

@media (max-width: 610px) {
    .torn-overlay {
        top: -42px;
    }
}

@media (max-width: 599px) {
    .torn-overlay {
        top: -65px;
    }
    .torn-overlay-bottom {
        bottom: -46px;
    }
}

@media (max-width: 499px) {
    .torn-overlay {
        top: -67px;
    }
    .torn-overlay-bottom {
        bottom: -47px;
    }
}

@media (max-width: 425px) {
    .torn-overlay {
        top: -69px;
    }
    .torn-overlay-bottom {
        bottom: -47px;
    }
	.gallery{
		padding-bottom: 0px !important;
		padding-top: 85px !important;
	}
	.fifty-fifty .absolute-bottom {
        bottom: -230px;
    }
}

@media (max-width: 375px) {
    .torn-overlay {
        top: -75px;
    }
    .torn-overlay-bottom {
        bottom: -49px;
    }
}

@media (max-width: 360px) {
    .torn-overlay {
        top: -76px;
    }
    .torn-overlay-bottom {
        bottom: -52px;
    }
}

@media (max-width: 340px) {
    .torn-overlay {
        top: -77px;
    }
    .torn-overlay-bottom {
        bottom: -54px;
    }
}

@media (max-width: 320px) {
    .torn-overlay {
        top: -78px;
    }
    .torn-overlay-bottom {
        bottom: -55px;
    }
}

@media (min-width: 1440px) {
	.about-us-1 {
		padding-top: 310px !important;
	}
}

@media (min-width: 1080px) {
	.absolute-bottom-gallery{
		bottom: -175px !important;
	}
}

/************************************/
/***      06. Gallery      ***/
/************************************/

.gallery {
	padding-top: 185px;
	background: var(--bg-texture);
	padding-bottom: 456px;
}

.gallery-container {
	position: relative;
	width: 100%;
	max-width: 1000px;
	height: 450px;
	margin: 0 auto;
	perspective: 1200px;
}

.gallery-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
}

.gallery-item {
	position: absolute;
	width: 70%;
	aspect-ratio: 1 / 1;
	left: 15%;
	top: 10%;
	border-radius: 5px;
	/* box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5); */
	transition: all 0.6s ease;
	overflow: hidden;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Position items in 3D space */
.gallery-item:nth-child(1) {
	transform: translateX(-150%) scale(0.7);
	opacity: 1;
	z-index: 1;
	box-shadow:
        -10px 0 20px rgba(0, 0, 0, 0.8),
        10px 0 20px rgba(0, 0, 0, 0.8);
}

.gallery-item:nth-child(2) {
	transform: translateX(-75%) scale(0.8);
	opacity: 1;
	z-index: 2;
	box-shadow:
        -10px 0 20px rgba(0, 0, 0, 0.8),
        10px 0 20px rgba(0, 0, 0, 0.8);
}

.gallery-item:nth-child(3) {
	transform: translateX(0) scale(1);
	opacity: 1;
	z-index: 5;
	box-shadow:
        -10px 0 20px rgba(0, 0, 0, 0.8),
        10px 0 20px rgba(0, 0, 0, 0.8);
}

.gallery-item:nth-child(4) {
	transform: translateX(75%) scale(0.8);
	opacity: 1;
	z-index: 2;
	box-shadow:
        -10px 0 20px rgba(0, 0, 0, 0.8),
        10px 0 20px rgba(0, 0, 0, 0.8);
}

.gallery-item:nth-child(5) {
	transform: translateX(150%) scale(0.7);
	opacity: 1;
	z-index: 1;
	box-shadow:
        -10px 0 20px rgba(0, 0, 0, 0.8),
        10px 0 20px rgba(0, 0, 0, 0.8);
}

.gallery-item:nth-child(n+6) {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

.gallery-controls {
	position: absolute;
	width: 100%;
	top: 115%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 5%;
	z-index: 10;
}

.gallery-control {
	background: rgba(255, 255, 255, 0.3);
	border: none;
	color: white;
	font-size: 18px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.3s;
}

.gallery-control:hover {
	background: rgba(255, 255, 255, 0.5);
}


@media (max-width: 991px) {
	.gallery-controls{
		top: 91% !important;
	}

	.gallery{
		padding-bottom: 280px;
	}
}

@media (max-width: 767px) {
	.gallery-controls{
		top: 59% !important;
	}

}

/************************************/
/***      06. Our Dishes Css      ***/
/************************************/

.our-dishes{
	position: relative;
	background: var(--secondary-color);
	padding: 100px 0;
}

.our-dishes::before{
	content: '';
    display: block;
    position: absolute;
    left: -20px;
    top: 80px;
    background: url('../images/burger-image.png') no-repeat;
    background-position: left top;
    background-size: cover;
	transform: rotate(15deg);
    width: 180px;
    height: 180px;
    animation: burgermove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

@keyframes burgermove{
    0%{
		transform: translateY(0) rotate(45deg);
    }
    100%{
        transform: translateY(100px) rotate(-45deg);
    }
}

.our-dishes{
	position: relative;
	z-index: 1;
}

.our-dish-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	text-align: center;
}

.our-dish-item .our-dish-img{
	margin-bottom: 30px;
}

.our-dish-img figure{
	max-width: 200px;
	border-radius: 50%;
	display: inline-block;
}

.our-dish-img img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.our-dish-item:hover .our-dish-img img{
	transform: scale(1.1);
}

.our-dish-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.our-dish-content p{
	margin: 0;
}

.section-footer-text{
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p{
	color: var(--primary-color);
	margin: 0;
}

.section-footer-text p a{
	color: var(--accent-color);
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--primary-color);
}

/************************************/
/***   07. Our Daily Offer Css    ***/
/************************************/

.daily-offer{
	position: relative;
	padding: 100px 0;
}

.daily-offer::before{
	content: '';
    display: block;
    position: absolute;
    right: -140px;
    bottom: 80px;
    background: url('../images/pizza-img.png') no-repeat;
    background-position: right top;
    background-size: cover;
    width: 378px;
    height: 378px;
    animation: pizzamove 8s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

@keyframes pizzamove{
    0%{
		transform: rotate(30deg);
    }
    100%{
        transform: rotate(-30deg) ;
    }
}

.daily-offer .container{
	position: relative;
	z-index: 1;
}

.daily-offer-image{
	position: relative;
	margin-right: 30px;
}

.daily-offer-img img{
	width: 100%;
	aspect-ratio: 1 / 1.03;
	object-fit: contain;
}

.delicious-burger-box{
	width: 250px;
	position: absolute;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 14px;
	padding: 30px;
	overflow: hidden;
}

.delicious-burger-box::before{
	content: '';
    position: absolute;
    right: 0;
	left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
	border-radius: 14px;
	z-index: 0;
    transition: all 0.4s ease-in-out;
}

.delicious-burger-box:hover::before{
    height: 100%;
}

.delicious-burger-title{
	margin-bottom: 5px;
}

.delicious-burger-title h3{
	position: relative;
	font-size: 22px;
	font-weight: 600;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.delicious-burger-rating{
	margin-bottom: 15px;
}

.delicious-burger-rating i{
	position: relative;
	color: #FFAE00;
	font-size: 12px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.delicious-burger-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.delicious-burger-list ul li{
	position: relative;
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: normal;
	color: var(--primary-color);
	padding-left: 25px;
	margin-bottom: 8px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.delicious-burger-list ul li:last-child{
	margin-bottom: 0;
}

.delicious-burger-list ul li::before{
    content: '\f058';
    font-family: 'FontAwesome';
    font-weight: 400;
    font-size: 14px;
    color: var(--primary-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
	transition: all 0.3s ease-in-out;
}

.delicious-burger-box:hover .delicious-burger-title h3,
.delicious-burger-box:hover .delicious-burger-rating i,
.delicious-burger-box:hover .delicious-burger-list ul li,
.delicious-burger-box:hover .delicious-burger-list ul li::before{
	color: var(--dark-divider-color);
}

.daily-offer-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.daily-offer-list ul li{
	position: relative;
	text-transform: capitalize;
	line-height: normal;
	padding-left: 30px;
	margin-bottom: 15px;
}

.daily-offer-list ul li:last-child{
	margin-bottom: 0;
}

.daily-offer-list ul li::before{
    content: '\f058';
    font-family: 'FontAwesome';
    font-weight: 400;
    font-size: 18px;
    color: var(--accent-color);
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.daily-offer-btn{
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
	margin-top: 40px;
}

/************************************/
/***   		08. Our Menu Css      ***/
/************************************/

.our-menu{
	position: relative;
	background-color: var(--dark-divider-color);
	padding: 165px 0;
}

/* .our-menu:before{
	content: '';
    display: block;
    position: absolute;
    left: -40px;
    bottom: 170px;
    background: url(../images/chili-image-2.png) no-repeat;
    background-position: left top;
    background-size: cover;
    width: 180px;
    height: 225px;
    animation: chilimove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
} */

.our-menu-tab-nav{
	text-align: center;
	margin-bottom: 80px;
}

.our-menu-tab-nav ul{
	position: relative;
	list-style: none;
    text-align: center;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px 140px;
    padding: 20px 40px;
    margin: 0;
	background-color: transparent;
	border: none;
	border-radius: 100px;
	overflow: hidden;
}

.our-menu-tab-nav ul:before{
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    /* background: var(--primary-color); */
    opacity: 10%;
    border-radius: 30px;
    z-index: 0;
}

.our-menu-tab-nav ul li{
	position: relative;
	text-align: center;
}

.our-menu-tab-nav ul li:last-child{
	padding-right: 0;
}

.our-menu-tab-nav ul li .nav-link{
	display: block;
	width: 100%;
    background-color: transparent;
	border: none;
    color: var(--primary-color);
	font-size: 18px;
    font-weight: 500;
    line-height: 1.2em;
	padding: 0;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}



.our-menu-tab-nav ul li:last-child .nav-link::before{
    display: none;
}

.our-menu-tab-nav ul li .nav-link.active,
.our-menu-tab-nav ul li .nav-link:hover{
	background-color: transparent;
    color: var(--accent-color);
}

.our-menu-list{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	z-index: 2;
}

.our-menu-item{
	width: calc(50% - 30px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.our-menu-image{
	margin-right: 30px;
}

.our-menu-image figure{
	display: block;
	max-width: 100px;
	border-radius: 50%;
}

.our-menu-image img{
	width: 100%;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.menu-item-body{
	width: calc(100% - 130px);
}

.menu-item-title{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 10px;
}

.menu-item-title h3{
	width: 100%;
	max-width: fit-content;
	font-size: 20px;
	text-transform: uppercase;
}

.menu-item-title hr{
	height: 1px;
	width: 50%;
	color: var(--primary-color);
}

.menu-item-title span{
	color: var(--primary-color);
	font-weight: 700;
	font-size: 16px;
	background: var(--accent-color);
	border-radius: 14px;
	padding: 5px 20px;
}

.menu-item-content p{
	margin: 0;
}

.our-menu .section-footer-text{
	margin-top: 60px;
}

/************************************/
/***	 09. Intro Video Css      ***/
/************************************/

.intro-video .container-fluid{
	padding: 0;
}

.intro-video-box{
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 340px 0;
}

.intro-video-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
    background: linear-gradient(270deg, rgba(25, 35, 36, 0) 0%, rgba(31, 33, 32, 0.6) 80.94%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.intro-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.intro-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-play-button{
	position: relative;
	z-index: 1;
}

.video-play-button a{
	position: relative;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-button a:hover{
	color: var(--accent-color);
	border-color: var(--accent-color);
}

/************************************/
/***   10. Our Ingredients Css    ***/
/************************************/

.our-ingredients{
	position: relative;
	padding: 100px 0;
	background: var(--bg-texture);
}

/* .our-ingredients::before{
    content: '';
    display: block;
    position: absolute;
    left: -40px;
    top: 80px;
    background: url(../images/chili-image-2.png) no-repeat;
    background-position: left top;
    background-size: cover;
    width: 180px;
    height: 225px;
    animation: chilimove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
} */

/* .our-ingredients::after{
    content: '';
    display: block;
    position: absolute;
    right: -20px;
    bottom: 25%;
    background: url(../images/burger-image.png) no-repeat;
    background-position: right top;
    background-size: cover;
    transform: rotate(15deg);
    width: 180px;
    height: 180px;
    animation: burgermove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
} */

.our-ingredients .container{
	position: relative;
	z-index: 1;
}

.our-ingredients-image{
	position: relative;
	margin-right: 30px;
}

.our-ingredients-img figure{
	display: block;
}

.our-ingredients-img figure::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(14, 17, 13, 0) 79.74%, #0E110D 91.9%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.our-ingredients-img img{
	width: 100%;
	aspect-ratio: 1 / 1.044;
    object-fit: contain;
}

.happy-customer-box{
	position: absolute;
	width: 230px;
	bottom: 80px;
	left: 0;
	background: var(--accent-color);
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px #0000001A;
	text-align: center;
	padding: 30px;
	overflow: hidden;
	z-index: 1;
}

.happy-customer-box::before{
	content: '';
    position: absolute;
    right: 0;
	left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
	border-radius: 14px;
	z-index: 0;
    transition: all 0.3s ease-in-out;
}

.happy-customer-box:hover::before{
	height: 100%;
}

.happy-customer-content{
	position: relative;
	margin-bottom: 20px;
	z-index: 1;
}

.happy-customer-content h3{
	font-size: 22px;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

.happy-customer-content p{
	color: var(--primary-color);
	text-transform: capitalize;
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.happy-customer-box:hover .happy-customer-content h3,
.happy-customer-box:hover .happy-customer-content p{
	color: var(--dark-divider-color);
}

.happy-customer-images{
	display: flex;
	align-items: center;
	justify-content: center;
}

.customer-image{
	position: relative;
	display: inline-block;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
    margin-left: -16px;
	width: 40px;
	height: 40px;
	z-index: 1;
}

.customer-image:first-child{
    margin: 0;
}

.customer-image figure{
    display: block;
}

.customer-image img{
    width: 100%;
    border-radius: 50%;
}

.customer-image.add-more{
	width: 40px;
	height: 40px;
	background-color: var(--secondary-color);
	text-align: center;
	display: inline-flex;
    align-items: center;
    justify-content: center;
	transition: all 0.3s ease-in-out;
}

.customer-image.add-more:hover{
	background-color: var(--accent-color);
}

.customer-image.add-more i{
	color: var(--accent-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.customer-image.add-more:hover i{
	color: var(--dark-divider-color);
}

.our-ingredients-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.ingredients-list-item{
	position: relative;
	width: calc(33.33% - 20px);
	text-align: center;
}

.ingredients-list-item::before{
	content: '';
	position: absolute;
	top: 50%;
	right: -15px;
	bottom: 0;
	left: auto;
	transform: translateY(-50%);
	background: var(--accent-color);
	opacity: 14%;
	width: 1px;
	height: 50px;
}

.ingredients-list-item:nth-child(n + 3)::before,
.ingredients-list-item:last-child::before{
	display: none;
}

.ingredients-list-item .icon-box{
	text-align: center;
	margin-bottom: 15px;
}

.ingredients-list-item .icon-box img{
	width: 100%;
	max-width: 40px;
	filter: drop-shadow(0 0 1px #FF5F1F) drop-shadow(0 0 2px #FF5F1F);
}

.ingredients-list-content h3{
	font-size: 22px;
	text-transform: capitalize;
}

.our-ingredients-btn{
	margin-top: 40px;
}

.ingredient-counter-list{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	border-top: 1px solid var(--divider-color);
	padding-top: 60px;
}

.ingredient-counter-item{
	display: flex;
	align-items: center;
	width: calc(25% - 22.5px);
}

.ingredient-counter-item .icon-box{
	position: relative;
	height: 60px;
	width: 60px;
	border: 1px solid #FF5F1F;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	box-shadow: inset 0 0 7px #FF5F1F, 0 0 7px #FF5F1F, 0 0 20px rgba(255, 95, 31, 0.6);
}

.ingredient-counter-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
	border-radius: 50%;
	transform: scale(0);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.ingredient-counter-item:hover .icon-box::before{
	transform: scale(1);
}

.ingredient-counter-item .icon-box img{
	position: relative;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
	filter: drop-shadow(0 0 1px #FF5F1F) drop-shadow(0 0 2px #FF5F1F);
}

.ingredient-counter-item:hover .icon-box img{
	filter: brightness(0);
}

.ingredient-counter-content{
	width: calc(100% - 80px);
}

.ingredient-counter-content h2{
	font-size: 42px;
	margin-bottom: 5px;
}

.ingredient-counter-content p{
	text-transform: capitalize;
	margin-bottom: 0;
}

/************************************/
/***	11. Our Testimonial Css   ***/
/************************************/

.our-testimonial{
	position: relative;
	background: url('../images/testimonials-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    padding: 100px 0;
    overflow: hidden;
}

.our-testimonial:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-divider-color);
    opacity: 70%;
}

.testimonial-slider{
	position: relative;
}

.testimonial-slider .swiper{
    position: static;
    margin: 0 151px;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-item{
	text-align: center;
}

.testimonial-quote{
	text-align: center;
	margin-bottom: 30px;
}

.testimonial-quote img{
	max-width: 50px;
}

.testimonial-content{
	margin-bottom: 40px;
}

.testimonial-content p{
	font-size: 28px;
	line-height: 1.5em;
	margin: 0;
}

.author-image{
	margin-bottom: 20px;
}

.author-image figure,
.author-image img{
	border-radius: 50%;
	max-width: 80px;
	margin: 0 auto;
}

.author-content h3{
	color: var(--accent-color);
	font-size: 20px;
	text-transform: capitalize;
}

.testimonial-btn-prev,
.testimonial-btn-next{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	background-color: transparent;
	border: 2px solid var(--accent-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.testimonial-btn-prev{
	left: 0;
}

.testimonial-btn-next{
	right: 0;
}

.testimonial-btn-prev:hover,
.testimonial-btn-next:hover{
	background-color: var(--accent-color);
}

.testimonial-btn-prev::before,
.testimonial-btn-next::before{
	font-family: 'FontAwesome';
	content: '\f053';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	font-size: 20px;
	color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-btn .testimonial-btn-next::before{
	transform: rotate(180deg);
}

.testimonial-btn-prev:hover::before,
.testimonial-btn-next:hover::before{
	color: var(--primary-color);
}

/************************************/
/***		12. Our Blog Css	  ***/
/************************************/

.our-blog{
	position: relative;
	padding: 100px 0 70px;
}

.our-blog::before{
    content: '';
    display: block;
    position: absolute;
    left: -140px;
    bottom: 80px;
    background: url(../images/pizza-img.png) no-repeat;
    background-position: left top;
    background-size: cover;
    width: 300px;
    height: 300px;
    animation: pizzamove 8s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.our-blog::after{
    content: '';
    display: block;
    position: absolute;
    right: -20px;
    top: 100px;
    background: url(../images/chili-image.png) no-repeat;
    background-position: right top;
    background-size: cover;
    width: 180px;
    height: 225px;
    animation: chilimove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.our-blog .container{
	position: relative;
	z-index: 1;
}

.post-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image{
	margin-bottom: 20px;
}

.post-featured-image a{
	display: block;
	cursor: none;
}

.post-featured-image figure{
	border-radius: 30px;
	overflow: hidden;
}

.post-featured-image img{
	width: 100%;
	aspect-ratio: 1 / 0.7687;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-content{
	margin-bottom: 20px;
}

.post-item-content h3{
	font-size: 22px;
	line-height: 1.4em;
}

.post-item-content h3 a{
	color: inherit;
}

/************************************/
/***	 13. Reserve Table Css    ***/
/************************************/

.reserve-table{
	background: linear-gradient(180deg, var(--secondary-color) 84%, var(--dark-divider-color) 16%);
	padding: 100px 0 0;
}

.reserve-table-body h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.reserve-table-body ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.reserve-table-body ul li{
    position: relative;
	width: 100%;
    text-transform: capitalize;
	display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.reserve-table-body ul li:last-child{
    margin-bottom: 0;
}

.reserve-table-body ul li span{
	width: 85%;
    font-size: 16px;
    font-weight: 400;
    text-transform: initial;
    color: var(--text-color);
}

.reserve-table-form{
	border-radius: 14px;
	padding: 60px 40px;
	border: 1px solid var(--accent-color);
}

.reserve-table-form .form-label{
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.reserve-table-form .form-control{
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	color: var(--text-color);
	border: 1px solid var(--text-color);
	background-position: right 6px center;
	border-radius: 10px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.reserve-table-form .form-control::placeholder{
	color: var(--text-color);
}

.reserve-table-form .form-control.form-select option{
	color: var(--dark-divider-color);
}

.reserve-table-btn{
	margin-top: 25px;
}

.reserve-table-btn .btn-default{
	width: 100%;
	padding: 17px 30px;
}

.reserve-table-btn .btn-default:hover{
	color: var(--secondary-color);
}

.reserve-table-btn .btn-default::before{
	background: var(--primary-color);
}

.reserve-table-btn .btn-default::after{
	display: none;
}

.btn-default-transparent {
	position: relative;
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: transparent;
	color: var(--primary-color);
	border: 2px solid #fff;
	border-radius: 30px;
	padding: 12px 37px 12px 20px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.btn-default-transparent:hover {
    background: transparent;
    color: var(--dark-divider-color);
	border: 2px solid var(--accent-color);

}

.btn-default-transparent::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: var(--accent-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default-transparent:hover::before {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default-transparent::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -13px;
	width: 14px;
	height: 13px;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	transform: translate(-30px, -50%);
	transition: all 0.4s ease-in-out;
  }

.btn-default-transparent:hover::after {
    filter: brightness(0) invert(0);
    transform: translate(-28px, -50%);
}
/************************************/
/***		14. Footer Css  	  ***/
/************************************/

.footer-logo{
	margin-bottom: 40px;
}

.footer-logo img{
	max-width: 197px;
}

.footer-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.footer-contact-item:last-child{
	margin-bottom: 0;
}

.footer-contact-item .icon-box{
	margin-right: 10px;
}

.footer-contact-item .icon-box img{
	width: 100%;
	max-width: 24px;
}

.footer-contact-content p{
	margin: 0;
}

.footer-contact-content p a{
	color: inherit;
}

.footer-copyright{
	padding-top: 40px;
}

.footer-social-icon ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-icon ul li{
	display: inline-block;
	border-radius: 50%;
	margin-right: 15px;
}

.footer-social-icon ul li:last-child{
	margin-right: 0;
}

.footer-social-icon ul li a{
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	width: 53px;
	height: 53px;
	display: flex;
	justify-content: center;
	transition: all 0.3s ease-in-out;
	padding: 12px;
}

.footer-social-icon ul li:hover a{
	background: var(--accent-color);
}

.footer-social-icon ul li a i{
	color: var(--primary-color);
	font-size: 20px;
	transition: all 0.3s ease-in-out;
}

.footer-social-icon ul li:hover a i{
	color: var(--dark-divider-color);
}

.footer-copyright-text{
	text-align: right;
}

.footer-copyright-text p{
	margin: 0;
}

.footer-torn-edge {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin-bottom: -1px;
    /* transform: rotate(180deg); */
}

.footer-torn-edge img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/************************************/
/***	 15. About Us Page Css    ***/
/************************************/

.about-page-header{
    position: relative;
	background: url('../images/pages-header/about-us.webp');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 270px 0 155px;
}

.about-page-header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);;
    opacity: 80%;
}

.menu-page-header{
    position: relative;
	background: url('../images/pages-header/menu.webp');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 270px 0 155px;
}

.menu-page-header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);;
    opacity: 80%;
}

.book-a-table-page-header{
    position: relative;
	background: url('../images/pages-header/book-a-table.webp');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 270px 0 155px;
}

.book-a-table-page-header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);;
    opacity: 80%;
}
.book-a-table-page-header::after{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: url(../images/backgrounds/torn-page-bg.webp);
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: auto 100%;
    z-index: 2;
}

.page-header-box{
    position: relative;
	text-align: center;
    z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	font-size: 68px;
    font-weight: 800;
	line-height: 1.1em;
	text-transform: uppercase;
	color: var(--primary-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 18px;
	text-transform: capitalize;
	color: var(--text-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--text-color);
}

.our-approach{
	position: relative;
	background: var(--secondary-color);
	padding: 100px 0;
}

.our-approach::before{
    content: '';
    display: block;
    position: absolute;
    left: -20px;
    top: 80px;
    background: url(../images/burger-image.png) no-repeat;
    background-position: left top;
    background-size: cover;
    transform: rotate(15deg);
    width: 180px;
    height: 180px;
    animation: burgermove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.our-approch-tab-nav{
	text-align: center;
	margin-bottom: 80px;
}

.our-approch-tab-nav ul{
	position: relative;
	list-style: none;
    text-align: center;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px 60px;
    padding: 20px 40px;
    margin: 0;
	background-color: transparent;
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	border: none;
	border-radius: 100px;
	overflow: hidden;
}

.our-approch-tab-nav ul:before{
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    opacity: 10%;
    border-radius: 30px;
    z-index: 0;
}

.our-approch-tab-nav ul li{
	position: relative;
	text-align: center;
}

.our-approch-tab-nav ul li:last-child{
	padding-right: 0;
}

.our-approch-tab-nav ul li .nav-link{
	display: block;
	width: 100%;
    background-color: transparent;
	border: none;
    color: var(--primary-color);
	font-size: 18px;
    font-weight: 500;
    line-height: 1.2em;
	padding: 0;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.our-approch-tab-nav ul li .nav-link::before{
    content: '';
    position: absolute;
    top: 50%;
    right: -34px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translateY(-50%);
    height: 8px;
    width: 8px;
}

.our-approch-tab-nav ul li:last-child .nav-link::before{
    display: none;
}

.our-approch-tab-nav ul li .nav-link.active,
.our-approch-tab-nav ul li .nav-link:hover{
	background-color: transparent;
    color: var(--accent-color);
}

.approch-tab-content .section-title{
	margin-bottom: 20px;
}

.approch-tab-content-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.approch-tab-content-list ul li{
	position: relative;
	text-transform: capitalize;
	line-height: normal;
	padding-left: 30px;
	margin-bottom: 15px;
}

.approch-tab-content-list ul li:last-child{
	margin-bottom: 0;
}

.approch-tab-content-list ul li::before{
    content: '\f058';
    font-family: 'FontAwesome';
    font-weight: 400;
    font-size: 18px;
    color: var(--accent-color);
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.approch-tab-image figure{
	display: block;
	border-radius: 30px;
}

.approch-tab-image img{
	width: 100%;
    aspect-ratio: 1 / 0.75;
	object-fit: cover;
}

.our-team{
	position: relative;
	padding: 100px 0;
}

.our-team::before{
    content: '';
    display: block;
    position: absolute;
    left: -40px;
    top: 80px;
    background: url(../images/chili-image-2.png) no-repeat;
    background-position: left top;
    background-size: cover;
    width: 180px;
    height: 225px;
    animation: chilimove 6s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.team-item{
    position: relative;
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-image a{
    position: relative;
    display: block;
	cursor: none;
}

.team-image figure{
	display: block;
	border-radius: 28px;
}

.team-image figure::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
	width: 100%;
	height: 50%;
    z-index: 1;
}

.team-image img{
    width: 100%;
    aspect-ratio: 1 / 1.356;
    object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img{
	transform: scale(1.1);
}

.team-body{
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    transform: translateY(40px);
    text-align: center;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-item:hover .team-body{
    transform: translateY(0);
}

.team-content h3{
    font-size: 20px;
	font-weight: 700;
    text-transform: capitalize;
	color: var(--primary-color);
    margin-bottom: 5px;
}

.team-content h3 a{
    color: inherit;
}

.team-content p{
    text-transform: capitalize;
    margin-bottom: 0;
}

.team-social-list{
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.team-item:hover .team-social-list{
    margin-top: 15px;
    opacity: 1;
    visibility: visible;
}

.team-social-list ul{
	display: flex;
	justify-content: center;
	gap: 15px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social-list ul li a{
	width: 40px;
	height: 40px;
	color: var(--primary-color);
	background: transparent;
	border-radius: 50%;
	border: 1px solid var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-list ul li:hover a{
	border-color: var(--accent-color);
	color: var(--dark-divider-color);
	background: var(--accent-color);
}

.team-social-list ul li a i{
    font-size: 18px;
    color: inherit;
}

.our-faqs{
	position: relative;
	padding: 100px 0;
}

.our-faqs::before{
    content: '';
    display: block;
    position: absolute;
    left: -40px;
    top: 40%;
    background: url(../images/chili-image-2.png) no-repeat;
    background-position: left top;
    background-size: cover;
    width: 180px;
    height: 225px;
    animation: chilimove 6s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.our-faqs::after{
    content: '';
    display: block;
    position: absolute;
    right: -20px;
    top: 15%;
    background: url(../images/burger-image.png) no-repeat;
    background-position: right top;
    background-size: cover;
    transform: rotate(15deg);
    width: 180px;
    height: 180px;
    animation: burgermove 6s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.our-faqs-content{
	position: sticky;
	top: 20px;
	margin-right: 40px;
}

.faq-accordion .accordion-item{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq-accordion .accordion-item:last-child{
    margin-bottom: 0;
	padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button{
    font-size: 22px;
	font-weight: 700;
    line-height: 1.4em;
    color: var(--primary-color);
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed){
    margin-bottom: 10px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    content: '\f063';
    font-family: 'FontAwesome';
    font-size: 14px;
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 2px;
    height: 24px;
    width: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
	color: var(--accent-color);
	border-color: var(--accent-color);
    transform: rotate(180deg);
}

.faq-accordion .accordion-item .accordion-body{
	padding-right: 30px;
}

.accordion-item .accordion-body p{
    margin-bottom: 15px;
}

.accordion-item .accordion-body p:last-child{
    margin-bottom: 0;
}

@media (max-width:991px) {
	.about-detail-item{
        width: 100%;
		border-bottom: 1px solid rgba(108, 108, 108, 0.3);
    	padding-bottom: 30px;
    }
}

/************************************/
/***	 16. Services Page Css    ***/
/************************************/

.page-services{
	position: relative;
	padding: 100px 0 70px;
}

.page-services::before{
	content: '';
    display: block;
    position: absolute;
    left: -20px;
    top: 80px;
    background: url(../images/burger-image.png) no-repeat;
    background-position: left top;
    background-size: cover;
    transform: rotate(15deg);
    width: 180px;
    height: 180px;
    animation: burgermove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-services .container{
	position: relative;
	z-index: 1;
}

.service-item{
	background: var(--dark-divider-color);
    border: 1px solid var(--divider-color);
    border-radius: 14px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
    padding: 40px;
	transition: all 0.3s ease-in-out;
}

.service-item:hover{
	transform: translateY(-3px);
}

.service-item .icon-box{
	margin-bottom: 30px;
}

.service-item .icon-box img{
	max-width: 40px;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box img{
	filter: brightness(0) invert(1);
	transform: rotateY(180deg);
}

.service-item-content{
	margin-bottom: 20px;
}

.service-item-content h3{
	font-size: 22px;
	margin-bottom: 10px;
}

.service-item-content p{
	margin: 0;
}

/************************************/
/***	17. Service Single Css    ***/
/************************************/

.page-service-single{
	position: relative;
	padding: 100px 0;
}

.page-service-single::before{
	content: '';
    display: block;
    position: absolute;
    left: -140px;
    top: 80px;
    background: url(../images/pizza-img.png) no-repeat;
    background-position: left top;
    background-size: cover;
    width: 300px;
    height: 300px;
    animation: pizzamove 8s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-service-single::after{
	content: '';
    display: block;
    position: absolute;
    right: -20px;
    bottom: 150px;
    background: url(../images/chili-image.png) no-repeat;
    background-position: right top;
    background-size: cover;
    width: 180px;
    height: 225px;
    animation: chilimove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-service-single .container{
	position: relative;
	z-index: 1;
}

.service-sidebar{
    position: sticky;
    top: 30px;
	margin-right: 30px;
}

.service-catagery-list{
	background-color: var(--secondary-color);
	border: 1px solid var(--divider-color);
    border-radius: 14px;
    margin-bottom: 40px;
}

.service-catagery-list h3{
    font-size: 22px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
    padding: 30px 30px 20px;
}

.service-catagery-list ul{
    list-style: none;
    margin: 0;
    padding: 20px 30px 30px;
}

.service-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-catagery-list ul li a{
    position: relative;
    display: block;
    text-transform: capitalize;
    color: var(--text-color);
	padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a{
    color: var(--accent-color);
}

.service-catagery-list ul li a::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/arrow-accent.svg) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 18px;
    height: 16px;
	transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li a:hover::before{
    transform: rotate(0);
}

.sidebar-cta-box{
    padding: 30px;
	background: var(--accent-color);
    border-radius: 14px;
    text-align: center;
}

.sidebar-cta-box .icon-box{
    margin-bottom: 40px;
}

.sidebar-cta-box .icon-box img{
    max-width: 60px;
}

.cta-contact-content{
    margin-bottom: 20px;
}

.cta-contact-content h3{
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-contact-content p{
	color: var(--primary-color);
    margin-bottom: 0;
}

.cta-contact-btn{
    position: relative;
}

.cta-contact-btn a{
    line-height: 1.5em;
    padding: 13px 30px;
    display: inline-flex;
    align-items: center;
}

.cta-contact-btn .btn-default.btn-highlighted::before{
    background: var(--dark-divider-color);
}

.cta-contact-btn a.btn-default::after{
	display: none;
}

.cta-contact-btn a img{
    margin-right: 10px;
    max-width: 18px;
    transition: all 0.4S ease-in-out;
}

.cta-contact-btn a:hover img{
    filter: brightness(1) invert(1);
}

.service-featured-image{
	margin-bottom: 20px;
}

.service-featured-image figure{
	display: block;
	border-radius: 30px;
}

.service-featured-image img{
	width: 100%;
	aspect-ratio: 1 / 0.55;
	object-fit: cover;
	border-radius: 30px;
}

.service-entry{
	margin-bottom: 50px;
}

.service-entry p{
	margin-bottom: 20px;
}

.service-entryp:last-child{
	margin-bottom: 0;
}

.service-entry h2{
	font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-entry h2 span{
	color: var(--accent-color);
}

.service-key-features{
	margin-top: 50px;
}

.service-entry-list-image{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: center;
}

.service-entry-list{
	width: calc(62% - 15px);
}

.service-entry-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-entry-list ul li{
	position: relative;
	text-transform: capitalize;
	line-height: normal;
	padding-left: 30px;
	margin-bottom: 20px;
}

.service-entry-list ul li:last-child{
	margin-bottom: 0;
}

.service-entry-list ul li::before{
    content: '\f058';
    font-family: 'FontAwesome';
    font-weight: 400;
    font-size: 18px;
    color: var(--accent-color);
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.service-entry-image{
	width: calc(38% - 15px);
}

.service-entry-image figure{
	display: block;
	border-radius: 14px;
	overflow: hidden;
}

.service-entry-image img{
	width: 100%;
	aspect-ratio: 1 / 0.522;
	object-fit: cover;
	border-radius: 14px;
}

/************************************/
/*** 	  18. Menu Page css	      ***/
/************************************/

.page-menu{
	padding: 100px 0;
}

.special-menu-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 50px;
}

.special-menu-item{
	width: calc(16.66% - 57.66px);
	text-align: center;
}

.special-menu-item .special-menu-img{
	margin-bottom: 30px;
}

.special-menu-img a{
	display: block;
	cursor: none;
}

.special-menu-img figure{
	max-width: 150px;
	border-radius: 50%;
	display: inline-block;
	overflow: hidden;
}

.special-menu-img img{
	width: 70%;
	/* aspect-ratio: 1 / 1; */
	object-fit: cover;
	transition: all 0.3s ease-in-out;
	border-radius: 999px;
}

@media (max-width: 767px) {
	.special-menu-img img{
		width: 50%;
		/* aspect-ratio: 1 / 1; */
		object-fit: cover;
		transition: all 0.3s ease-in-out;
		border-radius: 999px;
	}
}

.special-menu-item:hover .special-menu-img img{
	transform: scale(1.1);
}

.special-menu-item-content h3{
	color: var(--primary-color);
	font-size: 22px;
	text-transform: capitalize;
}

.special-menu-item-content h3 a{
	display: inline-block;
	color: inherit;
}

.our-food-menu .food-menu-item{
	padding: 100px 0;
}

.our-food-menu .food-menu-item:nth-child(odd){
	background: var(--secondary-color);
}

.food-menu-item .food-menu-sidebar{
	position: sticky;
	top: 20px;
}

.food-menu-sidebar .section-title{
	margin-bottom: 0;
}

.food-menu-item .our-menu-list{
	gap: 60px 30px;
}

.food-menu-item .our-menu-item{
	width: calc(50% - 15px);
}

.food-menu-item .our-menu-image{
    margin-right: 15px;
}

.food-menu-item .menu-item-body{
    width: calc(100% - 115px);
}

.food-menu-item .our-menu-item .menu-item-title hr{
    width: 17%;
}

/************************************/
/***	 19. Blog Archive Css     ***/
/************************************/

.page-blog{
	padding: 100px 0;
}

.page-pagination{
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover{
    background: var(--accent-color);
}


/************************************/
/***	 20.  Blog Single Css     ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--primary-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--accent-color);
    margin-right: 5px;
}

.post-image{
	width: 100%;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
	overflow: hidden;
	border-radius: 30px;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 30px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 700;
	line-height: 1.2em;
    text-transform: uppercase;
	margin: 0 0 0.477em;
}

.post-entry h1{
	font-size: 68px;
}

.post-entry h2{
	font-size: 42px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--dark-divider-color);
	font-size: 20px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
	line-height: 1.6em;
    color: var(--text-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url('../images/icon-blockquote.svg'), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
    background-size: 50px;
	border-radius: 14px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6em;
	color: var(--primary-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-size: 20px;
	font-weight: 700;
    text-transform: uppercase;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
	background: var(--accent-color);
    color: var(--primary-color);
	border-radius: 30px;
    padding: 10px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
	color: var(--dark-divider-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--accent-color);
	border: 1px solid var(--divider-color);
	border-radius: 50%;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***	  21. Page Chefs Css   	  ***/
/************************************/

.page-team{
	position: relative;
	padding: 100px 0 70px;
}

.page-team::before{
	content: '';
    display: block;
    position: absolute;
    left: -140px;
    top: 150px;
    background: url(../images/pizza-img.png) no-repeat;
    background-position: left top;
    background-size: cover;
    width: 300px;
    height: 300px;
    animation: pizzamove 8s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-team .container{
	position: relative;
	z-index: 1;
}

/************************************/
/***     22. Chef Single Css      ***/
/************************************/

.page-team-single{
	position: relative;
    padding: 100px 0;
}

.page-team-single::before{
	content: '';
    display: block;
    position: absolute;
    right: -140px;
    top: 80px;
    background: url(../images/pizza-img.png) no-repeat;
    background-position: right top;
    background-size: cover;
    width: 300px;
    height: 300px;
    animation: pizzamove 8s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-team-single::after{
	content: '';
    display: block;
    position: absolute;
    left: -40px;
    bottom: 170px;
    background: url(../images/chili-image-2.png) no-repeat;
    background-position: left top;
    background-size: cover;
    width: 180px;
    height: 225px;
    animation: chilimove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-team-single .container{
	position: relative;
	z-index: 1;
}

.team-single-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 25px;
}

.team-single-image{
	margin-bottom: 40px;
}

.team-single-image figure{
	display: block;
	border-radius: 30px;
    overflow: hidden;
}

.team-single-image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.14;
    overflow: hidden;
}

.team-member-info{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
    margin-bottom: 40px;
}

.team-info-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-info-list ul li{
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.team-info-list ul li:last-child{
    margin-bottom: 0;
}

.team-info-list ul li span{
    width: 72%;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    color: var(--primary-color);
}

.member-involvement-list ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.member-involvement-list ul li{
    position: relative;
    padding-left: 25px;
	margin-bottom: 15px;
}

.member-involvement-list ul li:last-child{
	margin-bottom: 0;
}

/************************************/
/***     23. Testimonials css	  ***/
/************************************/

.page-testimonials{
	position: relative;
	padding: 100px 0 70px;
}

.page-testimonials::before{
    content: '';
    display: block;
    position: absolute;
    right: -140px;
    top: 30%;
    background: url(../images/pizza-img.png) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 378px;
    height: 378px;
    animation: pizzamove 8s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-testimonials .container{
	position: relative;
	z-index: 1;
}

.testimonial-box-item{
	background-color: var(--dark-divider-color);
	border: 1px solid var(--divider-color);
	border-radius: 14px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.testimonial-rating{
	text-align: center;
	margin-bottom: 20px;
}

.testimonial-rating i{
	color: var(--accent-color);
	font-size: 16px;
}

.testimonial-box-content{
	text-align: center;
	margin-bottom: 30px;
}

.testimonial-box-content p{
	margin: 0;
}

.client-author-image{
	text-align: center;
	margin-bottom: 15px;
}

.client-author-image figure{
	display: inline-block;
	width: 100%;
	max-width: 80px;
	border-radius: 50%;
}

.client-author-image img{
	width: 100%;
}

.client-author-content{
	text-align: center;
}

.client-author-content h3{
	color: var(--primary-color);
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.client-author-content p{
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***   	24. Image Gallery css	  ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 30px;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.82;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/***   	25. Video Gallery css	  ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-divider-color);
	border-radius: 30px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 40%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--primary-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	aspect-ratio: 1 / 0.82;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/***    	26. FAQ Page css	  ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.faq-catagery-list{
	border: 1px solid var(--divider-color);
	border-radius: 14px;
    margin-bottom: 40px;
	padding: 30px;
}

.faq-catagery-list ul{
    list-style: none;
    margin: 0;
	padding: 0;
}

.faq-catagery-list ul li{
    margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--divider-color);
}

.faq-catagery-list ul li:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.faq-catagery-list ul li a{
    position: relative;
    display: block;
    color: var(--text-color);
    text-transform: capitalize;
	padding-right: 20px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a{
    color: var(--primary-color);
}

.faq-catagery-list ul li a::before{
	content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--text-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    right: 0;
    transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a::before{
	transform: translateY(-50%) rotate(0deg);
	color: var(--primary-color);
}

.page-faq-accordion{
	margin-bottom: 60px;
}

.page-faq-accordion:last-child{
	margin-bottom: 0px;
}

/************************************/
/***   	27. Contact Us Page css   ***/
/************************************/

.page-contact-us{
	padding: 100px 0;
}

.contact-us-content{
	margin-right: 45px;
}

.contact-info-list{
	margin-bottom: 30px;
}

.contact-info-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-info-list ul li{
	margin-bottom: 20px;
}

.contact-info-list ul li a{
	color: inherit;
}

.contact-info-list ul li:last-child{
	margin-bottom: 0;
}

.contact-social-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-social-list ul li{
	display: inline-block;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.contact-social-list ul li:last-child{
	margin-right: 0;
}

.contact-social-list ul li a{
	border: 1px solid var(--divider-color);
	color: var(--primary-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	transition: all 0.3s ease-in-out;
	padding: 5px;
}

.contact-social-list ul li a:hover{
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--dark-divider-color);
}

.contact-social-list ul li a i{
	font-size: 20px;
	color: inherit;
}

.contact-form{
	background: var(--secondary-color);
	border-radius: 14px;
	padding: 60px 40px;
}

.contact-form .form-label{
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	color: var(--primary-color);
	background: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 8px;
	padding: 15px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--primary-color);
}

.contact-form .btn-default{
	padding: 17px 30px;
	width: 100%;
}

.contact-form .btn-default:after{
	display: none;
}

.google-map .container-fluid{
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
    height: 600px;
    width: 100%;
}

/************************************/
/***    28. 404 Error Page css    ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 40px;
}

.error-page-image img{
	width: 100%;
	max-width: 50%;
}

 .error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 10px;
}

.error-page-content-body p{
	color: var(--primary-color);
	margin-bottom: 20px;
}

/************************************/
/***      29. Responsive css      ***/
/************************************/

@media only screen and (max-width: 991px){

	.navbar{
		padding: 20px 0;
	}

	.main-menu ul li.highlighted-menu{
		display: block;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.btn-default{
		padding: 15px 53px 15px 25px;
	}

	.btn-default::after{
		transform: translate(-25px, -50%);
	}

	.btn-default:hover:after{
		transform: translate(-23px, -50%);
	}

	.header-btn{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-row .section-title{
		max-width: 100%;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 50px;
	}

	.section-title h2{
		font-size: 34px;
	}

	.section-btn{
		text-align: left;
		margin-top: 10px;
	}

	.hero{
		padding: 140px 0 50px;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 140px 0 50px;
	}

    .hero-content{
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero-content .section-title{
        margin-bottom: 30px;
    }

    .hero-images{
        max-width: 60%;
        margin: 0 auto;
		padding: 0 40px 0 40px;
    }

	.hero-circle-img-1 figure,
	.hero-circle-img-2 figure{
		max-width: 120px;
	}

	/* about us css */


	.our-dishes{
		padding: 50px 0;
	}

	.our-dishes::before{
		width: 140px;
    	height: 140px;
		opacity: 40%;
	}

	.our-dish-item .our-dish-img{
		margin-bottom: 20px;
	}

	.our-dish-img figure{
		max-width: 160px;
	}

	.our-dish-content h3{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.section-footer-text{
		margin-top: 10px;
	}

	.daily-offer{
		padding: 50px 0;
	}

	.daily-offer::before{
		width: 250px;
    	height: 250px;
		right: -100px;
		bottom: 50px;
		opacity: 40%;
	}

	.daily-offer-image{
		position: relative;
		max-width: 70%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.delicious-burger-box{
		width: 200px;
		padding: 20px;
	}

	.delicious-burger-title h3{
		font-size: 20px;
	}

	.delicious-burger-rating{
		margin-bottom: 10px;
	}

	.delicious-burger-list ul li{
		padding-left: 20px;
	}

	.delicious-burger-list ul li::before{
		font-size: 12px;
	}

	.daily-offer-btn{
		gap: 15px 20px;
		margin-top: 30px;
	}

	.our-menu{
		padding: 210px 0;
	}

	.our-menu:before{
		width: 140px;
        height: 175px;
		opacity: 40%;
	}

	.our-menu-tab-nav{
		margin-bottom: 30px;
	}

	.our-menu-tab-nav ul{
		padding: 15px 30px;
	}

	.our-menu-tab-nav ul li .nav-link{
		font-size: 16px;
	}

	.our-menu-list{
		gap: 30px;
	}

	.our-menu-item{
		width: 100%;
	}

	.our-menu-image{
		margin-right: 20px;
	}

	.our-menu-image figure{
		max-width: 80px;
	}

	.menu-item-body{
		width: calc(100% - 100px);
	}

	.menu-item-title{
		gap: 10px;
		margin-bottom: 5px;
	}

	.menu-item-title h3{
        font-size: 16px;
    }

	.our-menu .section-footer-text{
		margin-top: 30px;
	}

	.intro-video-box{
		padding: 200px 0;
	}

	.video-play-button a{
		font-size: 16px;
		width: 80px;
		height: 80px;
	}

	.our-ingredients{
		padding: 50px 0;
	}

	.our-ingredients::before{
        width: 140px;
    	height: 175px;
		opacity: 40%;
    }

	.our-ingredients::after{
        width: 140px;
        height: 140px;
		bottom: 50%;
		opacity: 40%;
    }

	.our-ingredients-content{
		margin-bottom: 30px;
	}

	.ingredients-list-content h3{
		font-size: 20px;
	}

	.our-ingredients-btn{
		text-align: center;
		margin-top: 30px;
	}

	.our-ingredients-image{
		margin: 0;
	}

	.our-ingredients-img img{
		aspect-ratio: 1 / 0.8;
	}

	.happy-customer-box{
		width: 210px;
		bottom: 40px;
		left: 20px;
		padding: 20px;
	}

	.happy-customer-content{
		margin-bottom: 10px;
	}

	.happy-customer-content h3{
		font-size: 20px;
	}

	.ingredient-counter-list{
		gap: 20px;
		padding-top: 30px;
	}

	.ingredient-counter-item{
		display: block;
		width: calc(25% - 15px);
	}

	.ingredient-counter-item .icon-box{
		height: 60px;
		width: 60px;
		margin: 0 auto 10px;
	}

	.ingredient-counter-content{
		width: 100%;
		text-align: center;
	}

	.ingredient-counter-content h2{
		font-size: 34px;
	}

	.ingredient-counter-content p{
		font-size: 16px;
	}

	.our-testimonial{
		padding: 50px 0;
	}

	.testimonial-slider .swiper{
		margin: 0 60px;
	}

	.testimonial-quote{
		margin-bottom: 20px;
	}

	.testimonial-content{
		margin-bottom: 30px;
	}

	.testimonial-content p{
		font-size: 22px;
	}

	.author-image{
		margin-bottom: 10px;
	}

	.author-image figure,
	.author-image img{
		max-width: 70px;
	}

	.testimonial-btn-prev,
	.testimonial-btn-next{
		width: 50px;
		height: 50px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.our-blog::before{
		left: -100px;
		width: 200px;
		height: 200px;
		opacity: 40%;
	}

	.our-blog::after{
		width: 140px;
        height: 175px;
		opacity: 40%;
	}

	.post-item-content,
	.post-featured-image{
		margin-bottom: 15px;
	}

	.post-featured-image figure{
		border-radius: 20px;
	}

	.post-featured-image img{
		aspect-ratio: 1 / 0.7;
		border-radius: 20px;
	}

	.post-item-content h3{
		font-size: 20px;
	}

	.reserve-table{
		padding: 50px 0 0;
	}

	.reserve-table-content{
		margin-bottom: 30px;
	}

	.reserve-table-form{
		padding: 30px 20px;
	}

	.reserve-table-form .form-control{
		padding: 14px 20px 14px 15px;
	}

	.main-footer{
		padding-top: 50px;
	}

	.footer-copyright{
		padding: 30px 0;
	}

	.footer-social-icon ul li a{
		width: 46px;
		height: 46px;
	}

	.footer-social-icon ul li a i{
		font-size: 18px;
	}

	.page-header{
		padding: 170px 0 80px;
	}

	.page-header-box h1{
		font-size: 50px;
	}

	.our-approach{
		padding: 50px 0;
	}

	.our-approach::before{
		top: 40px;
		width: 140px;
		height: 140px;
		opacity: 40%;
	}

	.our-approch-tab-nav{
		margin-bottom: 50px;
	}

	.our-approch-tab-nav ul{
		padding: 15px 30px;
	}

	.our-approch-tab-nav ul li .nav-link{
		font-size: 16px;
	}

	.approch-tab-content{
		margin-bottom: 30px;
	}

	.approch-tab-image img{
		aspect-ratio: 1 / 0.55;
	}

	.our-team{
		padding: 50px 0;
	}

	.our-team::before{
		width: 140px;
        height: 175px;
		opacity: 40%;
	}

	.team-image img{
		aspect-ratio: 1 / 1.1;
	}

	.team-body{
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

	.our-faqs{
		padding: 50px 0;
	}

	.our-faqs::before{
		width: 140px;
    	height: 175px;
		opacity: 40%;
	}

	.our-faqs::after{
		width: 140px;
        height: 140px;
		opacity: 40%;
	}

	.our-faqs-content{
		position: static;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 20px;
	}

	.page-services{
		padding: 50px 0 20px;
	}

	.page-services::before{
		top: 50px;
		width: 140px;
		height: 140px;
		opacity: 40%;
	}

	.service-item{
		padding: 30px 20px;
	}

	.service-item .icon-box{
		margin-bottom: 15px;
	}

	.service-item-content h3{
		font-size: 20px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.page-service-single::before{
		left: -100px;
        width: 200px;
        height: 200px;
		opacity: 40%;
	}

	.page-service-single::after{
		width: 140px;
        height: 175px;
		opacity: 40%;
	}

	.service-sidebar{
		position: initial;
		margin: 0 0 30px 0;
	}

	.service-catagery-list{
		margin-bottom: 30px;
	}

	.service-catagery-list h3{
		font-size: 20px;
		padding: 20px;
	}

	.service-catagery-list ul{
		padding: 20px;
	}

	.service-catagery-list ul li{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.sidebar-cta-box{
		padding: 20px;
	}

	.sidebar-cta-box .icon-box{
		margin-bottom: 30px;
	}

	.cta-contact-content h3{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.service-entry{
		margin-bottom: 30px;
	}

	.service-key-features{
		margin-top: 30px;
	}

	.service-entry h2{
		font-size: 34px;
		margin-bottom: 15px;
	}

	.service-entry p{
		margin-bottom: 15px;
	}

	.service-entry-list ul li{
		font-size: 16px;
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.service-entry-list ul li::before{
		font-size: 16px;
	}

	.page-menu{
		padding: 50px 0;
	}

	.special-menu-list{
		gap: 30px;
	}

	.special-menu-item{
		width: calc(25% - 22.5px);
	}

	.special-menu-item .special-menu-img{
		margin-bottom: 20px;
	}

	.special-menu-img figure{
		max-width: 120px;
	}

	.special-menu-item-content h3{
		font-size: 18px;
	}

	.our-food-menu .food-menu-item{
		padding: 50px 0;
	}

	.food-menu-sidebar{
		position: static;
		margin-bottom: 30px;
	}

	.food-menu-item .our-menu-list{
		gap: 20px 30px;
	}

	.food-menu-item .our-menu-item{
		width: 100%;
	}

	.food-menu-item .menu-item-body{
		width: calc(100% - 95px);
	}

	.food-menu-item .our-menu-item .menu-item-title hr{
		width: 70%;
	}

	.page-blog{
		padding: 50px 0;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
		padding: 50px 0;
	}

	.post-single-meta ol li{
		font-size: 16px;
	}

	.post-single-meta ol li i{
		font-size: 16px;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-image figure,
	.post-image img{
		border-radius: 20px;
	}

	.post-entry blockquote{
		background-position: 30px 25px;
		background-size: 40px;
		padding: 25px 25px 25px 85px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-entry h2{
		font-size: 34px;
	}

	.post-entry ul li{
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-tags{
		margin-bottom: 20px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team::before{
        left: -100px;
        width: 200px;
        height: 200px;
        opacity: 40%;
    }

	.page-team-single{
		padding: 50px 0;
	}

	.page-team-single::before{
		right: -100px;
        width: 200px;
        height: 200px;
		opacity: 40%;
	}

	.page-team-single::after{
		width: 140px;
        height: 175px;
		opacity: 40%;
	}

	.team-single-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.team-single-image{
		margin-bottom: 30px;
	}

	.team-single-image img{
		aspect-ratio: 1 / 0.78;
		object-position: top center;
	}

	.team-member-info{
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.team-info-list ul li{
		font-size: 18px;
	}

	.page-testimonials{
		padding: 50px 0 20px;
	}

	.page-testimonials::before{
		width: 250px;
    	height: 250px;
		right: -100px;
		opacity: 40%;
	}

	.testimonial-box-item{
		padding: 20px;
	}

	.testimonial-rating{
		margin-bottom: 10px;
	}

	.testimonial-box-content{
		margin-bottom: 20px;
	}

	.client-author-image{
		margin-bottom: 10px;
	}

	.client-author-image figure{
		max-width: 70px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-gallery-box .photo-gallery figure,
	.page-gallery-box .photo-gallery img{
		border-radius: 20px;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.video-gallery-image img{
		border-radius: 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.faq-sidebar{
		position: static;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-catagery-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.faq-catagery-list ul li{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.page-faq-accordion{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 50px 0;
	}

	.contact-us-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.contact-form{
		padding: 40px 20px;
	}

	.contact-form .form-control{
		padding: 12px 15px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 450px;
	}

	.error-page{
		padding: 50px 0;
	}

	.error-page-image{
		margin-bottom: 30px;
	}

	.error-page-image img{
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px){

	body{
		font-size: 16px;
	}

	.readmore-btn{
		font-size: 16px;
	}

	.section-row{
		margin-bottom: 30px;
	}

	.section-title{
		margin-bottom: 20px;
	}

	.section-title h1{
		font-size: 30px;
	}

	.section-title h2{
		font-size: 24px;
	}

    .hero-btn{
        gap: 10px 20px;
    }

    .hero-images{
		max-width: 100%;
    }

    .hero-circle-img-1 figure,
    .hero-circle-img-2 figure{
        max-width: 100px;
    }

    .hero-circle-img-1 img,
    .hero-circle-img-2 img{
        border-width: 5px;
    }

	.about-us::before{
		right: -15px;
		width: 100px;
        height: 125px;
	}

	.about-content-list ul li{
		padding-left: 25px;
	}

	.about-content-list ul li::before{
		font-size: 16px;
	}

	.about-us-image{
		max-width: 100%;
		padding: 0 40px 0 40px;
	}

	.company-experience{
        width: 120px;
		top: 20px;
        padding: 10px;
    }

	.company-experience .icon-box img{
		max-width: 35px;
	}

	.about-author-img figure{
		max-width: 100px;
	}

	.about-author-img img{
		border-width: 5px;
	}

	.about-detail-item{
        width: 100%;
		border-bottom: 1px solid rgba(108, 108, 108, 0.3);
    	padding-bottom: 30px;
    }

	.about-detail-item .icon-box{
		width: 65px;
		height: 65px;
		margin-right: 10px;
    }

	.about-detail-content{
		width: calc(100% - 75px);
	}

	.about-detail-content h3{
        font-size: 18px;
    }

	.our-dishes::before{
		width: 100px;
    	height: 100px;
		top: 50px;
	}

	.our-dish-item .our-dish-img{
		margin-bottom: 10px;
	}

	.our-dish-img figure{
		max-width: 120px;
	}

	.our-dish-content h3{
        font-size: 18px;
    }

	.section-footer-text p{
		font-size: 14px;
	}

	.daily-offer::before{
		right: -70px;
		width: 178px;
    	height: 178px;
	}

	.daily-offer-image{
        max-width: 100%;
    }

	.delicious-burger-box{
        width: 165px;
        padding: 10px;
    }

	.delicious-burger-title{
		margin-bottom: 0;
	}

	.delicious-burger-title h3{
        font-size: 18px;
    }

	.delicious-burger-rating{
        margin-bottom: 5px;
    }

	.delicious-burger-list ul li{
		margin-bottom: 5px;
	}

	.daily-offer-list ul li{
		padding-left: 25px;
	}

	.daily-offer-list ul li::before{
		font-size: 16px;
	}

	.daily-offer-btn{
        gap: 8px;
    }

	.our-menu:before{
		top: 40px;
		width: 100px;
        height: 125px;
	}

	.our-menu-tab-nav ul{
        padding: 15px 10px;
        gap: 10px 25px;
    }

	.our-menu-tab-nav ul li .nav-link{
        font-size: 14px;
    }

	.our-menu-tab-nav ul li .nav-link::before{
		width: 6px;
		height: 6px;
		right: -15px;
	}

	.our-menu-image{
		margin-right: 10px;
	}

	.our-menu-image figure{
		max-width: 70px;
	}

	.menu-item-body{
		width: calc(100% - 80px);
	}

	.our-menu-image{
		margin-right: 10px;
	}

	.menu-item-title span{
		font-size: 14px;
		padding: 3px 10px;
	}

	.menu-item-content p{
		font-size: 14px;
	}

	.menu-item-title hr{
		width: 30%;
	}

	.intro-video-box{
		padding: 140px 0;
	}

	.video-play-button a{
		font-size: 14px;
	}

	.our-ingredients::before{
		left: -30px;
		top: 40px;
        width: 100px;
        height: 125px;
    }

	.our-ingredients::after{
		width: 100px;
        height: 100px;
	}

	.our-ingredients-list{
		gap: 20px;
	}

	.ingredients-list-item{
		width: calc(33.33% - 13.33px);
	}

	.ingredients-list-item .icon-box img{
		max-width: 35px;
	}

	.ingredients-list-item::before{
		right: -10px;
		height: 60px;
	}

	.ingredients-list-content h3{
        font-size: 18px;
    }

	.our-ingredients-img img{
		aspect-ratio: 1 / 1.17;
		object-fit: cover;
	}

	.happy-customer-box{
        width: 170px;
		bottom: 30px;
		padding: 15px;
    }

	.happy-customer-content h3{
        font-size: 18px;
    }

	.ingredient-counter-item{
        width: calc(50% - 10px);
    }

	.ingredient-counter-content h2{
        font-size: 24px;
    }

	.testimonial-slider .swiper{
        margin: 0px;
		padding-bottom: 50px;
    }

	.testimonial-quote{
		margin-bottom: 10px;
	}

	.testimonial-quote img{
		max-width: 35px;
	}

	.testimonial-content{
		margin-bottom: 20px;
	}

	.testimonial-content p{
		font-size: 16px;
	}

	.author-image figure,
	.author-image img{
		max-width: 60px;
	}

	.author-content h3{
		font-size: 18px;
	}

	.testimonial-btn-prev,
	.testimonial-btn-next{
		top: auto;
		bottom: 0;
		width: 30px;
		height: 30px;
	}

	.testimonial-btn-prev{
		left: calc(50% - 25px);
		transform: translateX(-50%);
	}

	.testimonial-btn-next{
		right: calc(50% - 50px);
		transform: translateX(-50%);
	}

	.testimonial-btn-prev::before,
	.testimonial-btn-next::before{
		font-size: 14px;
	}

	.our-blog::before{
		left: -60px;
		width: 140px;
		height: 140px;
	}

	.our-blog::after{
		top: 60px;
		right: -15px;
        width: 100px;
        height: 125px;
	}

	.post-item-content h3{
		font-size: 18px;
	}

	.reserve-table-body ul li span{
		width: 72%;
	}

	.reserve-table-form .form-label{
		margin-bottom: 10px;
	}

	.reserve-table-btn{
		margin-top: 10px;
	}

	.footer-logo img{
		max-width: 160px;
	}

	.footer-copyright{
        padding: 20px 0 15px;
    }

	.footer-social-icon{
		text-align: center;
		margin-bottom: 20px;
	}

	.footer-social-icon ul li a{
		width: 40px;
		height: 40px;
	}

	.footer-social-icon ul li a i{
		font-size: 16px;
	}

	.footer-copyright-text{
		text-align: center;
	}

	.page-header-box h1{
		font-size: 30px;
	}

	.our-approach::before{
        width: 100px;
        height: 100px;
        top: 50px;
    }

	.our-approch-tab-nav{
        margin-bottom: 30px;
    }

	.our-approch-tab-nav ul{
        padding: 15px;
    }

	.our-approch-tab-nav ul{
		gap: 10px 30px;
	}

	.our-approch-tab-nav ul li .nav-link::before{
		width: 6px;
		height: 6px;
		right: -18px;
	}

	.approch-tab-content-list ul li{
		padding-left: 25px;
	}

	.approch-tab-content-list ul li::before{
		font-size: 16px;
	}

	.our-team::before{
		left: -30px;
        top: 40px;
        width: 100px;
        height: 125px;
	}

	.team-content h3{
		font-size: 18px;
	}

	.approch-tab-image figure{
		border-radius: 20px;
	}

	.approch-tab-image img{
		border-radius: 20px;
        aspect-ratio: 1 / 0.65;
    }

	.our-faqs::before{
		left: -30px;
        width: 100px;
        height: 125px;
	}

	.our-faqs::after{
		width: 100px;
        height: 100px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
		padding-right: 25px;
	}

	.faq-accordion .accordion-button:not(.collapsed){
		margin-bottom: 5px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		font-size: 12px;
		width: 22px;
		height: 22px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding-right: 0;
	}

	.page-services::before{
		width: 100px;
        height: 100px;
	}

	.service-item{
        padding: 20px;
    }

	.service-item-content{
		margin-bottom: 15px;
	}

	.service-item-content h3{
        font-size: 18px;
		margin-bottom: 5px;
    }

	.page-service-single::before{
		left: -60px;
        width: 140px;
        height: 140px;
	}

	.page-service-single::after{
        right: -15px;
        width: 100px;
        height: 125px;
	}

	.service-catagery-list h3{
        font-size: 18px;
    }

	.sidebar-cta-box .icon-box{
        margin-bottom: 20px;
    }

	.sidebar-cta-box .icon-box img{
		max-width: 50px;
	}

	.service-featured-image img,
	.service-featured-image figure{
		border-radius: 14px;
	}

	.service-entry h2{
        font-size: 24px;
    }

	.service-entry-list-image{
		gap: 20px;
	}

	.service-entry-image,
	.service-entry-list{
		width: 100%;
	}

	.special-menu-list{
        gap: 30px 20px;
    }

	.special-menu-item{
		width: calc(25% - 15.33px);
		margin-top: 15px;
	}

	.special-menu-item .special-menu-img{
        margin-bottom: 10px;
    }

	.special-menu-img figure{
        max-width: 90px;
    }

	.special-menu-item-content h3{
        font-size: 14px;
    }

	.food-menu-item .our-menu-image{
		margin-right: 10px;
	}

	.food-menu-item .menu-item-body{
        width: calc(100% - 80px);
    }

	.food-menu-item .our-menu-item .menu-item-title hr{
        width: 25%;
    }

	.post-single-meta ol li i{
        font-size: 14px;
    }

	.post-image img{
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote{
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry h2{
		font-size: 24px;
	}

	.tag-links{
		font-size: 18px;
	}

    .page-team::before{
        left: -60px;
        width: 140px;
        height: 140px;
    }

	.page-team-single::before{
		right: -60px;
        width: 140px;
        height: 140px;
	}

	.page-team-single::after{
        width: 100px;
        height: 125px;
	}

	.team-single-image img{
		aspect-ratio: 1 / 1.08;
        object-position: center center;
    }

	.team-info-list ul li span{
		width: 60%;
	}

	.page-testimonials::before{
		right: -70px;
		width: 178px;
    	height: 178px;
	}

	.testimonial-rating i{
		font-size: 14px;
	}

	.client-author-image figure{
        max-width: 60px;
    }

	.client-author-content h3{
		font-size: 18px;
	}

	.contact-info-list ul li{
		margin-bottom: 15px;
	}

	.contact-social-list ul li a{
		width: 40px;
		height: 40px;
	}

	.contact-social-list ul li a i{
		font-size: 16px;
	}

	.contact-form{
        padding: 30px 20px;
    }

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 350px;
	}
}

.footer-contact-content p a {
	transition: color 0.3s ease-in-out;
  }

  .footer-contact-content p a:hover {
	color: var(--accent-color);
  }

  .contact-info-list li a {
	transition: color 0.3s ease-in-out;
  }
  .contact-info-list li a:hover {
	color: var(--accent-color);
  }

  .card-primary.card-outline{
	border-top: 3px solid var(--accent-color);
  }

  .card-body{
	 background-color: #444c54
  }

  .modal {
    overflow-y: hidden;
	}

	.modal-open {
		overflow: hidden;
		position: fixed;
	}

	.modal-dialog {
		max-width: 90%;
		width: 800px;
		margin: 1.75rem auto;
		display: flex;
		align-items: center;
	}

.custom-modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #000000eb;
}

@media (max-width: 375px) {
	.home-menu{
		max-width: 35px !important;
		border-radius: 999px !important;
		display: inline-block !important;
		overflow: hidden !important;
	}

	.our-menu-tab-nav ul li .nav-link{
        font-size: 10px;
    }
}

#videoModal.show {
	display: block;
	background-color: #000000eb;
	padding-right: 0 !important;
}

#modalVideo, #modalVideoAboutUs {
    max-height: 80vh;
    width: 100%;
    object-fit: cover;
}

.modal-backdrop, .modal-backdrop.show {
	display: none !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.modal-content {
	position: relative;
	z-index: 2051;
	.modal-content {
		margin: auto;
		background: transparent;
	}
}

.home-menu{
	max-width: 150px;
    border-radius: 50%;
    display: inline-block;
    overflow: hidden;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 1s ease-out;
}

.preloader-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    width: 200px;
    max-width: 60vw;
    animation: pulse 2s ease-in-out infinite;
}

/* Subtle pulsing animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

.nav-link.active{
	color: var(--accent-color) !important;
}

.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.95) !important;
    z-index: 1040;
}
.modal-backdrop {
    transition: background-color 0.3s ease-in-out;
}

  .special-menu-list {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(-20px);
    opacity: 1;
}

.sticky-menu-placeholder {
    height: 0;
}

.special-menu-list.sticky {
    position: fixed;
    top: 99px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0f120e;
	padding: 20px;
	display: flex;
    flex-wrap: wrap;
    gap: 5px !important;
	justify-content: center;
	transform: translateY(0);
    opacity: 1;
}

.food-menu-item{
	scroll-margin-top: 250px;
}
@media (min-width: 991px) {
	.footer-useful-links{
		padding-left: 70px;
	}
}

@media (max-width: 991px) {
	.footer-content{
		margin-bottom: 2rem;
	}
}

/* ... existing code ... */

/************************************/
/***   30. Menu Categories Overlay ***/
/************************************/

/* ... existing code ... */

.sez-categories {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    z-index: 9999;
    background-color: var(--dark-divider-color);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.sez-categories.active {
    opacity: 1;
    visibility: visible;
}

.sez-category {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.sez-category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: transform 0.5s ease;
}

.sez-category:hover .sez-category-bg {
    transform: scale(1.1);
}


.sez-drinks-bg {
    background-image: url('../images/categories-menu/drinks.webp');
}

.sez-food-bg {
    background-image: url('../images/categories-menu/food.webp');
}

.sez-desserts-bg {
    background-image: url('../images/categories-menu/deserts.webp');
}

.sez-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 1) 100%);
    transition: background 0.3s ease-in;
    will-change: background;
}

.sez-category:hover .sez-category-overlay {
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    transition: background 0.3s ease-out;
}

.sez-category-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
    padding: 0 20px;
    z-index: 1;
}

.sez-category-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.sez-category-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.sez-category:hover .sez-category-title::after {
    width: 100%;
}

.sez-category-desc {
    color: var(--primary-color);
    font-size: 18px;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.sez-fade-in {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.sez-delay-1 {
    transition-delay: 0.2s;
}

.sez-delay-2 {
    transition-delay: 0.4s;
}

.sez-delay-3 {
    transition-delay: 0.6s;
}

.sez-zoom-out-fade {
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

body.menu-overlay-active {
    overflow: hidden;
}

/* Responsive styles for menu categories */
@media (max-width: 991px) {
    .sez-categories {
        flex-direction: column;
    }

    .sez-category {
        height: 33.333%;
    }

    .sez-category-title {
        font-size: 32px;
    }

    .sez-category-desc {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .sez-category-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .sez-category-desc {
        font-size: 14px;
    }
}

/* Menu Categories Selection */
.menu-categories-selection {
    padding: 60px 0 20px;
    background-color: #0f120e;
}

.menu-category-tabs .nav-tabs {
    border-bottom: none;
    gap: 50px;
    margin-bottom: 30px;
}

.menu-category-tabs .nav-link {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 0;
    border: none;
    position: relative;
    background: transparent;
    transition: color 0.3s ease;
}

.menu-category-tabs .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.menu-category-tabs .nav-link:hover:after,
.menu-category-tabs .nav-link.active:after {
    width: 100%;
}

.menu-category-tabs .nav-link.active {
    color: var(--accent-color);
    background: transparent;
}

.menu-disclaimer {
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}

.menu-disclaimer h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.4;
}

.menu-disclaimer p {
    font-size: 16px;
    line-height: 1.6;
}

.allergen-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.allergen-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.allergen-row span {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
}

.allergen-row span i {
    margin-right: 5px;
    font-size: 8px;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .menu-categories-selection {
        padding: 40px 0 10px;
    }

    .menu-category-tabs .nav-tabs {
        gap: 20px;
    }

    .menu-category-tabs .nav-link {
        font-size: 18px;
    }

    .menu-disclaimer h2 {
        font-size: 18px;
    }

    .allergen-row {
        gap: 10px;
    }

    .allergen-row span {
        font-size: 12px;
    }
}

.sez-menu-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

/* Tab Navigation */
.nav-tabs {
	border: none;
	justify-content: center;
	margin-bottom: 3rem;
}

.nav-tabs .nav-link {
	color: var(--light-text);
	border: none;
	font-size: 1rem;
	letter-spacing: 2px;
	padding: 0.5rem 2rem;
	position: relative;
	text-transform: uppercase;
}

.nav-tabs .nav-link.active {
	background-color: transparent;
	color: var(--light-text);
}

.nav-tabs .nav-link.active::after {
	content: "_";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--accent-color);
	font-size: 1.5rem;
}

/* Heading Styles */
.sez-drinks-title-container {
	position: relative;
	text-align: center;
	margin-bottom: 3rem;
}

.sez-drinks-title {
	font-size: 4rem;
	letter-spacing: 10px;
	margin-bottom: 0;
	position: relative;
	z-index: 2;
}

.sez-drinks-script {
	font-style: italic;
	color: var(--gold);
	font-size: 6rem;
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	opacity: 0.7;
}

.sez-subtitle {
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: 1.2rem;
	margin-bottom: 2rem;
	text-align: center;
}

.sez-category {
	color: var(--light-text);
	opacity: 0.7;
}

/* Menu Items */
.sez-menu-divider {
	border-top: 1px solid rgba(108, 108, 108, 0.3);
	margin: 2rem 0;
}

/* SEZ Menu Styles */
.sez-menu-section {
	margin-bottom: 3rem;
}

.sez-section-title {
	font-size: 2.5rem;
	letter-spacing: 5px;
	text-align: center;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.sez-title-underline {
	width: 100px;
	margin: 0 auto 3rem;
	border-top: 2px solid var(--gold);
	opacity: 1;
}

.sez-menu-item {
	margin-bottom: 2.5rem;
}

.sez-menu-title {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	font-size: 1.3rem;
}

.sez-price {
	color: var(--accent-color);
}

.sez-menu-item p {
	color: var(--light-text);
	opacity: 0.8;
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Menu Disclaimer */
.sez-menu-disclaimer {
	margin-bottom: 4rem;
}

.sez-menu-disclaimer h2 {
	font-size: 1.5rem;
	letter-spacing: 2px;
	color: var(--gold);
}

.sez-menu-disclaimer p {
	font-size: 0.9rem;
	opacity: 0.8;
}

.sez-allergen-info {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.sez-allergen-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.sez-allergen-row span {
	font-size: 0.8rem;
	opacity: 0.8;
	margin: 0 0.5rem;
}

.sez-allergen-row span i {
	color: var(--gold);
	font-size: 0.6rem;
	margin-right: 0.3rem;
}

.sez-title-with-icon {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	position: relative;
  }

  .sez-food-icon {
	width: 20px;
	height: 20px;
	position: relative;
	top: 1px;
  }

/* Responsive adjustments */
@media (max-width: 768px) {
	.sez-drinks-title {
		font-size: 3.5rem;
		letter-spacing: 5px;
	}

	.sez-drinks-script {
		font-size: 4rem;
		bottom: -10px;
	}

	.nav-tabs .nav-link {
		padding: 0.5rem 1rem;
		font-size: 0.9rem;
	}

	.sez-section-title {
		font-size: 2rem;
	}

	.sez-menu-disclaimer h2 {
		font-size: 1.2rem;
	}
}

@media (max-width: 576px) {
	.sez-drinks-title {
		font-size: 2.5rem;
		letter-spacing: 3px;
	}

	.sez-drinks-script {
		font-size: 3rem;
		bottom: -5px;
	}

	.sez-menu-container {
		padding: 1rem;
	}

	.sez-allergen-row {
		flex-direction: column;
		align-items: center;
		gap: 0.5rem;
	}
}

.pt-100{
	padding-top: 100px;
}

.menu-page-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 40px;
  background-image: url('../images/backgrounds/bg-1.webp');
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: auto 100%;
  z-index: 2;
}

.about-page-header::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 40px;
	background-image: url('../images/backgrounds/bg-1.webp');
	background-repeat: repeat-x;
	background-position: bottom;
	background-size: auto 100%;
	z-index: 2;
  }

.zes-allergen-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.zes-allergen-header {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.zes-allergen-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    justify-content: center;
	padding-left: 200px;
	padding-right: 200px;
}

.zes-allergen-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.zes-allergen-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.zes-allergen-item span {
    font-size: 1rem;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .zes-allergen-grid {
        gap: 8px;
		padding-left: 0;
		padding-right: 0;
    }

    .zes-allergen-item {
        gap: 0.35rem;
    }

    .zes-allergen-item img {
        width: 20px;
        height: 20px;
    }

    .zes-allergen-item span {
        font-size: 0.95rem;
    }

	.zes-menu-divider{
		padding-left: 15px !important;
		border-left: none !important;
	}

	.mar-menu{
		padding-right: 20px !important;
	}
}

.zes-menu-divider{
	border-left: 1px solid rgba(108, 108, 108, 0.3);
	padding-left: 30px;
}

.mar-menu{
	padding-right: 30px;
}

/* Custom classes */
.sizzlerz-navbar {
	background-color: rgba(0, 0, 0, 0.7);
	padding: 15px 20px;
	position: fixed;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s ease;
}

.sizzlerz-logo {
	max-height: 40px;
}

.sizzlerz-reserve-btn {
	background-color: transparent;
	border: 1px solid white;
	color: white;
	border-radius: 20px;
	padding: 6px 20px;
	transition: all 0.3s ease;
}

.sizzlerz-reserve-btn:hover {
	background-color: white;
	color: black;
}

.sizzlerz-phone-icon {
	color: white;
	font-size: 20px;
	margin-left: 15px;
	border: 1px solid white;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sizzlerz-menu-btn {
	border: none;
	background: transparent;
	color: white;
}

.sizzlerz-hero {
	height: 100vh;
	background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-tuEVTPTzFa1ebVHakJNofriO8R5CWO.png');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.sizzlerz-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.sizzlerz-hero-content {
	position: relative;
	text-align: center;
	color: white;
	z-index: 1;
}

.sizzlerz-hero-title {
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: 3px;
	margin-bottom: 0;
}

.sizzlerz-hero-subtitle {
	font-size: 2.5rem;
	font-weight: 300;
	letter-spacing: 2px;
}

.sizzlerz-script {
	font-family: 'Brush Script MT', cursive;
	font-size: 3rem;
	color: #d4af37;
}

@media (max-width: 768px) {
	.sizzlerz-hero-title {
		font-size: 2rem;
	}

	.sizzlerz-hero-subtitle {
		font-size: 1.5rem;
	}

	.sizzlerz-script {
		font-size: 2rem;
	}
}

@media (max-width: 425px) {
	.mob-mar-header{
		margin-top: -66px;
	}
}

.sez-category-title-menu {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem; /* space for the border below */
    line-height: 1.2;
    min-height: 2.5rem; /* consistent title height */
}

.sez-category-title-menu::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 20px; /* brush stroke height */
    width: 100%;
    background: url('../images/section-images/brush-border.svg') no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
}

.content-image-wrapper {
    position: absolute;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 60px;
    bottom: 0;
    left: 0;
    right: 0;
}

/* Mobile & Tablet override */
@media (max-width: 991.98px) {
    .content-image-wrapper {
        justify-content: flex-start;
        align-items: flex-end;
        padding: 2rem;
    }

    .hero-image {
        width: 270px;
        max-width: 70vw;
		bottom: -40px;
    }
}

.bg-texture{
	background: var(--bg-texture);
}

/* // new footer // */
.sizzlerz-footer {
	background-color: #000;
	color: #fff;
	padding: 110px 0 20px;
	text-align: center;
}
.sizzlerz-logo-container {
	width: 240px;
	height: 240px;
	background-color: var(--accent-color);
	margin: 0 auto 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.sizzlerz-description {
	max-width: 600px;
	margin: 0 auto 40px;
	font-size: 1.1rem;
	line-height: 1.6;
}
.sizzlerz-contact-info {
	margin-bottom: 30px;
}
.sizzlerz-contact-item {
	margin-bottom: 15px;
	text-decoration: none;
	display: inline-block;
	font-weight: 300;
}
.sizzlerz-contact-info .ct-col-pho a {
        color: var(--accent-color);
}
.sizzlerz-social-icons {
	margin-bottom: 40px;
}
.sizzlerz-social-icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid var(--accent-color);
	color:	var(--accent-color);
	margin: 0 10px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.sizzlerz-nav {
	margin-bottom: 40px;
}
.sizzlerz-nav-link {
	color: #fff;
	text-decoration: none;
	margin: 0 15px;
	font-size: 1.1rem;
	transition: color 0.3s ease;
	font-weight: 300;
}
.sizzlerz-nav-link:hover {
	color: var(--accent-color);
}

/* New styles for the copyright section */
.sizzlerz-copyright {
	border-top: 1px solid #333;
	padding-top: 35px;
}
.sizzlerz-social-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.sizzlerz-social-list li {
	margin: 0 10px;
}
.sizzlerz-social-list img {
	height: 30px;
	width: auto;
}
.sizzlerz-copyright-text {
	margin-top: -15px;
	font-size: 0.9rem;
}
.sizzlerz-copyright-text a {
	color: var(--accent-color);
	text-decoration: none;
}
.sizzlerz-copyright-text a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.sizzlerz-logo-container {
		width: 180px;
		height: 180px;
	}
	.sizzlerz-logo-text {
		font-size: 2rem;
	}
	.sizzlerz-nav-link {
		display: block;
		margin: 10px 0;
	}
	.sizzlerz-social-list {
		flex-wrap: wrap;
		justify-content: center;
	}
	.sizzlerz-social-list li {
		margin: 5px 10px;
	}
}

@media (max-width: 768px) {
	.logo-container {
		position: relative !important;
		display: block !important;
		width: 144px !important;
		height: 60px !important;
	}

	.logo {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: contain;
		transition: opacity 0.3s ease;
	}
}

/* Logo container styling */
.logo-container {
    position: relative;
    display: block;
    width: 200px;
    height: 120px;
}

/* Base logo styling */
.logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Initial state: filled logo visible, outline hidden */
.logo-filled {
    opacity: 1;
}

.logo-outline {
    opacity: 0;
}

/* Scrolled state: simple opacity swap */
.logo-container.scrolled .logo-filled {
    opacity: 0;
}

.logo-container.scrolled .logo-outline {
    opacity: 1;
}

@media (max-width: 768px) {
	.mob-mar-header{
		margin-top: -70px;
	}

	.sizzlerz-copyright-text{
		padding: 0 40px 0 40px;
	}

	.sidebar nav .nav-link {
		color: white;
		font-weight: 600;
		font-size: 22px;
		text-transform: uppercase;
		letter-spacing: 1px;
		padding: 0px !important;
	}

	.contact-phone {
		font-size: 20px;
		color: #fffdea;
		margin: 0;
	}


	.footer-social-icon ul li a {
        padding: 7px;
    }
}

.about-us-1{
	padding-top: 140px;
	background: var(--bg-texture);
	position: relative;
}

.about-us-1 img{
	padding-top: 12px;
}

.absolute-bottom-gallery{
	position: absolute;
	width: 100%;
	height: 230px;
	bottom: -150px;
	pointer-events: none;
	left: 0;
	z-index: 5;
  }
.absolute-bottom-gallery img{
	width: 100%;
	transform: rotate(180deg);
}

.about-p{
	padding-right: 95px;
}

@media (max-width: 768px) {
	.about-p{
		padding-top: 10px;
		padding-right: 0px;
	}
}

@media (max-width: 992px) {
	.absolute-bottom-gallery{
		position: absolute;
		width: 100%;
		height: 230px;
		bottom: -150px;
		pointer-events: none;
		left: 0;
		bottom: -230px;
		z-index: 5;
	  }

	  .absolute-bottom {
		bottom: -226px;
	  }

	  .about-us-1{
		padding-top: 65px;
	}
}

@media (max-width: 767px) {
	.about-us-1{
		padding-top: 19px;
	}
}

.form-control{
	background-color: #141414 !important;
}

input[type="time"] {
    color-scheme: dark;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: transparent !important;

}

@media (max-width: 375px) {
    .ct-col-pho {
        flex-direction: column !important;
        align-items: center;
    }
}

.new-badge {
	display: inline-block;
	background-color: #e63946;
	color: white;
	padding: 0.1rem 0.5rem;
	border-radius: 3px;
	font-size: 0.7rem;
	margin-right: 0.5rem;
	text-transform: uppercase;
	font-weight: bold;
}

.serving-note {
	font-style: italic;
	color: #666;
	margin-bottom: 0.3rem;
	font-size: 0.9rem;
}

.instagram-handle {
    font-size: 22px;
    margin-bottom: 3rem;
}

.instagram-handle a {
    color: #d1d5db !important;
}

.instagram-handle i {
    margin-right: 0.3rem;
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 20px; /* change size as needed */
}

<style>
 .gallery-container {
     padding: 2rem 0;
     background-color: #f8f9fa;
 }

.sez-gallery-item {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sez-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sez-gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sez-gallery-item:hover img {
    transform: scale(1.05);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .sez-gallery-item img {
        height: 250px;
    }

    .sez-gallery-container {
        padding: 1rem 0;
    }

    .hero{
        height: 85vh;
    }

    .torn-overlay-bottom-header {
        height: 170px;
    }

}

.ptb-tour-section{
    padding-top: 150px;
    padding-bottom: 140px;
}

.form-select option {
    color: #fff !important;
    background-color: #333 !important;
}
.form-select {
    color: var(--text-color);
}

.form-control-error{
	color: #e63946;
}

/* SweetAlert Custom Theme */
.swal2-popup {
  background-color: #000 !important;
  border: 1px solid #cbae92 !important;
  color: #cbae92 !important;
}

/* Title styling */
.swal2-title {
  color: #cbae92 !important;
  font-weight: 600;
}

/* Content text */
.swal2-html-container {
  color: #cbae92 !important;
  opacity: 0.8;
}

/* ERROR ICON STYLING */
.swal2-icon.swal2-error {
  border-color: #cbae92 !important;
  color: #cbae92 !important;
}

.swal2-icon.swal2-error .swal2-x-mark {
  color: #cbae92 !important;
}

.swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
  background-color: #cbae92 !important;
}

/* SUCCESS ICON STYLING */
.swal2-icon.swal2-success {
  border-color: #cbae92 !important;
  color: #cbae92 !important;
}

.swal2-icon.swal2-success [class^='swal2-success-line'] {
  background-color: #cbae92 !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
  border-color: #cbae92 !important;
}

.swal2-icon.swal2-success .swal2-success-fix {
  background-color: #000 !important;
}

.swal2-icon.swal2-success::before,
.swal2-icon.swal2-success::after {
  background: #000 !important;
}

/* WARNING ICON STYLING */
.swal2-icon.swal2-warning {
  border-color: #cbae92 !important;
  color: #cbae92 !important;
}

.swal2-icon.swal2-warning .swal2-icon-content {
  color: #cbae92 !important;
}

/* INFO ICON STYLING */
.swal2-icon.swal2-info {
  border-color: #cbae92 !important;
  color: #cbae92 !important;
}

.swal2-icon.swal2-info .swal2-icon-content {
  color: #cbae92 !important;
}

/* QUESTION ICON STYLING */
.swal2-icon.swal2-question {
  border-color: #cbae92 !important;
  color: #cbae92 !important;
}

.swal2-icon.swal2-question .swal2-icon-content {
  color: #cbae92 !important;
}

/* Button styling */
.swal2-confirm {
  background-color: #cbae92 !important;
  color: #000 !important;
  border: none !important;
  font-weight: 600;
}

.swal2-confirm:hover {
  background-color: #b8a082 !important;
}

.swal2-cancel {
  background-color: transparent !important;
  color: #cbae92 !important;
  border: 1px solid #cbae92 !important;
}

.swal2-cancel:hover {
  background-color: #cbae92 !important;
  color: #000 !important;
}

/* Close button */
.swal2-close {
  color: #cbae92 !important;
}

.swal2-close:hover {
  color: #b8a082 !important;
}

/* Backdrop */
.swal2-backdrop-show {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

/* Progress bar (if used) */
.swal2-timer-progress-bar {
  background-color: #cbae92 !important;
}

/* Input fields (if used) */
.swal2-input,
.swal2-textarea {
  background-color: #000 !important;
  border: 1px solid #cbae92 !important;
  color: #cbae92 !important;
}

.swal2-input:focus,
.swal2-textarea:focus {
  border-color: #cbae92 !important;
  box-shadow: 0 0 0 2px rgba(203, 174, 146, 0.2) !important;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    color: #ffffff	;
    font-size: 16px;
    padding: 5px 0;
	margin-bottom: 10px;
  }

  .marquee p {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 12s linear infinite;
    margin: 0;
  }

  .marquee a {
    color: #cbae92; /* gold-ish tone */
    text-decoration: none;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  .branch-address {
    color: #fff; /* Adjust based on theme */
    text-decoration: none;
    font-size: 0.95rem;
  }

  .arrow {
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 4px;
  }

    .location-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin: 0;           /* remove weird default spacing */
    align-self: center;  /* ensure perfect vertical alignment */
  }
