/* ----------------------------------------------------------------------------------------
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us css
08. Intro Video css
09. Our Chefs css
10. How It Work css
11. Our Testimonials css
12. Photo Gallery css
13. Pricing Plan css
14. Our FAQ's css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Services Page css
19. Service Single css
20. Blog Archive css
21. Blog Single css
22. Chef Page css
23. Chef Single css
24. Pricing Page css
25. Testimonials Page css
26. Image Gallery css
27. Video Gallery css
28. FAQ's Page css
29. Contact Us Page css
30. 404 Error Page css
31. Responsive css
-------------------------------------------------------------------------------------- */

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

:root{
	--primary-color				: #191E24;
	--secondary-color			: #FFFFFF;
	--bg-color					: #F9EFED;
	--text-color				: #6D625F;
	--accent-color				: #C89B73;
	--white-color				: #FFFFFF;
	--divider-color				: #191E241A;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Source Sans 3", sans-serif;
	--accent-font			    : "Bricolage Grotesque", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

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

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

::-webkit-scrollbar-track{
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar{
	width: 7px;
	background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb{
	background: var(--accent-color);
}

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

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

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

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;
}

.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;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.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-family: var(--accent-font);
	font-size: 18px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 30px;
	padding: 16px 55px 16px 24px;
	border: none;
	outline: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

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

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

.btn-default::before{
	content: '';
	position: absolute;
    top: 50%;
    right: 5px;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
	background-color: var(--bg-color);
	border-radius: 50%;
    /*background-image: url('../icon/arrow-primary.svg');*/
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px auto;
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	background-color: var(--bg-color);
}

.btn-default.btn-highlighted:hover::before{
	background-color: var(--accent-color);
	background-image: url('../icon/arrow-white.svg');
}

.btn-default::after{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::after{
	right: auto;
	left: 0;
    width: 100%;
}

.btn-default.btn-highlighted::after{
	background: var(--bg-color);
}

.readmore-btn{
	position: relative;
	display: inline-block;
	font-family: var(--accent-font);
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
	color: var(--primary-color);
	padding-right: 28px;	
}

.readmore-btn::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
	width: 18px;
	height: 18px;
	transform: translate(-2px, -50%);
	/*background-image: url('../icon/arrow-primary.svg');*/
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before{
	transform: translate(0, -50%);
}

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

.preloader{
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}

.dark-section{
    background-color: var(--primary-color);
}

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

.section-row .section-title{
	margin-bottom: 0; 
}

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

.section-btn{
	text-align: right;
}

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

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

.section-title-content p:last-child{
	margin-bottom: 0;	
}

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

.section-sub-heading,
.section-title .section-sub-title{
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 9px 16px 9px 40px;
    margin-bottom: 15px;
}

.dark-section .section-sub-heading,
.dark-section .section-title .section-sub-title{
	color: var(--white-color);
	border-color: var(--dark-divider-color);
}

.section-sub-heading::before,
.section-title .section-sub-title::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
	background-image: url('../icon/letter.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    width: 16px;
    height: 16px;
}

.section-title h1{
	font-family: var(--accent-font);
	font-size: 62px;
	line-height: 1.1em;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 48px;
	line-height: 1.1em;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

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

.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p{
	color: var(--white-color);
}

.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.main-header{
	position: absolute;
	left: 0;
	right: 0;
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
    transform: translateY(0);
	background: var(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar{
	padding: 20px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 10px;
	position: relative;
}

.main-menu ul li a{
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2em;
	padding: 12px 10px !important;
	color: var(--white-color);
	background: transparent;
	border-radius: 0px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scale(1,0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 235px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scale(1,1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

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

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

.responsive-menu{
	position: relative;
	top: 0;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 5px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 5px 20px 5px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/*** 	    04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: url('../icon/hero-bg-image.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 240px 0 175px;
}

.hero::before,
.hero.hero-slider-layout .hero-image-slider .hero-slider-img figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(270deg, rgba(34, 31, 30, 0.00) 9.61%, rgba(34, 31, 30, 0.45) 45.99%, rgba(34, 31, 30, 0.90) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

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

.hero.hero-slider-layout::before{
	display: none;
}

.hero.hero-slider-layout{
	background: none;
}

.hero.hero-slider-layout .hero-image-slider{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-slider-layout .hero-image-slider .swiper,
.hero.hero-slider-layout .hero-image-slider .hero-slider-img,
.hero.hero-slider-layout .hero-image-slider .hero-slider-img figure{
	position: relative;
	height: 100%;
}

.hero.hero-slider-layout .hero-image-slider .hero-slider-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero .container{
	position: relative;
	z-index: 2;
}

.hero .section-title .section-sub-title::before{
	filter: brightness(0) invert(1);
}

.hero-content{
	margin-right: 50px;
}

.hero-content-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	margin-top: 60px;
}

.hero-client-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.satisfy-client-images{
	display: flex;
	align-items: center;
}

.satisfy-client-image{
	position: relative;
    display: inline-block;
    margin-left: -10px;
    border: 1px solid var(--bg-color);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.satisfy-client-image:first-child{
	margin: 0;
}

.satisfy-client-image figure{
	display: block;
}

.satisfy-client-image figure img{
	width: 100%;
    max-width: 40px;
    border-radius: 50%;
}

.satisfy-client-image.add-more{
	width: 42px;
	height: 42px;
	background-color: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more i{
	font-size: 20px;
	color: var(--white-color);
}

.satisfy-client-image.add-more h2{
	font-size: 14px;
	line-height: 1em;
	color: var(--white-color);
}

.satisfy-client-image.add-more img{
	width: 100%;
	max-width: 16px;
}

.hero-client-content p{
	max-width: 174px;
	font-size: 16px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
}

.hero-counter-list{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 80px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 60px;
	margin-top: 60px;
}

.hero-counter-item{
	position: relative;
	width: calc(33.33% - 53.33px);
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 15px;
}

.hero-counter-item::before{
	content: '';
	position: absolute;
	top: 0;
	right: -40px;
	bottom: 0;
	width: 1px;
	height: 100%;
	background: var(--dark-divider-color);
}

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

.hero-counter-item .icon-box img{
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
}

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

.hero-counter-item-content{
	width: calc(100% - 45px);
}

.hero-counter-item-content h2{
	font-size: 30px;
	font-weight: 600;
	line-height: 1em;
	color: var(--white-color);
}

.hero-counter-item-content p{
	color: var(--white-color);
	margin: 5px 0 0;
}

/************************************/
/*** 	   05. About Us css	      ***/
/************************************/

.about-us{
	padding: 60px 0;
}

.about-us-image-box{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-right: 15px;
}

.about-us-image{
	width: 58%;
	padding-bottom: 40px;
}

.about-us-image figure{
	display: block;
	height: 100%;
	border-radius: 20px;
	margin-right: -174px;
}

.about-us-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.1489;
	object-fit: cover;
	border-radius: 20px;
}

.about-video-image{
	position: relative;
	width: 42%;
	margin-top: auto;
	z-index: 1;
}

.about-video-image figure{
	position: relative;
	display: block;
	border: 6px solid var(--bg-color);
	border-radius: 26px;
	overflow: hidden;
}

.about-video-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 20%;
	width: 100%;
	height: 100%;
}

.about-video-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1.1525;
	object-fit: cover;
	border-radius: 20px;
}

.about-video-image .video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.video-play-button a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	cursor: none;
}

.video-play-button a span{
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 50%;
	color: var(--white-color);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.video-play-button a span.bg-effect:before,
.video-play-button a span.bg-effect:after{
	content: '';
	position: absolute;
    width: 160%;
    height: 160%;
	border: 35px solid var(--white-color);
	opacity: 50%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a span.bg-effect:after{
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a span i{
    font-size: 22px;
    color: inherit;
    margin-left: 2px;
	transition: all 0.4s ease-in-out;
}

.about-us-content{
	height: 100%;
	align-content: center;
}

.about-us-items-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-us-item{
	width: calc(50% - 15px);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 20px;
}

.about-us-item-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.about-us-item-header .icon-box img{
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
}

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

.about-us-item-title{
	width: calc(100% - 45px);
}

.about-us-item-title h3{
	font-size: 20px;
}

.about-us-item-content{
	margin-top: 15px;
}

.about-us-item-content p{
	margin: 0;
}

.about-us-content-list{
	margin-top: 40px;
}

.about-us-content-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-us-content-list ul li{
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.about-us-content-list ul li:last-child{
	margin-bottom: 0;
}

.about-us-content-list ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.about-us-content-footer{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.about-client-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.about-client-box .satisfy-client-image figure img{
	max-width: 30px;
}

.about-client-content{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.about-client-content h2{
	width: 65px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1em;
}

.about-client-content h2 i{
	font-size: 18px;
	color: var(--accent-color);
	margin-right: 5px;
}

.about-client-content p{
	line-height: normal;
	color: var(--primary-color);
	margin: 0 0 0 5px;
}

/************************************/
/*** 	 06. Our Services css	  ***/
/************************************/

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

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

.service-item-image{
	max-width: 265px;
	margin: 0 auto 30px;
	overflow: hidden;
}

.service-item-image a{
	display: block;
	border-radius: 50%;
	cursor: none;
	overflow: hidden;
}

.service-item-image figure{
	display: block;
	border-radius: 50%;
}

.service-item-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
	transition: all 0.6s ease-in-out;
}

.service-item:hover .service-item-image figure img{
	transform: scale(1.06);
}

.service-item-content{
	padding: 0 15px;
}

.service-item-content h2{
	font-size: 20px;
	color: var(--white-color);
}

.service-item-content h2 a{
	color: inherit;
}

.service-item-content p{
	color: var(--white-color);
	margin: 10px 0 0;
}

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

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

.section-footer-text p span{
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 100px;
	padding: 4px 10px;
	margin-right: 10px;
}

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

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

.section-footer-text ul{
	width: 100%;
	padding: 0;
	margin: 20px 0 0;
	list-style: none;
}

.section-footer-text ul li{
	display: inline-block;
	line-height: normal;
	color: var(--primary-color);
	margin-right: 10px;
}

.section-footer-text .section-footer-border-list li{
	border-right: 1px solid var(--divider-color);
	padding-right: 10px;
}

.section-footer-text .section-footer-border-list li:last-child{
	padding-right: 0;
	border-right: none;
	margin-right: 0;
}

.section-footer-text ul li b{
	font-weight: 600;
}

.section-footer-text ul li i{
	font-size: 16px;
	color: var(--accent-color);
}

.section-footer-text.section-footer-contact{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
}

.section-footer-text.section-footer-contact span{
	width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
	align-items: center;
    margin-right: 10px;
}

.section-footer-text.section-footer-contact span img{
	width: 100%;
	max-width: 20px;
}

.section-footer-text.section-satisfy-img{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img{
	max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more{
	width: 32px;
	height: 32px;
    margin-left: -10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img{
	max-width: 16px;
}

.section-footer-text.section-satisfy-img ul{
	margin: 5px 0 0;
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li,
.dark-section .section-footer-text ul li i{
	color: var(--white-color);
}

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

.dark-section .section-footer-text ul li{
	border-color: var(--dark-divider-color);
}

.dark-section .satisfy-client-image{
	border-color: var(--primary-color);
}

/************************************/
/*** 	 07. Why Choose Us css 	  ***/
/************************************/

.why-choose-us{
	padding: 120px 0;
}

.why-choose-content{
	height: 100%;
	align-content: center;
}

.why-choose-accordion .accordion-item{
	position: relative;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}

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

.why-choose-accordion .accordion-header .accordion-button{
	display: flex;
	align-items: center;
	gap: 15px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--primary-color);
    padding: 0 20px 20px 0;
    transition: all 0.4s ease-in-out;
}

.why-choose-accordion .accordion-header .accordion-button.collapsed{
	padding: 0 20px 0 0;
}

.why-choose-accordion .accordion-header .accordion-button img{
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
}

.why-choose-accordion .accordion-item .accordion-button:not(.collapsed) img{
	filter: brightness(0) invert(0);
	transform: rotateY(180deg);
}

.why-choose-accordion .accordion-item .accordion-button::after, 
.why-choose-accordion .accordion-item .accordion-button.collapsed::after{
    content: '\f078';
    font-family: 'FontAwesome';
    position: absolute;
    top: 2px;
    right: 0px;
    font-size: 14px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.why-choose-accordion .accordion-button:not(.collapsed)::after{
	transform: rotate(180deg);
}

.why-choose-accordion .accordion-item .accordion-body{
	padding: 0 20px 0 45px;
}

.why-choose-accordion .accordion-item .accordion-body p{
    margin: 0;
}

.why-choose-image{
	height: 100%;
	margin-left: 15px;
}

.why-choose-image figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.why-choose-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.967;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  08. Intro Video css	  ***/
/************************************/

.intro-video-box{
	position: relative;
}

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

.intro-video-image{
	overflow: hidden;
}

.intro-video-image figure{
	position: relative;
	display: block;
}

.intro-video-image figure:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
    opacity: 30%;
	z-index: 1;
}

.intro-video-image img{
	width: 100%;
	aspect-ratio: 1 / 0.42;
	object-fit: cover;
	transition: all 1s ease-in-out;
}

.intro-video:hover .intro-video-image img{
	transform: scale(1.03);
}

.intro-video .video-play-button{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.intro-video .video-play-button a span{
	width: 70px;
	height: 70px;
}

.intro-video .video-play-button a span:hover{
	background: var(--secondary-color);
}

.intro-video .video-play-button a span i{
	font-size: 26px;
}

.intro-video .video-play-button a span:hover i{
	color: var(--primary-color);
}

/************************************/
/***      09. Our Chefs css       ***/
/************************************/

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

.chef-item{
	background: var(--secondary-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 10px;
}

.chef-item-image a{
	display: block;
	border-radius: 10px;
	cursor: none;
	overflow: hidden;
}

.chef-item-image figure{
	display: block;
}

.chef-item-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1.1382;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.chef-item:hover .chef-item-image figure img{
	transform: scale(1.06);
}

.chef-item-content{
	text-align: center;
	padding: 20px 10px 10px;
}

.chef-item-content h2{
	font-size: 20px;
}

.chef-item-content h2 a{
	color: inherit;
}

.chef-item-content p{
	margin: 5px 0 0;
}

/************************************/
/*** 	 10. How It Work css	  ***/
/************************************/

.how-it-work{
	padding: 120px 0;
}

.how-work-item{
	position: relative;
	height: calc(100% - 30px);
	min-height: 475px;
	align-content: end;
	border-radius: 20px;
	padding: 40px 35px;
	margin-bottom: 30px;
	overflow: hidden;
}

.how-work-item-image{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.how-work-item-image figure{
	position: relative;
	display: block;
	height: 100%;
}

.how-work-item-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 42.21%, rgba(25, 30, 36, 0.50) 59.66%, var(--primary-color) 99.92%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.how-work-item-image figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.how-work-item:hover .how-work-item-image figure img{
	transform: scale(1.06);
}

.how-work-item-content{
	position: relative;
	z-index: 1;
}

.how-work-item-content span{
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 20px;
	padding: 5px 20px;
	margin-bottom: 20px;
}

.how-work-item-content h3{
	font-size: 20px;
	color: var(--white-color);
}

.how-work-item-content p{
	color: var(--white-color);
	margin: 10px 0 0;
}

/************************************/
/***   11. Our Testimonials css   ***/
/************************************/

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

.testimonials-image-box{
	position: relative;
	height: 100%;
}

.testimonials-image{
	height: 100%;
}

.testimonials-image figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.testimonials-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.126;
	object-fit: cover;
	border-radius: 20px;
}

.testimonials-client-box{
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	max-width: 220px;
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 20px;
	z-index: 1;
}

.testimonials-client-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.testimonials-client-header .satisfy-client-image{
	border-color: var(--secondary-color);
}

.testimonials-client-header .satisfy-client-image figure img{
	max-width: 30px;
}

.testimonials-client-counter h2{
	width: 92px;
	font-size: 30px;
	font-weight: 600;
}

.testimonials-client-content p{
	margin-bottom: 0;
}

.testimonials-slider{
	height: 100%;
}

.testimonials-slider .swiper{
	height: 100%;
}

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

.testimonials-item{
	height: 100%;
	min-height: 455px;
	background-color: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 40px;
}

.testimonials-item-rating i{
	font-size: 20px;
	color: var(--accent-color);
}

.testimonials-item-content p{
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 0;
}

.testimonials-item-author-box{
	border-top: 1px solid var(--divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding-top: 40px;
	margin-top: 40px;
}

.testimonials-item-author{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.testimonials-item-author-image figure{
	display: block;
	border-radius: 50%;
}

.testimonials-item-author-image figure img{
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
}

.testimonials-item-author-content{
	width: calc(100% - 65px);
}

.testimonials-item-author-content h2{
	font-size: 20px;
}

.testimonials-item-author-content p{
	line-height: normal;
	margin: 5px 0 0;
}

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

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

/************************************/
/***    12. Photo Gallery css	  ***/
/************************************/

.our-gallery{
	padding: 120px 0;
}

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

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

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

.photo-gallery-slider .photo-gallery-pagination{
	margin-top: 40px;
	text-align: center;
}

.photo-gallery-slider .photo-gallery-pagination .swiper-pagination-bullet{
    position: relative;
    height: 10px;
    width: 10px;
    background: var(--dark-divider-color);
    margin: 0 4px;
	opacity: 1;
	transition: all 0.3s ease-in-out;
}

.photo-gallery-slider .photo-gallery-pagination .swiper-pagination-bullet-active{
	background: var(--accent-color);
    width: 30px;
    border-radius: 20px;
}

.photo-gallery-footer-list{
	margin-top: 40px;
}

.photo-gallery-footer-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	gap: 20px 60px;
}

.photo-gallery-footer-list ul li{
	color: var(--white-color);
    display: inline-flex;
    align-items: center;
}

.photo-gallery-footer-list ul li img{
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

/************************************/
/***    13. Pricing Plan css	  ***/
/************************************/

.our-pricing{
	padding: 60px 0;
}

.pricing-item{
	background-color: var(--secondary-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-item-header{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.pricing-item-header .icon-box{
	margin-bottom: 20px;
}

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

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

.pricing-item-content h2{
	font-size: 20px;
}

.pricing-item-content p{
	margin: 10px 0 0;
}

.pricing-item-price{
	margin-top: 20px;
}

.pricing-item-price h2{
	font-size: 48px;
}

.pricing-item-price h2 sub{
	font-family: var(--default-font);
	font-size: 16px;
	color: var(--text-color);
	bottom: 0;
}

.pricing-item-list h3{
	font-size: 20px;
}

.pricing-item-list ul{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 0;
	margin: 30px 0 0;
}

.pricing-item-list ul li{
	position: relative;
	width: calc(50% - 7.5px);
	line-height: 1.5em;
	padding-left: 25px;
}

.pricing-item-list ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.pricing-item-btn{
	margin-top: 50px;
}

.pricing-benefit-list{
	margin-top: 30px;
}

.pricing-benefit-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	gap: 20px 60px;
}

.pricing-benefit-list ul li{
	color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img{
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

/************************************/
/*** 	  14. Our FAQ's css	      ***/
/************************************/

.our-faqs{
	padding: 60px 0;
}

.faqs-content{
	position: sticky;
	top: 30px;
}

.faqs-image-box{
	position: relative;
	border-radius: 20px;
	align-content: end;
	overflow: hidden;
}

.faqs-image figure{
	display: block;
}

.faqs-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
}

.faqs-cta-box{
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	max-width: 300px;
	background-color: var(--white-color);
	border-radius: 14px;
	overflow: hidden;
	z-index: 1;
}

.faqs-cta-title{
	background-color: var(--primary-color);
	padding: 15px 20px;
}

.faqs-cta-title h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
}

.faqs-cta-item-list{
	padding: 20px;
}

.faqs-cta-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.faqs-cta-item:last-child{
	margin-bottom: 0;
}

.faqs-cta-item .icon-box{
	height: 50px;
	width: 50px;
	background-color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.faqs-cta-item:hover .icon-box{
	background: var(--accent-color);
}

.faqs-cta-item .icon-box img{
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.faqs-cta-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.faqs-cta-item-content{
	width: calc(100% - 65px);
}

.faqs-cta-item-content p{
	line-height: normal;
	margin-bottom: 0;
}

.faqs-cta-item-content h3{
	font-size: 20px;
	margin-top: 5px;
}

.faqs-cta-item-content h3 a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.faqs-cta-item-content h3 a:hover{
	color: var(--accent-color);
}

.faq-accordion{
	margin-left: 40px;
}

.faq-accordion .accordion-item{
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 10px;
	margin-bottom: 20px;
	overflow: hidden;
}

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

.faq-accordion .accordion-header .accordion-button{
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
    background: transparent;
	color: var(--primary-color);
	padding: 23px 55px 23px 30px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button::before, 
.faq-accordion .accordion-item .accordion-button.collapsed::before{
    content: '\2b';
    font-family: 'FontAwesome';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
	font-weight: 400;
	font-size: 20px;
	color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::before{
    transform: translateY(-50%) rotate(45deg);
}

.faq-accordion .accordion-item .accordion-body{
	border-top: 1px solid var(--divider-color);
	padding: 23px 30px;
}

.faq-accordion .accordion-item .accordion-body p{
	color: var(--text-color);
	margin: 0;
}

.dark-section .faq-accordion .accordion-item{
	background: var(--dark-divider-color);
}

.dark-section .faq-accordion .accordion-header .accordion-button{
	color: var(--white-color);
}

.dark-section .faq-accordion .accordion-item .accordion-button::before, 
.dark-section .faq-accordion .accordion-item .accordion-button.collapsed::before{
	color: var(--white-color);
}

.dark-section .faq-accordion .accordion-item .accordion-body{
	border-color: var(--dark-divider-color);
}

.dark-section .faq-accordion .accordion-item .accordion-body p{
	color: var(--white-color);
}

/************************************/
/*** 	   15. Our Blog css	  	  ***/
/************************************/

.our-blog{
	padding: 120px 0 90px;
}

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

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

.post-featured-image a{	
	display: block;
	border-radius: 20px;
	cursor: none;
	overflow: hidden;
}

.post-featured-image figure{
	display: block;
}

.post-featured-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.648;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

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

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

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

.post-item-btn{
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

/************************************/
/*** 	    16. Footer css	      ***/
/************************************/

.main-footer{
	padding: 120px 0 0;
}

.about-footer{
	max-width: 300px;
}

.footer-logo img{
	width: 100%;
	max-width: 171px;
}

.about-footer-content{
	margin-top: 30px;
}

.about-footer-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-social-links{
	margin-top: 30px;
}

.footer-social-links ul{
	list-style: none;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li a{
	width: 40px;
	height: 40px;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover{
	color: var(--primary-color);
	border-color: var(--white-color);
	background-color: var(--white-color);
}

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

.footer-links-box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-left: 40px;
}

.footer-links{
	max-width: 30%;
}

.footer-links h2{
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links ul{
	list-style: disc;
	padding: 0 0 0 20px;
	margin: 0;
}

.footer-links ul li{
	line-height: 1.5em;
	color: var(--white-color);
	margin-bottom: 15px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li::marker{
	color: var(--accent-color);
}

.footer-links ul li a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

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

.footer-working-hour{
	max-width: 100%;
	width: 280px;
}

.footer-working-hour ul{
	list-style: none;	
	padding: 0;
}

.footer-working-hour ul li{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.footer-newsletter-form{
	margin-top: 25px;
}

.footer-newsletter-form h3{
	font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-newsletter-form .form-group{
	display: flex;
	border: 1px solid var(--dark-divider-color);
    border-radius: 2px;
	padding: 4px;
}

.footer-newsletter-form .form-group .form-control{
	width: calc(100% - 40px);
	line-height: 1.3em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 6px 15px;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--white-color);
	opacity: 50%;
}

.footer-newsletter-form .form-group .newsletter-btn{
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border: none;
	border-radius: 5px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover{
	background-color: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn img{
    width: 100%;
	max-width: 18px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img{
	filter: brightness(0) invert(0);
	transform: rotate(0);
}

.footer-copyright{
	border-top: 1px solid var(--dark-divider-color);
	padding: 60px 0;
	margin-top: 100px;
}

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

.footer-copyright-text p{
	color: var(--white-color);
	margin-bottom: 0;
}

/************************************/
/*** 	 17. About Us Page css	  ***/
/************************************/

.page-header{
	position: relative;
	background-image: url('../icon/page-header-bg.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 270px 0 180px;
	overflow: hidden;
}

.page-header:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(270deg, transparent 9.61%, rgba(34, 31, 30, 0.45) 45.99%, rgba(34, 31, 30, 0.90) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
	z-index: 1;
}

.page-header-box{
	position: relative;
	z-index: 2;
}

.page-header-box h1{
	display: inline-block;
	font-size: 62px;
    font-weight: 700;
	line-height: 1.1em;
	letter-spacing: -0.02em;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

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

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

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

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

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

.approach-item{
	position: relative;
	border-radius: 20px;
	align-content: end;
	height: calc(100% - 30px);
	min-height: 400px;
	padding: 10px;
	margin-bottom: 30px;
	overflow: hidden;
}

.approach-item-image{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.approach-item-image figure{
	display: block;
	height: 100%;
}

.approach-item-image figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.approach-item:hover .approach-item-image figure img{
	transform: scale(1.06);
}

.approach-item-body{
	position: relative;
	background-color: var(--white-color);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	padding: 10px;
	z-index: 1;
}

.approach-item-body .icon-box{
	position: relative;
	height: 100px;
	width: 100px;
	background-color: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.approach-item-body .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 5px;
	width: 100%;
	height: 100%;
	transform: scale(0) rotate(180deg);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.approach-item-body .icon-box img{
	position: relative;
	width: 100%;
	max-width: 50px;
	z-index: 1;
}

.approach-item-content{
	width: calc(100% - 115px);
}

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

.approach-item-content p{
	margin: 10px 0 0;
}

.our-special-dish{
	padding: 120px 0;
}

.special-dish-item{
	height: calc(100% - 153px);
	min-height: 350px;
	background-color: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	gap: 20px;
	padding: 0 40px 40px;
	margin: 123px 0 30px;
}

.special-dish-item-image figure{
	display: block;
	border-radius: 50%;
}

.special-dish-item-image figure img{
	width: 100%;
	max-width: 246px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border: 5px solid var(--bg-color);
	border-radius: 50%;
	margin-top: -123px;
}

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

.special-dish-item-content p{
	margin: 10px 0 0;
}

.special-dish-item-btn{
	margin-top: 40px;
}

.our-value{
	padding: 120px 0;
}

.our-value-content{
	height: 100%;
	align-content: center;
}

.our-value-body{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 20px;
}

.our-value-item-list{
	padding: 20px 20px 40px;
}

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

.our-value-item:last-child{
	margin-bottom: 0;
}

.our-value-item h3{
	font-size: 20px;
}

.our-value-item p{
	margin: 10px 0 0;
}

.our-value-skills-list{
	background-color: var(--bg-color);
	border-radius: 10px;
	padding: 30px;
}

.skills-progress-bar{
	margin-bottom: 30px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0px;
}

.skills-progress-bar .skill-data{
    display: flex;
	align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no{
	font-size: 18px;
	font-weight: 400;	
    line-height: normal;
}

.skills-progress-bar .skillbar .skill-progress{
    position: relative;
    width: 100%;
    height: 10px;
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 10px;
}

.our-value-image-box{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-left: 15px;
}

.our-value-image-box-1{
	width: calc(46% - 10px);
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.our-value-image{
	height: 100%;
}

.our-value-image figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.our-value-image figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.our-value-image-box-1 .our-value-image figure img{
	aspect-ratio: 1 / 1.096;
}

.our-value-image-box-2{
	position: relative;
	width: calc(54% - 10px);
}

.our-value-image-box-2 .our-value-image figure img{
	aspect-ratio: 1 / 1.92;
}

.our-value-image-box-2 .get-in-touch-circle{
	position: absolute;
	top: 50%;
	left: -10px;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.get-in-touch-circle a{
	display: inline-block;
    border-radius: 50%;
}

.our-value-image-box-2 .get-in-touch-circle a{
	border: 5px solid var(--bg-color);
}

.get-in-touch-circle a img{
	width: 100%;
    max-width: 160px;
	aspect-ratio: 1 / 1;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
    to{
		transform: rotate(360deg);
    }
}

.get-in-touch-circle a:hover img{
	animation-play-state: paused;
}

/************************************/
/*** 	 18. Services Page css    ***/
/************************************/

.page-services{
	padding: 120px 0 40px;
}

.page-services .service-item{
	height: calc(100% - 80px);
	margin-bottom: 80px;
}

.page-services .service-item-content h2{
	color: var(--primary-color);
}

.page-services .service-item-content p{
	color: var(--text-color);
}

/************************************/
/*** 	 19. Service Single css	  ***/
/************************************/

.page-service-single{
	padding: 120px 0;
}

.page-single-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 15px;
}

.page-category-list{
	background: var(--secondary-color);
	border-radius: 20px;
    margin-bottom: 60px;
	overflow: hidden;
}

.page-category-list .page-category-list-title{
	font-size: 20px;
	line-height: normal;
	color: var(--white-color);
	background: var(--accent-color);
	padding: 18px 30px;
}

.page-category-list ul{
	list-style: none;
    margin: 0;
	padding: 30px;
}

.page-category-list ul li{
	line-height: 1.5em;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

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

.page-category-list ul li a{
    position: relative;
    display: block;
    text-transform: capitalize;
	color: inherit;
    padding-right: 25px;
    transition: all 0.4s ease-in-out;
}

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

.page-category-list ul li a::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
	transform: translate(-2px, -50%);
	/*background: url('../icon/arrow-primary.svg') no-repeat;*/
	background-position: center center;
	background-size: cover;
    width: 16px;
    height: 16px;
    transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before{
	transform: translate(0, -50%);
}

.sidebar-cta-box{
	position: relative;
	min-height: 400px;
	background: url('../icon/sidebar-cta-image.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 40px;
	text-align: center;
	overflow: hidden;
}

.sidebar-cta-box::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	opacity: 60%;
	z-index: 0;
}

.sidebar-cta-box-header,
.sidebar-cta-item{
	position: relative;
	z-index: 1;
}

.sidebar-cta-logo img{
	width: 100%;
	max-width: 171px;
}

.sidebar-cta-title{
	margin-top: 20px;
}

.sidebar-cta-title h2{
	font-size: 20px;
	line-height: 1.4em;
	color: var(--white-color);
}

.sidebar-cta-item .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
}

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

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

.sidebar-cta-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 28px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.sidebar-cta-box:hover .sidebar-cta-item .icon-box img{
	filter: brightness(0) invert(0);
}

.sidebar-cta-item-content p{
	color: var(--white-color);
	margin: 0;
}

.sidebar-cta-item-content h3{
	font-size: 20px;
	color: var(--white-color);
	margin: 5px 0 0;
}

.sidebar-cta-item-content h3 a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-item-content h3 a:hover{
	color: var(--accent-color);
}

.page-single-image{
    margin-bottom: 30px;
}

.page-single-image figure{
    display: block;
    border-radius: 20px;
}

.page-single-image img{
    width: 100%;
    aspect-ratio: 1 / 0.5977;
    object-fit: cover;
    border-radius: 20px;
}

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

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

.service-entry h2{
	font-size: 48px;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.service-entry h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.service-entry p:last-child,
.service-entry h2:last-child,
.service-entry h3:last-child{
	margin: 0;
}

.service-why-choose-box,
.service-planning-box,
.service-action-box{
	margin-top: 60px;
}

.service-why-choose-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-why-choose-item{
	width: calc(33.33% - 20px);
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

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

.service-why-choose-item .icon-box img{
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
}

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

.service-why-choose-item-content h3{
	line-height: 1.4em;
}

.service-planning-item-list{
	margin-top: 40px;
}

.service-planning-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.service-planning-item:last-child{
	border-bottom: none;
	padding: 0;
	margin: 0;
}

.service-planning-item-image figure{
	display: block;
	border-radius: 50%;
}

.service-planning-item-image figure img{
	width: 100%;
	max-width: 80px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.service-planning-item-content{
	width: calc(100% - 110px);
}

.service-action-video-box{
	position: relative;
	min-height: 450px;
	border-radius: 20px;
	margin-top: 40px;
	overflow: hidden;
}

.service-action-video-image{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.service-action-video-image figure{
	position: relative;
	display: block;
	height: 100%;
	overflow: hidden;
}

.service-action-video-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	opacity: 50%;
	z-index: 0;
}

.service-action-video-image figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-action-video-box .video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.service-action-video-box .video-play-button a span{
	width: 72px;
	height: 72px;
}

.service-action-video-box .video-play-button a span:hover{
	background: var(--secondary-color);
}

.service-action-video-box .video-play-button a span i{
	font-size: 30px;
}

.service-action-video-box .video-play-button a span:hover i{
	color: var(--primary-color);
}

.page-single-faqs .faq-accordion{
	margin: 0;
}

/************************************/
/*** 	 20. Blog Archive css	  ***/
/************************************/

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

.page-pagination{
    margin-top: 30px;
    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(--white-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
	font-family: var(--accent-font);
    font-weight: 600;
	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);
	color: var(--white-color);
}

/************************************/
/*** 	  21. Blog Single css	  ***/
/************************************/

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

.post-single-meta ol li{
	font-size: 18px;
	color: var(--white-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(--white-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

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

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

.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-family: var(--accent-font);
    font-weight: 700;
    line-height: 1.2em;
	margin: 0 0 0.42em;
}

.post-entry h1{
	font-size: 62px;
	line-height: 1.1em;
	letter-spacing: -0.02em;
}

.post-entry h2{
	font-size: 48px;
	line-height: 1.1em;
	letter-spacing: -0.02em;
}

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

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

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

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

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

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

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
}

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

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

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

.post-entry ol li,
.post-entry ul li{
    position: relative;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 10px;
}

.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: var(--accent-color) url('../icon/icon-blockquote.svg');
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border-radius: 20px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 20px;
}

.post-entry blockquote p{
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

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

.tag-links{
	font-family: var(--accent-font);
    font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
	font-family: var(--accent-font);
    font-size: 16px;
    line-height: 1em;
	font-weight: 500;
    text-transform: capitalize;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 10px;
    padding: 12px 20px;
	transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-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;
	border: 1px solid var(--divider-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: all 0.4s ease-in-out;
}

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

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

/************************************/
/*** 	   22. Chef Page css	  ***/
/************************************/

.page-chef{
	padding: 120px 0 90px;
}

/************************************/
/***     23. Chef Single css	  ***/
/************************************/

.page-chef-single{
	padding: 120px 0;
}

.chef-single-image{
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 60px;
}

.chef-single-image figure{
	position: relative;
	display: block;
}

.chef-single-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 42.21%, #191E24 99.92%);
	width: 100%;
	height: 100%;
}

.chef-single-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1.092;
	object-fit: cover;
}

.member-social-list{
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	z-index: 1;
}

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

.member-social-list ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.member-social-list ul li:hover a{
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--white-color);
}

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

.chef-member-about,
.chef-member-approach,
.chef-member-skill-expertise{
	margin-bottom: 60px;
}

.chef-contact-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
}

.chef-contact-item{
	width: calc(50% - 15px);
	background-color: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	padding: 30px;
}

.chef-contact-item .icon-box{
	position: relative;
    height: 50px;
    width: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.chef-contact-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.chef-contact-item-content{
	width: calc(100% - 65px);
}

.chef-contact-item-content p{
	margin-bottom: 0;
}

.chef-contact-item-content h3{
	font-size: 20px;
	margin-top: 5px;
}

.chef-specialization-item{
	width: 100%;
	border-top: 1px solid var(--divider-color);
	background-color: transparent;
	border-radius: 0;
	padding: 40px 0 0;
}

.chef-approach-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 40px;
}

.chef-approach-item{
	position: relative;
	width: calc(33.33% - 13.33px);
}

.chef-approach-item-image figure{
	position: relative;
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.chef-approach-item-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 42.21%, #191E24 99.92%);
	width: 100%;
	height: 100%;
}

.chef-approach-item-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.626;
	object-fit: cover;
	border-radius: 20px;
}

.chef-approach-item-title{
	position: absolute;
	right: 15px;
	bottom: 20px;
	left: 15px;
	text-align: center;
	z-index: 1;
}

.chef-approach-item-title h3{
	font-size: 20px;
	color: var(--white-color);
}

.chef-member-skill-image-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.chef-member-skill-image{
	width: calc(38% - 15px);
}

.chef-member-skill-image figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.chef-member-skill-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.813;
	object-fit: cover;
	border-radius: 20px;
}

.chef-member-skill-list{
	width: calc(62% - 15px);
	align-content: center;
}

.chef-contact-form{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 50px;
}

/************************************/
/***      24. Pricing Page css    ***/
/************************************/

.page-pricing{
	padding: 120px 0;
}

/************************************/
/***   25. Testimonials Page css  ***/
/************************************/

.page-testimonials{
	padding: 120px 0 90px;
}

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

/************************************/
/***     26. Image Gallery css    ***/
/************************************/

.page-gallery{
	padding: 120px 0 90px;
}

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

.page-gallery .page-gallery-box .photo-gallery img{
	aspect-ratio: 1 / 0.8678;
}

/************************************/
/***     27. Video Gallery css    ***/
/************************************/

.page-video-gallery{
	padding: 120px 0 90px;
}

.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;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
	border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

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

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    right: 0;
    left: 50%;
    transform: translate(-50%, -50%);
	font-size: 20px;
	color: var(--white-color);
	background: var(--accent-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{
	width: 100%;
	aspect-ratio: 1 / 0.8678;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  28. FAQ's Page css	  ***/
/************************************/

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

.page-faqs .page-single-faqs{
    margin-bottom: 60px;
}

.page-faqs .page-single-faqs:last-child{
    margin-bottom: 0px;
}

.page-faqs .page-single-faqs .faq-accordion{
	margin: 0;
}

/************************************/
/*** 	29. Contact Us Page css	  ***/
/************************************/

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

.contact-us-box{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 50px;
}

.contact-us-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 80px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 60px;
	margin-bottom: 60px;
}

.contact-us-item{
	position: relative;
	width: calc(33.33% - 53.33px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.contact-us-item::before{
	content: '';
	position: absolute;
	top: 0;
	right: -40px;
	background: var(--divider-color);
	width: 1px;
	height: 100%;
}

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

.contact-us-item .icon-box{
	position: relative;
    height: 50px;
    width: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.contact-us-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.contact-us-item-content{
	width: calc(100% - 65px);
}

.contact-us-item-content p{
	margin-bottom: 0;
}

.contact-us-item-content h2{
	font-size: 20px;
	margin-top: 5px;
}

.contact-us-item-content h2 a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.contact-us-item-content h2 a:hover{
	color: var(--accent-color);
}

.contact-image-form-box{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.contact-us-image{
	width: calc(49% - 20px);
}

.contact-us-image figure{
    display: block;
    height: 100%;
    border-radius: 20px;
}

.contact-us-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.064;
	object-fit: cover;
	border-radius: 20px;
}

.contact-image-form-box .contact-us-form{
	width: calc(51% - 20px);
	align-content: center;
}

.contact-us-form .section-title{
    border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
}

.contact-form label{
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 12px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
	font-weight: 400;
}

.google-map{
    padding: 60px 0 120px;
}

.google-map-iframe{
	height: 600px;
}

.google-map-iframe iframe{
	width: 100%;
	height: 100%;
	filter: grayscale(100%);
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover{
	filter: grayscale(0);
}

/************************************/
/*** 	 30. 404 Error Page css	  ***/
/************************************/

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

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

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

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

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

/************************************/
/***      31. Responsive css      ***/
/************************************/

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

	.main-menu ul li{
		margin: 0;
	}

	.section-content-btn .section-btn{
		margin-top: 20px;
	}
	
	.section-title-content{
        margin-top: 10px;
    }

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

	.hero::before{
		background: var(--primary-color);
		opacity: 50%;
	}

	.hero-content{
		margin: 0;
	}

	.about-us-image-box{
		max-width: 740px;
		height: auto;
		margin: 0 auto 30px;
	}

	.about-us-image figure,
	.about-us-image figure img{
		height: auto;
	}

	.about-us-image figure img{
		aspect-ratio: 1 / 1.1;
	}

	.about-us-content{
		height: auto;
	}

	.why-choose-content{
		height: auto;
		margin-bottom: 30px;
	}

	.why-choose-image{
		height: auto;
		margin: 0;
	}

	.why-choose-image figure{
		height: auto;
	}

	.why-choose-image figure img{
		height: auto;
		aspect-ratio: 1 / 0.6;
	}

	.intro-video-image img{
		aspect-ratio: 1 / 0.6;
	}

	.chef-item-image figure img{
		aspect-ratio: 1 / 1.1;
	}

	.faqs-content{
		position: initial;
		margin-bottom: 30px;
	}

	.faqs-image figure img{
		aspect-ratio: 1 / 0.6;
	}

	.faq-accordion{
		margin: 0;
	}

	.about-footer{
		max-width: 100%;
		margin-bottom: 30px;
	}

	.about-footer-content{
		margin-top: 15px;
	}

	.footer-social-links{
		margin-top: 20px;
	}

	.footer-links-box{
		margin: 0;
	}

	.footer-links h2{
		margin-bottom: 20px;
	}

	.footer-links ul li{
		margin-bottom: 10px;
	}

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

	.our-value-content{
		height: auto;
		margin-bottom: 30px;
	}

	.our-value-image-box{
		height: auto;
		max-width: 740px;
		margin: 0 auto;
	}

	.our-value-image-box-1 .our-value-image figure img,
	.our-value-image-box-2 .our-value-image figure img{
		aspect-ratio: 1 / 1;
	}

	.page-single-sidebar{
		margin: 0;
	}

	.page-category-list .page-category-list-title{
		padding: 15px 20px;
	}

	.page-category-list ul{
		padding: 20px;
	}

	.page-category-list ul li{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.sidebar-cta-box{
		min-height: 350px;
		padding: 20px;
	}

	.sidebar-cta-item .icon-box{
		width: 50px;
		height: 50px;
		margin-bottom: 20px;
	}

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

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

	.service-why-choose-box,
	.service-planning-box,
	.service-action-box{
		margin-top: 40px;
	}

	.service-why-choose-item-list{
		gap: 20px;
		margin-top: 30px;
	}

	.service-why-choose-item .icon-box{
		margin-bottom: 20px;
	}

	.service-why-choose-item{
		width: calc(33.33% - 13.33px);
		padding: 20px;
	}

	.service-why-choose-item-content h3{
		font-size: 18px;
	}

	.service-planning-item-list{
		margin-top: 30px;
	}

	.service-planning-item{
		gap: 15px;
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.service-planning-item-content{
		width: calc(100% - 95px);
	}

	.service-action-video-box{
		margin-top: 30px;
	}

	.chef-member-about,
	.chef-member-approach,
	.chef-member-skill-expertise{
		margin-bottom: 40px;
	}

	.chef-contact-item-list{
		gap: 30px;
	}

	.chef-contact-item{
		padding: 20px;
	}

	.chef-specialization-item{
		padding: 30px 0 0;
	}

	.chef-approach-item-image figure img{
		aspect-ratio: 1 / 0.85;
	}

	.chef-contact-form{
		padding: 30px;
	}

	.contact-us-box{
		padding: 30px;
	}

	.contact-us-item-list{
		gap: 30px;
	}

	.contact-us-item{
		width: calc(33.33% - 20px);
	}

	.contact-us-item::before{
		right: -15px;
	}
}

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

	.btn-default{
		font-size: 16px;
		padding: 15px 50px 15px 20px;
	}

	.btn-default::before{
        width: 36px;
        height: 36px;
	}

	.navbar{
		padding: 20px 0;
	}

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

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

	.header-btn{
		display: none;
	}

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

	.section-title .section-sub-title{
		padding: 7px 12px 7px 36px;
		margin-bottom: 10px;
	}

	.section-title .section-sub-title::before{
		left: 12px;
	}

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

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

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

	.hero{
		padding: 200px 0 110px;
	}

	.hero-content-body{
		margin: 0;
	}

	.hero-counter-list{
		padding-top: 30px;
		margin-top: 30px;
	}

	.hero-counter-item-content h2{
		font-size: 26px;
	}

	.about-us{
		padding: 60px 0;
	}

	.about-us-content-list{
		margin-top: 30px;
	}

	.about-us-content-list ul li{
		margin-bottom: 10px;
	}

	.about-us-content-list ul li::before{
		font-size: 16px;
	}

	.our-services{
		padding: 60px 0;
	}

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

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

	.section-footer-text ul li{
		margin-right: 5px;
	}

	.section-footer-text .section-footer-border-list li{
		padding-right: 5px;
	}

	.why-choose-us{
		padding: 60px 0;
	}

	.why-choose-accordion .accordion-item{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.why-choose-accordion .accordion-header .accordion-button{
		gap: 10px;
		font-size: 18px;
		padding: 0 20px 10px 0;
	}

	.why-choose-accordion .accordion-header .accordion-button img{
		max-width: 24px;
	}

	.why-choose-accordion .accordion-item .accordion-body{
		padding: 0 20px 0 34px;
	}

	.our-chefs{
		padding: 60px 0;
	}

	.how-it-work{
		padding: 60px 0;
	}

	.how-work-item{
		min-height: 400px;
		padding: 20px;
	}

	.our-testimonials{
		padding: 60px 0;
	}

	.testimonials-client-box{
		left: 15px;
		right: 15px;
		bottom: 15px;
		max-width: 100%;
		padding: 15px;
	}

	.testimonials-client-counter h2{
		width: 80px;
		font-size: 26px;
	}

	.testimonials-item{
		min-height: auto;
		padding: 30px 20px;
	}

	.testimonials-item-rating i{
		font-size: 18px;
	}

	.testimonials-item-content p{
		font-size: 18px;
	}

	.testimonials-item-author-box{
		padding-top: 30px;
		margin-top: 30px;
	}

	.our-testimonials .section-footer-text{
		margin-top: 40px;
	}

	.our-gallery{
		padding: 60px 0;
	}

	.photo-gallery-slider .photo-gallery-pagination{
		margin-top: 30px;
	}

	.photo-gallery-footer-list{
		margin-top: 30px;
	}

	.photo-gallery-footer-list ul{
        gap: 15px 30px;
    }

	.photo-gallery-footer-list ul li{
		font-size: 16px;
	}

	.photo-gallery-footer-list ul li img{
        max-width: 18px;
        margin-right: 5px;
    }

	.our-pricing{
		padding: 60px 0;
	}

	.pricing-item{
		padding: 30px;
	}

	.pricing-item-header{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.pricing-item-price{
		margin-top: 15px;
	}

	.pricing-item-price h2{
		font-size: 38px;
	}

	.pricing-item-list ul{
		margin-top: 20px;
		gap: 10px 15px;
	}

	.pricing-item-list ul li{
		font-size: 16px;
	}

	.pricing-item-list ul li::before{
		font-size: 16px;
	}

	.pricing-item-btn{
		margin-top: 30px;
	}

	.pricing-benefit-list{
        margin-top: 10px;
    }

	.pricing-benefit-list ul{
        gap: 15px 30px;
    }

	.pricing-benefit-list ul li{
		font-size: 16px;
	}

	.pricing-benefit-list ul li img{
        max-width: 18px;
        margin-right: 10px;
    }

	.our-faqs{
		padding: 60px 0;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding: 18px 45px 18px 20px;
	}

	.faq-accordion .accordion-item .accordion-button::before,
	.faq-accordion .accordion-item .accordion-button.collapsed::before{
		right: 20px;
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 18px 20px;
	}

	.our-blog{
		padding: 60px 0 30px;
	}

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

	.post-item-btn{
		padding-top: 15px;
		margin-top: 15px;
	}

	.main-footer{
		padding: 60px 0 0;
	}

	.footer-newsletter-form{
		margin-top: 20px;
	}

	.footer-newsletter-form h3{
		margin-bottom: 15px;
	}

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

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

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

	.approach-item-body .icon-box{
		width: 70px;
		height: 70px;
	}

	.approach-item-body .icon-box img{
		max-width: 34px;
	}

	.approach-item-content{
		width: calc(100% - 85px);
	}

	.our-special-dish{
		padding: 60px 0;
	}

	.special-dish-item{
		height: calc(100% - 120px);
		min-height: auto;
		padding: 0 30px 30px;
		margin: 90px 0 30px;
	}

	.special-dish-item-image figure img{
		max-width: 180px;
		margin-top: -90px;
	}

	.special-dish-item-btn{
		margin-top: 20px;
	}

	.our-value{
		padding: 60px 0;
	}

	.our-value-item-list{
		padding: 10px 10px 20px;
	}

	.get-in-touch-circle a img{
		max-width: 130px;
	}

	.page-services{
		padding: 60px 0 30px;
	}

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

	.page-service-single{
		padding: 60px 0;
	}

	.page-single-sidebar{
		position: initial;
		margin-bottom: 30px;
	}

	.page-category-list{
		margin-bottom: 30px;
	}

	.page-single-image{
		margin-bottom: 20px;
	}

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

	.service-entry h2{
		font-size: 38px;
		margin-bottom: 15px;
	}

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

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
        padding: 60px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }
    
    .post-entry h2{
        font-size: 38px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 15px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }
    
    .post-tags .tag-links a{
        padding: 12px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-chef{
		padding: 60px 0 30px;
	}

	.page-chef-single{
		padding: 60px 0;
	}

	.chef-single-image{
		margin-bottom: 30px;
	}

	.chef-single-image figure img{
		aspect-ratio: 1 / 0.75;
	}

	.chef-approach-item-list{
		margin-bottom: 30px;
	}

	.chef-approach-item-title h3{
		font-size: 18px;
	}

	.page-pricing{
		padding: 60px 0;
	}

	.page-testimonials{
		padding: 60px 0 30px;
	}

	.page-gallery{
		padding: 60px 0 30px;
	}

	.page-video-gallery{
		padding: 60px 0 30px;
	}

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

    .page-faqs .page-single-faqs{
        margin-bottom: 40px;
    }

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

	.contact-us-box{
		padding: 30px;
	}

	.contact-us-item-list{
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.contact-us-item{
		width: calc(50% - 15px);
	}

	.contact-us-item:nth-child(3n + 3):before{
		display: block;
	}

	.contact-us-item:nth-child(2n + 2):before,
	.contact-us-item:last-child:before{
		display: none;
	}

	.contact-image-form-box{
		gap: 30px;
	}

	.contact-us-image{
		width: 100%;
	}

	.contact-us-image figure{
		height: auto;
	}

	.contact-us-image figure img{
		height: auto;
		aspect-ratio: 1 / 0.7;
	}

	.contact-image-form-box .contact-us-form{
		width: 100%;
	}

	.contact-us-form .section-title{
		padding-bottom: 30px;
	}

	.contact-form label{
		margin-bottom: 10px;
	}

	.contact-form .form-control{
		padding: 10px 15px;
	}

	.google-map{
		padding: 30px 0 60px;
	}

	.google-map-iframe{
		height: 450px;
	}

	.error-page{
		padding: 60px 0px;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}
}

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

	body{
		font-size: 16px;
	}

	.readmore-btn{
		padding-right: 25px;
	}

	.readmore-btn::before{
		width: 16px;
		height: 16px;
	}

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

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

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

	.hero{
        padding: 180px 0 90px;
    }

	.hero-counter-list{
		gap: 20px;
	}

	.hero-counter-item{
		width: calc(33.33% - 13.33px);
	}

	.hero-counter-item::before{
		right: -10px;
	}

	.hero-counter-item{
		text-align: center;
	}

	.hero-counter-item .icon-box{
		margin: 0 auto;
	}

	.hero-counter-item-content{
		width: 100%;
	}

	.hero-counter-item-content h2{
		font-size: 22px;
	}

	.hero-counter-item-content p{
		font-size: 14px;
	}

	.about-us-image{
		width: 55%;
		padding-bottom: 30px;
	}

	.about-us-image figure{
		margin-right: -100px;
	}

	.about-video-image{
		width: 45%;
	}

	.about-video-image figure{
		border-width: 4px;
		border-radius: 24px;
	}

	.video-play-button a span{
		width: 45px;
		height: 45px;
	}

	.video-play-button a span i{
		font-size: 18px;	
	}

	.about-us-item{
		width: 100%;
	}

	.about-us-item-title h3{
		font-size: 18px;
	}

	.about-us-item-content{
		margin-top: 10px;
	}

	.about-client-content h2{
		width: 56px;
		font-size: 18px;
	}

	.about-client-content h2 i{
		font-size: 16px;
	}

	.service-item-image{
		max-width: 220px;
	}

	.service-item-content{
		padding: 0;
	}

	.service-item-content h2{
		font-size: 18px;
	}

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

	.why-choose-accordion .accordion-header .accordion-button{
		font-size: 16px;
	}

	.why-choose-accordion .accordion-header .accordion-button img{
		max-width: 20px;
	}

	.why-choose-accordion .accordion-item .accordion-body{
		padding: 0;
	}

	.intro-video-image img{
		aspect-ratio: 1 / 0.7;
	}

	.intro-video .video-play-button a span{
		width: 50px;
		height: 50px;
	}

	.intro-video .video-play-button a span i{
		font-size: 20px;
	}

	.chef-item-content h2{
		font-size: 18px;
	}

	.how-work-item{
		padding: 20px;
	}

	.how-work-item-content span{
		margin-bottom: 15px;
	}

	.how-work-item-content h3{
		font-size: 18px;
	}

	.how-work-item-content p{
		margin: 5px 0 0;
	}

	.testimonials-image-box{
		height: auto;
		margin-bottom: 30px;
	}

	.testimonials-image,
	.testimonials-image figure,
	.testimonials-image figure img{
		height: auto;
	}

	.testimonials-client-counter h2{
		width: 70px;
		font-size: 22px;
	}

	.testimonials-item{
		gap: 20px;
		padding: 20px;
	}

	.testimonials-item-content p{
		font-size: 16px;
	}

	.testimonials-item-author-box{
		padding-top: 20px;
		margin-top: 20px;
	}

	.testimonials-item-author-content h2{
		font-size: 18px;
	}

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

	.photo-gallery-footer-list{
		margin-top: 20px;
	}

	.photo-gallery-footer-list ul{
        gap: 10px 5px;
    }

	.photo-gallery-footer-list ul li{
        font-size: 14px;
    }

	.photo-gallery-footer-list ul li img{
        max-width: 14px;
        margin-right: 5px;
    }

	.pricing-item{
		padding: 20px;
	}

	.pricing-item-content h2{
		font-size: 18px;
	}

	.pricing-item-content p{
		margin: 5px 0 0;
	}

	.pricing-item-price h2{
		font-size: 26px;
	}

	.pricing-item-list h3{
		font-size: 18px;
	}

	.pricing-benefit-list{
		margin-top: 5px;
	}

	.pricing-benefit-list ul{
        gap: 10px 5px;
    }

	.pricing-benefit-list ul li{
        font-size: 14px;
    }

	.pricing-benefit-list ul li img{
        max-width: 14px;
        margin-right: 5px;
    }

	.faqs-cta-box{
		left: 15px;
		right: 15px;
		bottom: 15px;
		max-width: 100%;
	}

	.faqs-image figure img{
		aspect-ratio: 1 / 0.9;
	}

	.faqs-cta-title{
		padding: 12px 15px;
	}

	.faqs-cta-title h3{
		font-size: 18px;
	}

	.faqs-cta-item-list{
		padding: 15px;
	}

	.faqs-cta-item-content h3{
		font-size: 18px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 16px;
		padding: 12px 40px 12px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::before,
	.faq-accordion .accordion-item .accordion-button.collapsed::before{
		right: 15px;
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 12px 15px;
	}

	.post-item-content h2{
		font-size: 18px;
	}

	.footer-links{
		max-width: 100%;
	}

	.footer-links h2{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-working-hour{
		width: 100%;
	}

	.footer-newsletter-form h3{
		font-size: 18px;
	}

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

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

	.page-header-box ol li.breadcrumb-item{
		font-size: 16px;
	}

	.approach-item{
		min-height: 350px;
	}

	.approach-item-content h3{
		font-size: 18px;
	}

	.approach-item-content p{
		margin-top: 5px;
	}

	.special-dish-item{
		height: calc(100% - 100px);
		padding: 0 20px 20px;
		margin: 70px 0 30px;
	}

	.special-dish-item-image figure img{
		max-width: 140px;
		margin-top: -70px;
	}

	.special-dish-item-content h3{
		font-size: 18px;
	}

	.special-dish-item-content p{
		margin: 5px 0 0;
	}

	.our-value-body{
		padding: 10px;
	}

	.our-value-skills-list{
		padding: 20px;
	}

	.skills-progress-bar{
		margin-bottom: 20px;
	}

	.skills-progress-bar .skill-data{
		margin-bottom: 10px;
	}

	.skills-progress-bar .skill-data .skill-title, 
	.skills-progress-bar .skill-data .skill-no{
		font-size: 16px;
	}

	.our-value-image-box{
		gap: 10px;
	}

	.our-value-image-box-1{
		width: calc(46% - 5px);
		gap: 10px;
	}

	.our-value-image-box-2{
		width: calc(54% - 5px);
	}

	.our-value-image-box-2 .get-in-touch-circle{
		left: -5px;
	}

	.get-in-touch-circle a img{
		max-width: 100px;
	}

	.page-category-list .page-category-list-title{
		font-size: 18px;
	}

	.sidebar-cta-title{
		margin-top: 15px;
	}

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

	.sidebar-cta-item-content h3{
		font-size: 18px;
	}

	.page-single-image img{
		aspect-ratio: 1 / 0.7;
	}

	.service-entry h2{
        font-size: 26px;
		margin-bottom: 10px;
    }

	.service-entry h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.service-why-choose-item{
		width: 100%;
		padding: 20px;
	}

	.service-why-choose-item .icon-box{
		margin-bottom: 15px;
	}

	.service-planning-item{
		gap: 15px;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.service-planning-item-content{
		width: 100%;
	}

	.service-action-video-box{
		min-height: 300px;
	}

	.service-action-video-box .video-play-button a span{
		width: 50px;
		height: 50px;
	}

	.service-action-video-box .video-play-button a span i{
		font-size: 20px;
	}

	.post-single-meta ol li,
	.post-single-meta ol li i{
		font-size: 16px;
	}

	.post-image img{
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote{
		padding: 65px 20px 20px 20px;
	}

	.post-entry blockquote p{
		font-size: 16px;
	}

	.post-entry h1,
	.post-entry h2,
	.post-entry h3,
	.post-entry h4,
	.post-entry h5,
	.post-entry h6{
		margin: 0 0 0.58em;
	}

	.post-entry h2{
		font-size: 26px;
	}
	
	.tag-links{
		font-size: 18px;
	}

	.chef-single-image figure img{
		aspect-ratio: 1 / 1.092;
	}

	.member-social-list{
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.chef-contact-item-list{
		gap: 20px;
	}

	.chef-contact-item{
		width: 100%;
	}

	.chef-contact-item-content h3{
		font-size: 18px;
	}

	.chef-specialization-item{
		padding-top: 20px;
	}

	.chef-approach-item{
		width: calc(50% - 10px);
	}

	.chef-approach-item-title{
		bottom: 15px;
	}

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

	.chef-member-skill-image,
	.chef-member-skill-list{
		width: 100%;
	}

	.chef-member-skill-image figure{
		height: auto;
	}

	.chef-member-skill-image figure img{
		height: auto;
		aspect-ratio: 1 / 0.6;
	}

	.chef-contact-form{
		padding: 20px;
	}

	.contact-us-box{
		padding: 20px;
	}

	.contact-us-item-list{
		gap: 20px;
	}

	.contact-us-item{
		width: 100%;
	}

	.contact-us-item::before{
		display: none;
	}

	.contact-us-item-content h2{
		font-size: 18px;
	}

	.contact-us-image figure img{
		aspect-ratio: 1 / 1.064;
	}

	.contact-form label{
		font-size: 16px;
	}

	.google-map-iframe{
		height: 350px;
	}
}