/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Spicyhunt - Restaurant HTML Template
* File          : Css File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us Css
06. Our Dishes Css
07. Our Daily Offer Css
08. Our Menu Css
09. Intro Video Css
10. Our Ingredients Css
11. Our Testimonial Css
12. Our Blog Css
13. Reserve Table Css
14. Footer Css
15. About Us Page Css
16. Services Page Css
17. Service Single Css
18. Menu Page css
19. Blog Archive Css
20. Blog Single Css
21. Page Chefs Css
22. Chef Single Css
23. Testimonials Page css 
24. Image Gallery css
25. Video Gallery css
26. FAQ Page css
27. Contact Us Page css
28. 404 Error Page css
29. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color		    : #FFFFFF;
	--secondary-color		: #1F2120;
	--text-color			: #AEB0B4;
	--accent-color			: #DF001F;
	--red-dark-color  :#C00025;
	--divider-color			: #FFFFFF1A;
	--dark-divider-color	: #0E110D;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Hanken Grotesk", serif;
}

.btn-primary{
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	font-weight: 700;
	border-radius: 30px;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active{
	background-color: var(--red-dark-color) !important;
	border-color: var(--red-dark-color) !important;
}
.btn-outline-secondary{
	border-radius: 30px;
}

/************************************/
/*** 	   02. General Css		  ***/
/************************************/

body{
	position: relative;
	font-family: var(--default-font);
	font-size: 18px;
	font-weight: 400;
	line-height: 1em;
	background-color: black;
	color: var(--text-color);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.1em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

::-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(--secondary-color);
	filter: invert(1);
} */

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default,
#global-deliciadivina button.btn-default,
#global-deliciadivina input.btn-default{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	background: var(--accent-color);
	color: var(--primary-color);
	border-radius: 30px;
	padding: 17px 58px 17px 30px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}
.btn-secondary{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: transparent;
	color: var(--primary-color);
	border-radius: 30px;
	padding: 17px 58px 17px 30px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.detalle-producto-main .detalle-producto-descripcion .single_add_to_cart_button:hover,
.btn-default:hover,
#global-deliciadivina button.btn-default:hover,
#global-deliciadivina input.btn-default:hover,
#iniciar-sesion button[type="submit"]:hover{
	background: transparent;
	color: var(--dark-divider-color);
}

.detalle-producto-main .detalle-producto-descripcion .single_add_to_cart_button::before,
.btn-default::before,
#global-deliciadivina button.btn-default::before,
#global-deliciadivina input.btn-default::before,
#iniciar-sesion button[type="submit"]::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.detalle-producto-main .detalle-producto-descripcion .single_add_to_cart_button:hover::before,
.btn-default:hover::before,
#global-deliciadivina button.btn-default:hover::before,
#global-deliciadivina input.btn-default:hover::before,
#iniciar-sesion button[type="submit"]:hover::before{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.detalle-producto-main .detalle-producto-descripcion .single_add_to_cart_button::after,
.btn-default::after,
#global-deliciadivina button.btn-default::after,
#global-deliciadivina input.btn-default::after,
#iniciar-sesion button[type="submit"]::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 14px;
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    transform: translate(-30px, -50%);
    transition: all 0.4s ease-in-out;
}

.detalle-producto-main .detalle-producto-descripcion .single_add_to_cart_button:hover:after,
.btn-default:hover:after,
#global-deliciadivina button.btn-default:hover::after,
#global-deliciadivina input.btn-default:hover::after,
#iniciar-sesion button[type="submit"]:hover::after{
	filter: brightness(0) invert(0);
	transform: translate(-28px, -50%);
}

.btn-default.btn-highlighted{
	background: var(--primary-color);
	color: var(--dark-divider-color);
}

.btn-default.btn-highlighted:hover{
	color: var(--primary-color);
}

.btn-default.btn-highlighted::before{
	background: var(--accent-color);
}

.btn-default.btn-highlighted:after{
	background-image: url('../images/arrow-dark.svg');
}

.btn-default.btn-highlighted:hover:after{
	filter: brightness(0) invert(1);
}

.readmore-btn{
    display: inline-block;
	background-image: url('../images/arrow-accent.svg');
    background-repeat: no-repeat;
    background-position: right 3px center;
    background-size: 18px auto;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 30px;
    border: none;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover{
	background-position: right center;
	color: var(--primary-color);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--accent-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,
.loading-addcart{
	border: 1px solid transparent;
	border-color: transparent var(--primary-color) transparent var(--primary-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}
.loading-addcart{
	cursor: wait;
	opacity: 0.8;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 90px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	text-align: center;
	max-width: 635px;
	margin: 0 auto;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 14px;
    font-weight: 700;
	line-height: 1.3em;
	letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
	padding-left: 16px;
    margin-bottom: 10px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 6px;
    height: 6px;
}

.section-title h1{
	font-size: 68px;
	font-weight: 800;
	line-height: 1.1em;
	text-transform: uppercase;
	margin-bottom: 0;
	
}

.section-title h2{
	font-size: 42px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 0;
	
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-title p{
	margin-top: 10px;
	margin-bottom: 0;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header Css		 ****/
/************************************/

header.main-header{
	position: absolute;
	top: 0;
	width: 100%;
	border-bottom: 1px solid var(--divider-color);
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--dark-divider-color);
	border-bottom: 1px solid var(--divider-color);
}

.navbar{
	padding: 30px 0;
	align-items: center;
	background-color: #00000029;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: end;
	margin: 0 20px;
	align-items: center;
	display: inline-flex;
	justify-items: end;
	justify-content: end;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu .navbar-nav li{
	position: relative;
	margin: 0;
}

.main-menu .navbar-nav li a{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3em;
	padding: 12px 20px !important;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.main-menu .navbar-nav li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu .navbar-nav li a:hover,
.main-menu .navbar-nav li a:focus{
	color: var(--accent-color);
}
/* 
.main-menu .navbar-nav ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 16px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
} */
/* 
.main-menu .navbar-nav li.submenu:first-child ul{
    width: 230px;
} */
/* 
.main-menu .navbar-nav ul ul{
	left: 100%;
	top: 0;
	text-align: left;
} */
/* .main-menu .navbar-nav li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu .navbar-nav li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu .navbar-nav ul li{
	margin: 0;
	padding: 0;
}

.main-menu .navbar-nav ul li a{
	opacity: 100%;
	color: var(--primary-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu .navbar-nav li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu .navbar-nav ul li a:hover,
.main-menu .navbar-nav ul li a:focus{
	color: var(--dark-divider-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu .navbar-nav li.highlighted-menu{
    display: none;
} */

.header-btn{
	text-align: end;
}

.responsive-menu,
.navbar-toggle,
.cart-header-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: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--primary-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: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--primary-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(--dark-divider-color);
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--primary-color);
	position: absolute;
	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(--dark-divider-color);
}

/************************************/
/***        04. Hero Css	      ***/
/************************************/

.hero{
	position: relative;
	background: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    padding: 120px 0 40px;
    overflow: hidden;
}

.hero::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(0,0,0);
	background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(18,25,23,1) 60%);
	opacity: 40%;
	height: 100%;
	width: 100%;
	z-index: 0;
}

.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{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
	background: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    padding: 214px 0 100px;
}

.hero.hero-slider-layout .hero-slide.slide-2{
	background: url('../images/hero-bg-2.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--dark-divider-color);
    opacity: 70%;
	height: 100%;
	width: 100%;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content{
    position: relative;
    z-index: 2;
}

.hero-content .section-title{
    margin-bottom: 60px;
}

.hero-btn{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 30px;
}

.hero-btn .download-app-btn{
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
	text-transform: capitalize;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.download-app-btn i{
    color: inherit;
    margin-left: 10px;
}

.hero-btn .download-app-btn:hover{
    color: var(--primary-color);
}

.hero-images{
    position: relative;
    padding: 0 42px 0 80px;
    margin-left: 54px;
    z-index: 1;
}

.hero-image,
.hero-image figure{
    display: block;
    border-radius: 999px;
	overflow: hidden;
}

.hero-image figure:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--secondary-color);
    opacity: 20%;
	border-radius: 999px;
    z-index: 0;
}

.hero-image img{
    width: 100%;
    aspect-ratio: 1 / 1.58;
    object-fit: cover;
    border-radius: 999px;
}

.hero-circle-img-1{
    position: absolute;
    top: 100px;
    right: 0;
	z-index: 1;
}

.hero-circle-img-2{
    position: absolute;
    bottom: 100px;
    left: 0;
	z-index: 1;
}

.hero-circle-img-1 figure,
.hero-circle-img-2 figure{
	width: 100%;
    max-width: 160px;
    border-radius: 50%;
}

.hero-circle-img-1 img,
.hero-circle-img-2 img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 8px solid var(--primary-color);
    border-radius: 50%;
}

/************************************/
/***       05. About Us Css       ***/
/************************************/

.about-us{
	position: relative;
	padding: 100px 0;
}

.about-us::before{
	content: '';
    display: block;
    position: absolute;
    right: -20px;
    top: 35%;
    background: url('../images/chili-image.png') no-repeat;
    background-position: right top;
    background-size: cover;
    width: 180px;
    height: 225px;
    animation: chilimove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

@keyframes chilimove{
    0%{
		transform: translateX(10px) rotate(0deg);
    }
	50%{
		transform: translateX(10px) rotate(20deg);
    }
    100%{
        transform: translateX(10px) rotate(-20deg);
    }
}

.about-us .container{
	position: relative;
	z-index: 1;
}

.about-us-image{
	position: relative;
	margin-right: 70px;
	padding: 0 100px 0 60px;
}

.about-us-img,
.about-us-img figure{
	display: block;
	border-radius: 999px;
	overflow: hidden;
}

.about-us-img figure:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--secondary-color);
	border-radius: 999px;
    opacity: 20%;
    z-index: 0;
}

.about-us-img img{
    width: 100%;
    aspect-ratio: 1 / 1.53;
    object-fit: cover;
    border-radius: 999px;
}

.about-author-img{
	position: absolute;
	bottom: 60px;
	left: 0;
	z-index: 1;
}

.company-experience{
	width: 165px;
	position: absolute;
	top: 120px;
	right: 0px;
	background: var(--accent-color);
	border-radius: 14px;
	padding: 20px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 1;
}

.company-experience::before{
	content: '';
    position: absolute;
    right: 0;
	left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
	z-index: 0;
    transition: all 0.4s ease-in-out;
}

.company-experience:hover::before{
    height: 100%;
}

.company-experience .icon-box{
	margin-bottom: 20px;
}

.company-experience .icon-box img{
	position: relative;
	width: 100%;
	max-width: 40px;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.company-experience:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.company-experience-content h3{
	position: relative;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.company-experience:hover .company-experience-content h3{
	color: var(--dark-divider-color);
}

.about-author-img figure{
    max-width: 140px;
    border-radius: 50%;
}

.about-author-img img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 8px solid var(--primary-color);
    border-radius: 50%;
}

.about-content-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.about-content-list ul li{
	position: relative;
	text-transform: capitalize;
	line-height: normal;
	padding-left: 30px;
	margin-bottom: 15px;
}

.about-content-list ul li:last-child{
	margin-bottom: 0;
}

.about-content-list ul li::before{
    content: '\f058';
    font-family: 'FontAwesome';
    font-weight: 400;
    font-size: 18px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.about-content-btn{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.about-detail-box{
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 40px;
	padding-top: 20px;
	padding-bottom:20px;
	border-top: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
	justify-content: space-between;
}

.about-detail-item{
	width: calc(33.33% - 20px);
	display: flex;
	align-items: center;
	gap:10px;
}

.about-detail-item .icon-box{
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	margin-right: 30px;
	transition: all 0.3s ease-in-out;
}

.about-detail-item:hover .icon-box{
	border-color: var(--primary-color);
}

.about-detail-item .icon-box img{
	width: 100%;
	max-width: 40px;
	transition: all 0.3s ease-in-out;
}

.about-detail-item:hover .icon-box img{
	transform: rotateY(180deg);
    filter: brightness(0) invert(1);
}

.about-detail-content{
}

.about-detail-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.about-detail-content p{
	margin: 0;
	font-size:14px;
	color:rgba(255, 255, 255, 0.9);
	font-weight: 400;
}

/************************************/
/***      06. Our Dishes Css      ***/
/************************************/

.our-dishes{
	position: relative;
	background: var(--secondary-color);
	padding: 100px 0;
}

.our-dishes::before{
	content: '';
    display: block;
    position: absolute;
    left: -20px;
    top: 80px;
    background: url('../images/burger-image.png') no-repeat;
    background-position: left top;
    background-size: cover;
	transform: rotate(15deg);
    width: 180px;
    height: 180px;
    animation: burgermove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

@keyframes burgermove{
    0%{
		transform: translateY(0) rotate(45deg);
    }
    100%{
        transform: translateY(100px) rotate(-45deg);
    }
}

.our-dishes{
	position: relative;
	z-index: 1;
}

.our-dish-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	text-align: center;
}

.our-dish-item .our-dish-img{
	margin-bottom: 30px;
}

.our-dish-img figure{
	max-width: 200px;
	border-radius: 50%;
	display: inline-block;
}

.our-dish-img img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.our-dish-item:hover .our-dish-img img{
	transform: scale(1.1);
}

.our-dish-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.our-dish-content p{
	margin: 0;
}

.section-footer-text{
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p{
	color: var(--primary-color);
	margin: 0;
}

.section-footer-text p a{
	color: var(--accent-color);
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--primary-color);
}

/************************************/
/***   07. Our Daily Offer Css    ***/
/************************************/

.daily-offer{
	position: relative;
	padding: 100px 0;
}

.daily-offer::before{
	content: '';
    display: block;
    position: absolute;
    right: -140px;
    bottom: 80px;
    background: url('../images/pizza-img.png') no-repeat;
    background-position: right top;
    background-size: cover;
    width: 378px;
    height: 378px;
    animation: pizzamove 8s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

@keyframes pizzamove{
    0%{
		transform: rotate(30deg);
    }
    100%{
        transform: rotate(-30deg) ;
    }
}

.daily-offer .container,
.hero .container{
	position: relative;
	z-index: 1;
}

.daily-offer-image{
	position: relative;
	margin-right: 30px;
}

.daily-offer-img img{
	width: 100%;
	aspect-ratio: 1 / 1.03;
	object-fit: contain;
}

.delicious-burger-box{
	width: 260px;
	position: absolute;
	left: 0;
	bottom: 60px;
	border-radius: 4px;
	overflow: hidden;
}
.delicious-burger-red{
	background: var(--red-dark-color);
	padding: 14px 20px 6px 20px;
}
.delicious-burger-white{
	background: white;
	padding:8px 20px;
}
.delicious-burger-white p{
	margin-bottom: 0px;
	font-size:16px;
	color:black;
	line-height: 20px;
}
.delicious-burger-white p b{
	font-weight: 800;
}
.delicious-burger-white a{
	text-decoration: underline;
	color:black;
	font-weight: 600;
}
.delicious-burger-white a:hover{
	opacity: 0.8;
}

.delicious-burger-title{
	margin-bottom: 5px;
}

.delicious-burger-title h3{
	position: relative;
	font-size: 24px;
	font-weight: 700;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.delicious-burger-title h3 span{
	font-size: 46px;
	font-weight: 900;
	margin-left: 8px;
}

.delicious-burger-rating{
	margin-bottom: 4px;
}

.delicious-burger-rating i{
	position: relative;
	color: #FFAE00;
	font-size: 19px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.delicious-burger-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.delicious-burger-list ul li{
	position: relative;
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: normal;
	color: var(--primary-color);
	padding-left: 25px;
	margin-bottom: 8px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.delicious-burger-list ul li:last-child{
	margin-bottom: 0;
}

.delicious-burger-list ul li::before{
    content: '\f058';
    font-family: 'FontAwesome';
    font-weight: 400;
    font-size: 14px;
    color: var(--primary-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
	transition: all 0.3s ease-in-out;
}

.daily-offer-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.daily-offer-list ul li{
	position: relative;
	text-transform: capitalize;
	line-height: normal;
	padding-left: 30px;
	margin-bottom: 15px;
}

.daily-offer-list ul li:last-child{
	margin-bottom: 0;
}

.daily-offer-list ul li::before{
    content: '\f058';
    font-family: 'FontAwesome';
    font-weight: 400;
    font-size: 18px;
    color: var(--accent-color);
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.daily-offer-btn{
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
	margin-top: 40px;
}

/************************************/
/***   		08. Our Menu Css      ***/
/************************************/

.our-menu{
	position: relative;
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.our-menu-tab-nav ul{
	position: relative;
	list-style: none;
    text-align: center;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
	background-color: transparent;
	border: none;
	overflow: hidden;
	flex-wrap: nowrap;
}

.our-menu-tab-nav ul:before{
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    opacity: 10%;
    z-index: 0;
}

.our-menu-tab-nav ul li{
	position: relative;
	text-align: left;
}

.our-menu-tab-nav ul li:last-child{
	padding-right: 0;
}

.our-menu-tab-nav ul li .nav-link{
	display: block;
	background-color: #C00025;
	border: none;
    color: var(--primary-color);
	font-size: 18px;
    font-weight: 500;
    line-height: 1.2em;
	padding: 20px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
	border-radius: 0px;
	text-align: left;
	min-width: 190px;
	position:relative;
	border-right: 1px solid #D9667C;
}

.our-menu-tab-nav ul li .nav-link:hover{
	background-color: var(--accent-color);
}

.our-menu-tab-nav ul li .nav-link::before{
	content:'';
	display:block;
	position: absolute;
	width: 100%;
	height: 100%;
	right: 14px;
	top:0;
	z-index: 0;
	background-image: url(../images/store-button-bg.svg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: right;
	opacity: 0.4;
}

.our-menu-tab-nav ul li .nav-link .select-store-button-icon i{
	font-size: 28px;
}
.our-menu-tab-nav ul li .nav-link .select-store-button-place{
	font-size: 24px;
	font-weight: 900;
	margin-top:20px;
	margin-bottom: 4px;
}
.our-menu-tab-nav ul li .nav-link .select-store-button-address{
	font-size: 13px;
	line-height: 16px;
}

.our-menu-tab-nav ul li .nav-link .select-store-button-icon i{
	color:white;
	opacity: 0.6;
}
.our-menu-tab-nav ul li .nav-link .select-store-button-icon i,
.our-menu-tab-nav ul li .nav-link .select-store-button-place,
.our-menu-tab-nav ul li .nav-link .select-store-button-address{
	color:white;
	opacity: 1;
	position:relative;
	z-index: 1;
}

.our-menu-tab-nav ul li .active .select-store-button-icon i{
	color:var(--text-color)
}
.our-menu-tab-nav ul li .active .select-store-button-place{
	color:var(--red-dark-color);
}
.our-menu-tab-nav ul li .active .select-store-button-address{
	color:var(--secondary-color);
	opacity: 0.8;
}

.our-menu-tab-nav ul li .nav-link.active{
	background-color: white;
}

.our-menu-list{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	z-index: 2;
}

.our-menu-item{
	width: calc(50% - 30px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.our-menu-image{
	margin-right: 30px;
}
.our-menu-image a{
	opacity: 0.8;
}
.our-menu-image a:hover{
	opacity: 1;
}

.our-menu-image figure{
	display: block;
	max-width: 190px;
	border-radius: 50%;
}

.our-menu-image img{
	width: 190px;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.menu-item-body{
	width: calc(100% - 240px);
}

.menu-item-title{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 10px;
}

.menu-item-title h3{
	width: 100%;
	max-width: fit-content;
	font-size: 20px;
}
.menu-item-title h3 a{
	color:white;
}

.menu-item-title hr{
	height: 1px;
	width: 50%;
	color: var(--primary-color);
}
.menu-item-title ins{
	text-decoration: none;
}
.menu-item-title .woocommerce-Price-amount{
	color: var(--primary-color);
	font-weight: 800;
	font-size: 18px;
	background: var(--accent-color);
	border-radius: 14px;
	padding: 5px 20px;
}

.menu-item-content p{
	margin: 0;
}

.our-menu .section-footer-text{
	margin-top: 60px;
}

/************************************/
/***	 09. Intro Video Css      ***/
/************************************/

.intro-video .container-fluid{
	padding: 0;
}

.intro-video-box{
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 340px 0;
}

.intro-video-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
    background: linear-gradient(270deg, rgba(25, 35, 36, 0) 0%, rgba(31, 33, 32, 0.6) 80.94%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.intro-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.intro-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-play-button{
	position: relative;
	z-index: 1;
}

.video-play-button a{
	position: relative;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin: 0 auto;	
	display: flex;
	align-items: center;
	justify-content: center;
	
	transition: all 0.4s ease-in-out;
}

.video-play-button a:hover{
	color: var(--accent-color);
	border-color: var(--accent-color);
}

/************************************/
/***   10. Our Ingredients Css    ***/
/************************************/

.our-ingredients{
	position: relative;
	padding: 100px 0;
}

.our-ingredients::before{
    content: '';
    display: block;
    position: absolute;
    left: -40px;
    top: 80px;
    background: url(../images/chili-image-2.png) no-repeat;
    background-position: left top;
    background-size: cover;
    width: 180px;
    height: 225px;
    animation: chilimove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.our-ingredients::after{
    content: '';
    display: block;
    position: absolute;
    right: -20px;
    bottom: 25%;
    background: url(../images/burger-image.png) no-repeat;
    background-position: right top;
    background-size: cover;
    transform: rotate(15deg);
    width: 180px;
    height: 180px;
    animation: burgermove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.our-ingredients .container{
	position: relative;
	z-index: 1;
}

.our-ingredients-image{
	position: relative;
	margin-right: 30px;
}

.our-ingredients-img figure{
	display: block;
}

.our-ingredients-img figure::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(14, 17, 13, 0) 79.74%, #0E110D 91.9%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.our-ingredients-img img{
	width: 100%;
	aspect-ratio: 1 / 1.044;
    object-fit: contain;
}

.happy-customer-box{
	position: absolute;
	width: 230px;
	bottom: 80px;
	left: 0;
	background: var(--accent-color);
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px #0000001A;
	text-align: center;
	padding: 30px;
	overflow: hidden;
	z-index: 1;
}

.happy-customer-box::before{
	content: '';
    position: absolute;
    right: 0;
	left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
	border-radius: 14px;
	z-index: 0;
    transition: all 0.3s ease-in-out;
}

.happy-customer-box:hover::before{
	height: 100%;
}

.happy-customer-content{
	position: relative;
	margin-bottom: 20px;
	z-index: 1;
}

.happy-customer-content h3{
	font-size: 22px;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

.happy-customer-content p{
	color: var(--primary-color);
	text-transform: capitalize;
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.happy-customer-box:hover .happy-customer-content h3,
.happy-customer-box:hover .happy-customer-content p{
	color: var(--dark-divider-color);
}

.happy-customer-images{
	display: flex;
	align-items: center;
	justify-content: center;
}

.customer-image{
	position: relative;
	display: inline-block;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
    margin-left: -16px;
	width: 40px;
	height: 40px;
	z-index: 1;
}

.customer-image:first-child{
    margin: 0;
}

.customer-image figure{
    display: block;
}

.customer-image img{
    width: 100%;
    border-radius: 50%;
}

.customer-image.add-more{
	width: 40px;
	height: 40px;
	background-color: var(--secondary-color);
	text-align: center;
	display: inline-flex;
    align-items: center;
    justify-content: center;
	transition: all 0.3s ease-in-out;
}

.customer-image.add-more:hover{
	background-color: var(--accent-color);
}

.customer-image.add-more i{
	color: var(--accent-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.customer-image.add-more:hover i{
	color: var(--dark-divider-color);
}

.our-ingredients-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.ingredients-list-item{
	position: relative;
	width: calc(33.33% - 20px);
	text-align: center;
}

.ingredients-list-item::before{
	content: '';
	position: absolute;
	top: 50%;
	right: -15px;
	bottom: 0;
	left: auto;
	transform: translateY(-50%);
	background: var(--accent-color);
	opacity: 14%;
	width: 1px;
	height: 50px;
}

.ingredients-list-item:nth-child(n + 3)::before,
.ingredients-list-item:last-child::before{
	display: none;
}

.ingredients-list-item .icon-box{
	text-align: center;
	margin-bottom: 15px;
}

.ingredients-list-item .icon-box img{
	width: 100%;
	max-width: 40px;
}

.ingredients-list-content h3{
	font-size: 22px;
	text-transform: capitalize;
}

.our-ingredients-btn{
	margin-top: 40px;
}

.ingredient-counter-list{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	border-top: 1px solid var(--divider-color);
	padding-top: 60px;
}

.ingredient-counter-item{
	display: flex;
	align-items: center;
	width: calc(25% - 22.5px);
}

.ingredient-counter-item .icon-box{
	position: relative;
	height: 60px;
	width: 60px;
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.ingredient-counter-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
	border-radius: 50%;
	transform: scale(0);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.ingredient-counter-item:hover .icon-box::before{
	transform: scale(1);	
}

.ingredient-counter-item .icon-box img{
	position: relative;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.ingredient-counter-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.ingredient-counter-content{
	width: calc(100% - 80px);
}

.ingredient-counter-content h2{
	font-size: 42px;
	margin-bottom: 5px;
}

.ingredient-counter-content p{
	text-transform: capitalize;
	margin-bottom: 0;
}

/************************************/
/***	11. Our Testimonial Css   ***/
/************************************/

.our-testimonial{
	position: relative;
	background: url('../images/testimonials-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    padding: 100px 0;
    overflow: hidden;
}

.our-testimonial:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-divider-color);
    opacity: 70%;
}

.testimonial-slider{
	position: relative;
}

.testimonial-slider .swiper{
    position: static;
    margin: 0 151px;
}

.testimonial-slider .swiper-wrapper{
	
}

.testimonial-item{
	text-align: center;
}

.testimonial-quote{
	text-align: center;
	margin-bottom: 30px;
}

.testimonial-quote img{
	max-width: 50px;
}

.testimonial-content{
	margin-bottom: 40px;
}

.testimonial-content p{
	font-size: 28px;
	line-height: 1.5em;
	margin: 0;
}

.author-image{
	margin-bottom: 20px;
}

.author-image figure,
.author-image img{
	border-radius: 50%;
	max-width: 80px;
	margin: 0 auto;
}

.author-content h3{
	color: var(--accent-color);
	font-size: 20px;
	text-transform: capitalize;
}

.testimonial-btn-prev,
.testimonial-btn-next{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	background-color: transparent;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.testimonial-btn-prev{
	left: 0;
}

.testimonial-btn-next{
	right: 0;
}

.testimonial-btn-prev:hover,
.testimonial-btn-next:hover{
	background-color: var(--accent-color);
}

.testimonial-btn-prev::before,
.testimonial-btn-next::before{
	font-family: 'FontAwesome';
	content: '\f053';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	font-size: 20px;
	color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-btn .testimonial-btn-next::before{
	transform: rotate(180deg);
}

.testimonial-btn-prev:hover::before,
.testimonial-btn-next:hover::before{
	color: var(--primary-color);
}

/************************************/
/***		12. Our Blog Css	  ***/
/************************************/

.our-blog{
	position: relative;
	padding: 100px 0 70px;
}

.our-blog::before{
    content: '';
    display: block;
    position: absolute;
    left: -140px;
    bottom: 80px;
    background: url(../images/pizza-img.png) no-repeat;
    background-position: left top;
    background-size: cover;
    width: 300px;
    height: 300px;
    animation: pizzamove 8s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.our-blog::after{
    content: '';
    display: block;
    position: absolute;
    right: -20px;
    top: 100px;
    background: url(../images/chili-image.png) no-repeat;
    background-position: right top;
    background-size: cover;
    width: 180px;
    height: 225px;
    animation: chilimove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.our-blog .container{
	position: relative;
	z-index: 1;
}

.post-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image{
	margin-bottom: 20px;
}

.post-featured-image a{
	display: block;
	
}

.post-featured-image figure{
	border-radius: 30px;
	overflow: hidden;
}

.post-featured-image img{
	width: 100%;
	aspect-ratio: 1 / 0.7687;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-content{
	margin-bottom: 20px;
}

.post-item-content h3{
	font-size: 22px;
	line-height: 1.4em;
}

.post-item-content h3 a{
	color: inherit;
}

/************************************/
/***	 13. Reserve Table Css    ***/
/************************************/

.reserve-table{
	background: linear-gradient(180deg, var(--secondary-color) 70%, var(--dark-divider-color) 16%);
	padding: 100px 0 100px;
}

.reserve-table-body h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.reserve-table-body ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.reserve-table-body ul li{
    position: relative;
	width: 100%;
    text-transform: capitalize;
	display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.reserve-table-body ul li:last-child{
    margin-bottom: 0;
}

.reserve-table-body ul li span{
	width: 85%;
    font-size: 16px;
    font-weight: 400;
    text-transform: initial;
    color: var(--text-color);
}

.reserve-table-form{
	background: var(--primary-color);
	border-radius: 14px;
	padding: 60px 40px;
}

.reserve-table-form .form-label{
	color: var(--secondary-color);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.reserve-table-form .form-control{
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	border: 1px solid var(--text-color);
	background-position: right 6px center;
	border-radius: 10px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.reserve-table-form .form-control::placeholder{
	color: var(--text-color);
}

.reserve-table-form .form-control.form-select option{
	color: var(--dark-divider-color);
}

.reserve-table-btn{
	margin-top: 25px;
}

.reserve-table-btn .btn-default{
	width: 100%;
	padding: 17px 30px;
}

.reserve-table-btn .btn-default:hover{
	color: var(--primary-color);
}

.reserve-table-btn .btn-default::before{
	background: var(--secondary-color);
}

.reserve-table-btn .btn-default::after{
	display: none;
}

/************************************/
/***		14. Footer Css  	  ***/
/************************************/

.footer-logo{
	margin-bottom: 20px;
}

.footer-logo img{
	max-width: 197px;
}

.footer-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.footer-contact-item:last-child{
	margin-bottom: 0;
}

.footer-contact-item .icon-box{
	margin-right: 10px;
}

.footer-contact-item .icon-box img{
	width: 100%;
	max-width: 24px;
}

.footer-contact-content p{
	margin: 0;
}

.footer-contact-content p a{
	color: inherit;
}

.footer-copyright{
	padding: 40px 0 40px;
}

.footer-social-icon ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-icon ul li{
	display: inline-block;
	border-radius: 50%;
	margin-right: 15px;
}

.footer-social-icon ul li:last-child{
	margin-right: 0;
}

.footer-social-icon ul li a{
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-icon ul li:hover a{
	background: var(--accent-color);
}

.footer-social-icon ul li a i{
	color: var(--primary-color);
	font-size: 20px;
	transition: all 0.3s ease-in-out;
}

.footer-social-icon ul li:hover a i{
	color: var(--dark-divider-color);
}

.footer-copyright-text{
	text-align: right;
}

.footer-copyright-text p{
	margin: 0;
	font-size: 14px;
}

/************************************/
/***	 15. About Us Page Css    ***/
/************************************/

.page-header{
    position: relative;
	background: url('../images/page-header-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 270px 0 155px;
}

.page-header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-divider-color);
    opacity: 80%;
}

.page-header-box{
    position: relative;
	text-align: center;
    z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	font-size: 68px;
    font-weight: 800;
	line-height: 1.1em;
	text-transform: uppercase;
	color: var(--primary-color);
	margin-bottom: 10px;
	
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 18px;
	text-transform: capitalize;
	color: var(--text-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--text-color);
}

.our-approach{
	position: relative;
	background: var(--secondary-color);
	padding: 100px 0;
}

.our-approach::before{
    content: '';
    display: block;
    position: absolute;
    left: -20px;
    top: 80px;
    background: url(../images/burger-image.png) no-repeat;
    background-position: left top;
    background-size: cover;
    transform: rotate(15deg);
    width: 180px;
    height: 180px;
    animation: burgermove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.our-approch-tab-nav{
	text-align: center;
	margin-bottom: 80px;
}

.our-approch-tab-nav ul{
	position: relative;
	list-style: none;
    text-align: center;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px 60px;
    padding: 20px 40px;
    margin: 0;
	background-color: transparent;
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	border: none;
	border-radius: 100px;
	overflow: hidden;
}

.our-approch-tab-nav ul:before{
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    opacity: 10%;
    border-radius: 30px;
    z-index: 0;
}

.our-approch-tab-nav ul li{
	position: relative;
	text-align: center;
}

.our-approch-tab-nav ul li:last-child{
	padding-right: 0;
}

.our-approch-tab-nav ul li .nav-link{
	display: block;
	width: 100%;
    background-color: transparent;
	border: none;
    color: var(--primary-color);
	font-size: 18px;
    font-weight: 500;
    line-height: 1.2em;
	padding: 0;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.our-approch-tab-nav ul li .nav-link::before{
    content: '';
    position: absolute;
    top: 50%;
    right: -34px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translateY(-50%);
    height: 8px;
    width: 8px;
}

.our-approch-tab-nav ul li:last-child .nav-link::before{
    display: none;
}

.our-approch-tab-nav ul li .nav-link.active,
.our-approch-tab-nav ul li .nav-link:hover{
	background-color: transparent;
    color: var(--accent-color);
}

.approch-tab-content .section-title{
	margin-bottom: 20px;
}

.approch-tab-content-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.approch-tab-content-list ul li{
	position: relative;
	text-transform: capitalize;
	line-height: normal;
	padding-left: 30px;
	margin-bottom: 15px;
}

.approch-tab-content-list ul li:last-child{
	margin-bottom: 0;
}

.approch-tab-content-list ul li::before{
    content: '\f058';
    font-family: 'FontAwesome';
    font-weight: 400;
    font-size: 18px;
    color: var(--accent-color);
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.approch-tab-image figure{
	display: block;
	border-radius: 30px;
}

.approch-tab-image img{
	width: 100%;
    aspect-ratio: 1 / 0.75;
	object-fit: cover;
}

.our-team{
	position: relative;
	padding: 100px 0;
}

.our-team::before{
    content: '';
    display: block;
    position: absolute;
    left: -40px;
    top: 80px;
    background: url(../images/chili-image-2.png) no-repeat;
    background-position: left top;
    background-size: cover;
    width: 180px;
    height: 225px;
    animation: chilimove 6s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.team-item{
    position: relative;
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-image a{
    position: relative;
    display: block;
	
}

.team-image figure{
	display: block;
	border-radius: 28px;
}

.team-image figure::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
	width: 100%;
	height: 50%;
    z-index: 1;
}

.team-image img{
    width: 100%;
    aspect-ratio: 1 / 1.356;
    object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out; 
}

.team-item:hover .team-image img{
	transform: scale(1.1);
}

.team-body{
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    transform: translateY(40px);
    text-align: center;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-item:hover .team-body{
    transform: translateY(0);
}

.team-content h3{
    font-size: 20px;
	font-weight: 700;
    text-transform: capitalize;
	color: var(--primary-color);
    margin-bottom: 5px;
}

.team-content h3 a{
    color: inherit;
}

.team-content p{
    text-transform: capitalize;
    margin-bottom: 0;
}

.team-social-list{
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.team-item:hover .team-social-list{
    margin-top: 15px;
    opacity: 1;
    visibility: visible;
}

.team-social-list ul{
	display: flex;
	justify-content: center;
	gap: 15px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social-list ul li a{
	width: 40px;
	height: 40px;
	color: var(--primary-color);
	background: transparent;
	border-radius: 50%;
	border: 1px solid var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-list ul li:hover a{
	border-color: var(--accent-color);
	color: var(--dark-divider-color);
	background: var(--accent-color);
}

.team-social-list ul li a i{
    font-size: 18px;
    color: inherit;
}

.our-faqs{
	position: relative;
	padding: 100px 0;
}

.our-faqs::before{
    content: '';
    display: block;
    position: absolute;
    left: -40px;
    top: 40%;
    background: url(../images/chili-image-2.png) no-repeat;
    background-position: left top;
    background-size: cover;
    width: 180px;
    height: 225px;
    animation: chilimove 6s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.our-faqs::after{
    content: '';
    display: block;
    position: absolute;
    right: -20px;
    top: 15%;
    background: url(../images/burger-image.png) no-repeat;
    background-position: right top;
    background-size: cover;
    transform: rotate(15deg);
    width: 180px;
    height: 180px;
    animation: burgermove 6s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.our-faqs-content{
	position: sticky;
	top: 20px;
	margin-right: 40px;
}

.faq-accordion .accordion-item{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq-accordion .accordion-item:last-child{
    margin-bottom: 0;
	padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button{
    font-size: 22px;
	font-weight: 700;
    line-height: 1.4em;
    color: var(--primary-color);
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed){
    margin-bottom: 10px;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    content: '\f063';
    font-family: 'FontAwesome';
    font-size: 14px;
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 2px;
    height: 24px;
    width: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
	color: var(--accent-color);
	border-color: var(--accent-color);
    transform: rotate(180deg);
}

.faq-accordion .accordion-item .accordion-body{
	padding-right: 30px;
}

.accordion-item .accordion-body p{
    margin-bottom: 15px;
}

.accordion-item .accordion-body p:last-child{
    margin-bottom: 0;
}

/************************************/
/***	 16. Services Page Css    ***/
/************************************/

.page-services{
	position: relative;
	padding: 100px 0 70px;
}

.page-services::before{
	content: '';
    display: block;
    position: absolute;
    left: -20px;
    top: 80px;
    background: url(../images/burger-image.png) no-repeat;
    background-position: left top;
    background-size: cover;
    transform: rotate(15deg);
    width: 180px;
    height: 180px;
    animation: burgermove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-services .container{
	position: relative;
	z-index: 1;
}

.service-item{
	background: var(--dark-divider-color);
    border: 1px solid var(--divider-color);
    border-radius: 14px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
    padding: 40px;
	transition: all 0.3s ease-in-out;
}

.service-item:hover{
	transform: translateY(-3px);
}

.service-item .icon-box{
	margin-bottom: 30px;
}

.service-item .icon-box img{
	max-width: 40px;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box img{
	filter: brightness(0) invert(1);
	transform: rotateY(180deg);
}

.service-item-content{
	margin-bottom: 20px;
}

.service-item-content h3{
	font-size: 22px;
	margin-bottom: 10px;
}

.service-item-content p{
	margin: 0;
}

/************************************/
/***	17. Service Single Css    ***/
/************************************/

.page-service-single{
	position: relative;
	padding: 100px 0;
}

.page-service-single::before{
	content: '';
    display: block;
    position: absolute;
    left: -140px;
    top: 80px;
    background: url(../images/pizza-img.png) no-repeat;
    background-position: left top;
    background-size: cover;
    width: 300px;
    height: 300px;
    animation: pizzamove 8s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-service-single::after{
	content: '';
    display: block;
    position: absolute;
    right: -20px;
    bottom: 150px;
    background: url(../images/chili-image.png) no-repeat;
    background-position: right top;
    background-size: cover;
    width: 180px;
    height: 225px;
    animation: chilimove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-service-single .container{
	position: relative;
	z-index: 1;
}

.service-sidebar{
    position: sticky;
    top: 30px;
	margin-right: 30px;
}

.service-catagery-list{
	background-color: var(--secondary-color);
	border: 1px solid var(--divider-color);
    border-radius: 14px;
    margin-bottom: 40px;
}

.service-catagery-list h3{
    font-size: 22px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
    padding: 30px 30px 20px;
}

.service-catagery-list ul{
    list-style: none;
    margin: 0;
    padding: 20px 30px 30px;
}

.service-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-catagery-list ul li a{
    position: relative;
    display: block;
    text-transform: capitalize;
    color: var(--text-color);
	padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a{
    color: var(--accent-color);
}

.service-catagery-list ul li a::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/arrow-accent.svg) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 18px;
    height: 16px;
	transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li a:hover::before{
    transform: rotate(0);
}

.sidebar-cta-box{
    padding: 30px;
	background: var(--accent-color);
    border-radius: 14px;
    text-align: center;
}

.sidebar-cta-box .icon-box{
    margin-bottom: 40px;
}

.sidebar-cta-box .icon-box img{
    max-width: 60px;
}

.cta-contact-content{
    margin-bottom: 20px;
}

.cta-contact-content h3{
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-contact-content p{
	color: var(--primary-color);
    margin-bottom: 0;
}

.cta-contact-btn{
    position: relative;
}

.cta-contact-btn a{
    line-height: 1.5em;
    padding: 13px 30px;
    display: inline-flex;
    align-items: center;
}

.cta-contact-btn .btn-default.btn-highlighted::before{
    background: var(--dark-divider-color);
}

.cta-contact-btn a.btn-default::after{
	display: none;
}

.cta-contact-btn a img{
    margin-right: 10px;
    max-width: 18px;
    transition: all 0.4S ease-in-out;
}

.cta-contact-btn a:hover img{
    filter: brightness(1) invert(1);
}

.service-featured-image{
	margin-bottom: 20px;
}

.service-featured-image figure{
	display: block;
	border-radius: 30px;
}

.service-featured-image img{
	width: 100%;
	aspect-ratio: 1 / 0.55;
	object-fit: cover;
	border-radius: 30px;
}

.service-entry{
	margin-bottom: 50px;
}

.service-entry p{
	margin-bottom: 20px;
}

.service-entryp:last-child{
	margin-bottom: 0;
}

.service-entry h2{
	font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-entry h2 span{
	color: var(--accent-color);
}

.service-key-features{
	margin-top: 50px;
}

.service-entry-list-image{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: center;
}

.service-entry-list{
	width: calc(62% - 15px);
}

.service-entry-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-entry-list ul li{
	position: relative;
	text-transform: capitalize;
	line-height: normal;
	padding-left: 30px;
	margin-bottom: 20px;
}

.service-entry-list ul li:last-child{
	margin-bottom: 0;
}

.service-entry-list ul li::before{
    content: '\f058';
    font-family: 'FontAwesome';
    font-weight: 400;
    font-size: 18px;
    color: var(--accent-color);
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.service-entry-image{
	width: calc(38% - 15px);
}

.service-entry-image figure{
	display: block;
	border-radius: 14px;
	overflow: hidden;
}

.service-entry-image img{
	width: 100%;
	aspect-ratio: 1 / 0.522;
	object-fit: cover;
	border-radius: 14px;
}

/************************************/
/*** 	  18. Menu Page css	      ***/
/************************************/

.page-menu{
	padding: 100px 0;
}

.special-menu-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 50px;
}

.special-menu-item{
	width: calc(16.66% - 41.66px);
	text-align: center;
}

.special-menu-item .special-menu-img{
	margin-bottom: 30px;
}

.special-menu-img a{
	display: block;
	
}

.special-menu-img figure{
	max-width: 150px;
	border-radius: 50%;
	display: inline-block;
	overflow: hidden;
}

.special-menu-img img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.special-menu-item:hover .special-menu-img img{
	transform: scale(1.1);
}

.special-menu-item-content h3{
	color: var(--primary-color);
	font-size: 22px;
	text-transform: capitalize;
}

.special-menu-item-content h3 a{
	display: inline-block;
	color: inherit;
}

.our-food-menu .food-menu-item{
	padding: 100px 0;
}

.our-food-menu .food-menu-item:nth-child(odd){
	background: var(--secondary-color);
}

.food-menu-item .food-menu-sidebar{
	position: sticky;
	top: 20px;
}

.food-menu-sidebar .section-title{
	margin-bottom: 0;
}

.food-menu-item .our-menu-list{
	gap: 60px 30px;
}

.food-menu-item .our-menu-item{
	width: calc(50% - 15px);
}

.food-menu-item .our-menu-image{
    margin-right: 15px;
}

.food-menu-item .menu-item-body{
    width: calc(100% - 115px);
}

.food-menu-item .our-menu-item .menu-item-title hr{
    width: 17%;
}

/************************************/
/***	 19. Blog Archive Css     ***/
/************************************/

.page-blog{
	padding: 100px 0;
}

.page-pagination{
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
}


/************************************/
/***	 20.  Blog Single Css     ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--primary-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--accent-color);
    margin-right: 5px;
}

.post-image{
	width: 100%;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	overflow: hidden;
	border-radius: 30px;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 30px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 700;
	line-height: 1.2em;
    text-transform: uppercase;
	margin: 0 0 0.477em;
}

.post-entry h1{
	font-size: 68px;
}

.post-entry h2{
	font-size: 42px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--dark-divider-color);
	font-size: 20px;
	font-weight: 600; 
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
	line-height: 1.6em;
    color: var(--text-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url('../images/icon-blockquote.svg'), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
    background-size: 50px;
	border-radius: 14px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6em;
	color: var(--primary-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-size: 20px;
	font-weight: 700;
    text-transform: uppercase;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
	background: var(--accent-color);
    color: var(--primary-color);
	border-radius: 30px;
    padding: 10px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
	color: var(--dark-divider-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--accent-color);
	border: 1px solid var(--divider-color);
	border-radius: 50%;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***	  21. Page Chefs Css   	  ***/
/************************************/

.page-team{
	position: relative;
	padding: 100px 0 70px;
}

.page-team::before{
	content: '';
    display: block;
    position: absolute;
    left: -140px;
    top: 150px;
    background: url(../images/pizza-img.png) no-repeat;
    background-position: left top;
    background-size: cover;
    width: 300px;
    height: 300px;
    animation: pizzamove 8s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-team .container{
	position: relative;
	z-index: 1;
}

/************************************/
/***     22. Chef Single Css      ***/
/************************************/

.page-team-single{
	position: relative;
    padding: 100px 0;
}

.page-team-single::before{
	content: '';
    display: block;
    position: absolute;
    right: -140px;
    top: 80px;
    background: url(../images/pizza-img.png) no-repeat;
    background-position: right top;
    background-size: cover;
    width: 300px;
    height: 300px;
    animation: pizzamove 8s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-team-single::after{
	content: '';
    display: block;
    position: absolute;
    left: -40px;
    bottom: 170px;
    background: url(../images/chili-image-2.png) no-repeat;
    background-position: left top;
    background-size: cover;
    width: 180px;
    height: 225px;
    animation: chilimove 6s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-team-single .container{
	position: relative;
	z-index: 1;
}

.team-single-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 25px;
}

.team-single-image{
	margin-bottom: 40px;
}

.team-single-image figure{
	display: block;
	border-radius: 30px;
    overflow: hidden;
}

.team-single-image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.14;
    overflow: hidden;
}

.team-member-info{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
    margin-bottom: 40px;
}

.team-info-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-info-list ul li{
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.team-info-list ul li:last-child{
    margin-bottom: 0;
}

.team-info-list ul li span{
    width: 72%;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    color: var(--primary-color);
}

.member-involvement-list ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.member-involvement-list ul li{
    position: relative;
    padding-left: 25px;
	margin-bottom: 15px;
}

.member-involvement-list ul li:last-child{
	margin-bottom: 0;
}

/************************************/
/***     23. Testimonials css	  ***/
/************************************/

.page-testimonials{
	position: relative;
	padding: 100px 0 70px;
}

.page-testimonials::before{
    content: '';
    display: block;
    position: absolute;
    right: -140px;
    top: 30%;
    background: url(../images/pizza-img.png) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 378px;
    height: 378px;
    animation: pizzamove 8s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}

.page-testimonials .container{
	position: relative;
	z-index: 1;
}

.testimonial-box-item{
	background-color: var(--dark-divider-color);
	border: 1px solid var(--divider-color);
	border-radius: 14px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.testimonial-rating{
	text-align: center;
	margin-bottom: 20px;
}

.testimonial-rating i{
	color: var(--accent-color);
	font-size: 16px;
}

.testimonial-box-content{
	text-align: center;
	margin-bottom: 30px;
}

.testimonial-box-content p{
	margin: 0;
}

.client-author-image{
	text-align: center;
	margin-bottom: 15px;
}

.client-author-image figure{
	display: inline-block;
	width: 100%;
	max-width: 80px;
	border-radius: 50%;
}

.client-author-image img{
	width: 100%;
}

.client-author-content{
	text-align: center;
}

.client-author-content h3{
	color: var(--primary-color);
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.client-author-content p{
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***   	24. Image Gallery css	  ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 30px;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.82;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/***   	25. Video Gallery css	  ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-divider-color);
	border-radius: 30px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 40%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--primary-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	aspect-ratio: 1 / 0.82;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/***    	26. FAQ Page css	  ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.faq-catagery-list{
	border: 1px solid var(--divider-color);
	border-radius: 14px;
    margin-bottom: 40px;
	padding: 30px;
}

.faq-catagery-list ul{
    list-style: none;
    margin: 0;
	padding: 0;
}

.faq-catagery-list ul li{
    margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--divider-color);
}

.faq-catagery-list ul li:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.faq-catagery-list ul li a{
    position: relative;
    display: block;
    color: var(--text-color);
    text-transform: capitalize;
	padding-right: 20px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a{
    color: var(--primary-color);
}

.faq-catagery-list ul li a::before{
	content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--text-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    right: 0;
    transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a::before{
	transform: translateY(-50%) rotate(0deg);
	color: var(--primary-color);
}

.page-faq-accordion{
	margin-bottom: 60px;
}

.page-faq-accordion:last-child{
	margin-bottom: 0px;
}

/************************************/
/***   	27. Contact Us Page css   ***/
/************************************/

.page-contact-us{
	padding: 100px 0;
}

.contact-us-content{
	margin-right: 45px;
}

.contact-info-list{
	margin-bottom: 30px;
}

.contact-info-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-info-list ul li{
	margin-bottom: 20px;
}

.contact-info-list ul li a{
	color: inherit;
}

.contact-info-list ul li:last-child{
	margin-bottom: 0;
}

.contact-social-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-social-list ul li{
	display: inline-block;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.contact-social-list ul li:last-child{
	margin-right: 0;
}

.contact-social-list ul li a{
	border: 1px solid var(--divider-color);
	color: var(--primary-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.contact-social-list ul li a:hover{
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--dark-divider-color);
}

.contact-social-list ul li a i{
	font-size: 20px;
	color: inherit;
}

.contact-form{
	background: var(--secondary-color);
	border-radius: 14px;
	padding: 60px 40px;
}

.contact-form .form-label{
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	color: var(--primary-color);
	background: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 8px;
	padding: 15px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--primary-color);
}

.contact-form .btn-default{
	padding: 17px 30px;
	width: 100%;
}

.contact-form .btn-default:after{
	display: none;
}

.google-map .container-fluid{
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
    height: 600px;
    width: 100%;
}

/************************************/
/***    28. 404 Error Page css    ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 40px;
}

.error-page-image img{
	width: 100%;
	max-width: 50%;
}

 .error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 10px;
}

.error-page-content-body p{
	color: var(--primary-color);
	margin-bottom: 20px;
}


/************************************/
/***    28.1 HOME  css    ***/
/************************************/
.select-store{
	background-color:#92001C;
}
.select-your-store{
	display:flex;
	justify-items: center;
	align-items: center;
	justify-content:space-between;
}
.store-head{
	display:flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 60px;
	margin-bottom:100px;
}
.store-head h2{
	font-size:40px;
	font-weight: 800;
}
.store-head-options{
	display:flex;
	font-size:18px;
	font-weight: 400;
	color:white;
	align-items: center;
	gap:28px;
}
.store-head-options a{
	color:white;
	display:inline-flex;
	gap: 8px;
	align-items: center;
	opacity: 0.7;
}
.store-head-options a:hover,
.store-head-options button:hover{
	opacity: 1;
}
.store-head-options i{
	font-size:24px;
}
.store-head-options button{
	background-color: transparent;
	font-size: 18px;
	color:white;
	border:0px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	opacity: 0.7;
}
.store-featured-product{
	background-color: #ececec;
	position: relative;
	border-radius: 8px;
	margin-bottom: 80px;
}
.store-featured-description{
	position: relative;
}
.store-featured-description::after{
	content:'';
	display:block;
	position: absolute;
	width: 100%;
	height:100%;
	right: 30px;
	top:0;
	z-index: 0;
	background-image: url(../images/store-button-bg.svg);
	background-repeat: no-repeat;
	background-size: 240px;
	background-position: left;
	opacity: 0.4;
	-moz-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	transform: scaleX(-1);
	-ms-filter: fliph; /*IE*/
	filter: fliph; /*IE*/
}
.store-featured-description h2{
	font-size: 34px;
	color:black;
	font-weight: 800;;
}
.store-featured-image{
	position:relative;
	display: flex;
}
.store-featured-image .vertical-bar{
	width:50px;
	position:relative;
	height: 100%;
	display:flex;
	align-items: end;
	background-color: var(--red-dark-color);
	border-radius: 8px 0px 0px 8px;
}
.store-featured-image .vertical-bar span{
	transform: rotate(180deg);
	writing-mode: vertical-lr;
	color:white;
	font-size:14px;
	font-weight: 800;
	letter-spacing: 3px;
	padding:16px;
}
.store-featured-image .vertical-bar span i{
	color:#FFAE00;
	margin-bottom: 10px;
}
.store-feature-imagen-container{
	position: relative;
	top: -40px;
	bottom: -40px;
	height: calc(100% + 80px);
	border-radius: 8px;
	overflow: hidden;
	background-position: center center;
	background-size: cover;
	width: 100%;
	min-height: 400px;
}
.store-featured-description h3{
	font-size:34px;
	color:black;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap:8px;
	margin-bottom: 20px;
}
.store-featured-description h3 span del,
.store-featured-description h3 span .screen-reader-text{
	display:none;
}
.store-featured-description h3 span .woocommerce-Price-amount{
	color: var(--primary-color);
	font-weight: 800;
	font-size: 18px;
	background: var(--red-dark-color);
	border-radius: 14px;
	padding: 0px 14px;
	display: inline-block;
	line-height: 30px;
	margin-bottom: 10px;
}
.store-featured-description-inner{
	position: relative;
	z-index: 2;
	padding-bottom: 20px;
	padding-top:20px;
	padding-right: 30px;
}
.store-featured-description p{
	font-size: 14px;
	color:#1F2120;
	line-height: 22px;
}
footer{
	background-color: #000000;
}
.delicia-main{
	position: relative;
	padding-bottom: 460px;
}
.delicia-main::after{
	content:'';
	background-image: url('../images/sushi-background-footer-3.png');
	height:700px;
	bottom: 0;
	width: 100%;
	z-index: 0;
	display:block;
	position: absolute;
	background-position: bottom;
	background-size: cover;
}
.selected-store-container{
	background: rgb(23,64,52);
	background: linear-gradient(180deg, rgba(23,64,52,1) 0%, rgba(28,38,35,1) 19%, rgba(0,0,0,0) 100%);
	position: relative;
	z-index: 1;
}
.screen-reader-text,
.menu-item-title span del{
	display:none;
}
.minicart .dropdown-menu{
	position: absolute;
	min-width: 320px;
	right: 0;
	left: inherit;
}
.minicart .dropdown-menu h5{
	font-weight: 400;
	padding-bottom: 8px;
	margin-bottom: 12px;
	border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
	color:var(--secondary-color);
	font-size: 16px;
}
.minicart h6{
	color:var(--secondary-color);
	font-weight: 400;
}
.minicart .product-image img{
	width: 50px;
	height: 50px;
}
.minicart .btn-remove{
	color:var(--red-dark-color);
	padding: 2px;
}
.minicart-total .fw-bold{
	display:flex;
	justify-content: space-between;
	align-items: center;
}
.minicart .dropdown-toggle{
	padding: 17px 30px 17px 30px;
}
.minicart .dropdown-toggle:hover,
.minicart .dropdown-toggle:active,
.minicart .dropdown-toggle:focus{
	background-color: rgba(0, 0, 0, 0.4);
}
.horarios-description{
	padding:20px;
}
.horarios-description p{
	margin-bottom: 0px;
	font-size: 14px;
}

.card {
	border: none;
	border-radius: 4px;
	overflow: hidden;
}

.card-header {
	background-color: white;
	border-bottom: 1px solid #ccc;
	padding: 1.25rem 1.5rem;
}

.card-header h5 {
	font-weight: 700;
	color:black;
	margin: 0;
}

.card-body {
	padding: 1.5rem;
}
.woocommerce-cart-form .product-thumbnail img{
	width: 120px;
	height: auto;
}
.woocommerce-cart-form .cart-item{
	transition: all 0.2s ease;
	padding: 1.25rem;
	margin-bottom: 1rem;
	border-radius: 0.5rem;
	background-color: white;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.cart-item-details h5{
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 0.5rem;
}
.cart-item-details p{
	color:#6b7280;
	font-size: 0.875rem;
	margin-bottom: 0.5rem;
}
.cart-item-details .price{
	font-weight: 700;
	color: var(--red-dark-color);
	font-size: 1.125rem;
}
.woocommerce-cart-form .cart-item:hover {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.woocommerce-cart-form .cart-item:last-child {
	margin-bottom: 0;
}
.quantity-control{
	width: 140px;
	border-radius: 4px;
	overflow: hidden;
}
.btn-quantity{
	background-color: white;
	border: 1px solid #d1d5db;
	color: #999;
	padding: 0.375rem 0.75rem;
	transition: all 0.2s ease;
}
.btn-quantity:hover{
	background-color:var(--red-dark-color);
	color:white;
}
.form-control{
	border: 1px solid #d1d5db;
	border-radius:8px;
	padding: 0.8rem 1rem;
	font-size: 0.9375rem;
	text-align: center;
}

.woocommerce .woocommerce-cart-form a.remove{
	color: #ef4444 !important;
	background: transparent;
	border: none;
	padding: 0.5rem;
	border-radius: 50%;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width:44px;
	height: 44px;;
}
.woocommerce .woocommerce-cart-form a.remove i{
	font-size:20px;
}

.woocommerce .woocommerce-cart-form a.remove:hover{
	background-color: rgba(239, 68, 68, 0.1);
	color: #ef4444 !important;
}
.card-footer{
	background-color: white;
	border-top: 1px solid #e5e7eb;
	padding: 1.25rem 1.5rem;
}
.action-buttons{
	display: flex;
	justify-content: space-between;
	margin-top: 1.5rem;
}

.woocommerce-cart-form{
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
}

.left-side-cart{
	background-color:#f2f2f2;
	height: 100%;
}
.left-side-cart .card-header,
.left-side-cart .card-footer{
	background-color: transparent;
}

.btn-outline-primary{
	border-color: black;
	color: black;
	border-radius: 30px;
	padding:6px 24px;
}
.btn-outline-primary:hover{
	background-color: black;
	color:white;
	border-color: black;
}
.summary-item{
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.75rem;
	color: #4b5563;
}
.summary-total{
	display: flex;
	justify-content: space-between;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #e5e7eb;
	font-weight: 600;
	color: black;
}
.summary-total .total-price{
	font-size: 1.25rem;
	color:var(--red-dark-color)
}
.payment-methods{
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1.5rem;
	width: 100%;
}
.woocommerce .payment-methods img{
	height: 32px;
	opacity: 0.8;
	transition: opacity 0.2s ease;
}
.woocommerce-cart-form .btn-default:hover,
#global-deliciadivina button.btn-default:hover,
#global-deliciadivina input.btn-default:hover,
#iniciar-sesion button[type="submit"]:hover{
	color:white;
}
.woocommerce-cart-form .btn-default:hover::before,
.detalle-producto-main .detalle-producto-descripcion .single_add_to_cart_button:hover::before,
#global-deliciadivina button.btn-default:hover::before,
#global-deliciadivina input.btn-default:hover::before,
#iniciar-sesion button[type="submit"]:hover::before{
	background-color: black;
}
.theme-deliciadivina .woocommerce-error{
	border-top-color: var(--accent-color);
	background-color: var(--accent-color);
	color: white;
	border: none;
	border-radius: 8px;
}
.theme-deliciadivina .woocommerce-error::before,
.theme-deliciadivina .woocommerce-message::before{
	color:white;
}

.theme-deliciadivina .woocommerce-message{
	border-top-color: #4caf50;
	background-color: #4caf50;
	color: white;
	border: none;
	border-radius: 8px;
}
.theme-deliciadivina .woocommerce-message a{
	color:white;
	font-weight: 800;
}
.wc-empty-cart-message{
	display:none;
}
.woocommerce .empty-cart{
	border-radius: 8px;
	overflow: hidden;
	background-color: white;
	padding:80px;
}
.woocommerce .empty-cart h2{
	color:black;
}
.woocommerce .empty-cart img{
	margin-bottom: 30px;
	opacity: 0.6;
	height: 260px;
}

.hero-page{
	padding: 111px 0 0;
}

.woocommerce-billing-fields__field-wrapper label,
.woocommerce-additional-fields__field-wrapper label{
	display:block;
	font-size: 16px;
	color:#333333;
}
.woocommerce-billing-fields__field-wrapper .woocommerce-input-wrapper,
.woocommerce-billing-fields__field-wrapper .woocommerce-input-wrapper input,
.woocommerce-additional-fields__field-wrapper,
.woocommerce-additional-fields__field-wrapper textarea{
	display:block;
	width: 100%;
}
.woocommerce-billing-fields__field-wrapper .woocommerce-input-wrapper input,
.woocommerce-additional-fields__field-wrapper textarea{
	border: 1px solid #d1d5db;
	border-radius: 8px;
	padding: 0.4rem 1rem;
	font-size: 0.9375rem;
	text-align: left;
}
.select2-container .select2-selection--single .select2-selection__rendered{
	font-size:0.9375rem;
}
.select2-container.select2-container--open .select2-dropdown--below{
	top:-28px;
}
.select2-container.select2-container--open .select2-dropdown--above{
	top:-32px;
}
.select2-results__option{
	font-size: 14px;
	color:#666;
}
.theme-deliciadivina .select2-container--default .select2-results__option--highlighted[aria-selected]{
	background-color: #0E110D;
}
.theme-deliciadivina .payment_methods, 
.theme-deliciadivina .woocommerce-checkout #payment ul.payment_methods li{
	font-size: 14px;
	line-height: 20px;
}
.theme-deliciadivina .woocommerce-checkout #payment ul.payment_methods li .woocommerce-info{
	margin-bottom: 0px;;
}
.woocommerce-privacy-policy-text p{
	font-size: 13px;;
}
.theme-deliciadivina .woocommerce-form-coupon-toggle .woocommerce-info{
	margin-bottom: 0px;;
}
.theme-deliciadivina .woocommerce-checkout .checkout_coupon{
	border:0px;
}
.theme-deliciadivina .woocommerce-checkout .checkout_coupon p{
	font-size: 14px;
	color:var(--secondary-color);
	margin-bottom: 8px;
}
.woocommerce-NoticeGroup-checkout .woocommerce-error,
.woocommerce-NoticeGroup-checkout .woocommerce-error a{
	margin-bottom: 0px;
	font-size: 14px;
	color:white;
}
.woocommerce-NoticeGroup-checkout .woocommerce-error li{
	margin-bottom: 4px;
}

/* COMPRA COMPLETADA  */
.order-confirmation{
	margin: 2rem auto;
	background-color: white;
	border-radius: 0.5rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	max-width: 980px;
}
.confirmation-header{
	background-color: black;
	color: white;
	border-radius: 0.5rem 0.5rem 0 0;
	padding: 3rem 2rem;
	text-align: center;
}
.order-confirmation .confirmation-body{
	padding:2rem;
	background-image: url(../images/fondo-compra-efectuada.svg);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 50%;
}
.order-confirmation .success-icon{
	font-size: 4rem;
	color:#10b981;
	margin-bottom: 1rem;
}
.order-confirmation .order-summary{
	background-color: #f3f4f6;
	border-radius: 0.5rem;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}
.order-confirmation .info-label{
	color:#717171;
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 4px;
}
.order-confirmation .order-summary{
	font-weight: 500;
	color:#1e2128;
}
.order-confirmation .woocommerce-Price-amount{
	color:var(--red-dark-color)
}
.order-confirmation .woocommerce-order-details h2,
.order-confirmation .woocommerce-customer-details h2{
	color:black;
	font-size: 20px;
	margin-bottom: 10px;
}
.order-confirmation .woocommerce-table--order-details,
.delicia-main .order-confirmation table.shop_table th{
	color: #666;
	font-size: 16px;
	font-weight: 400;
}

.order-confirmation .order-id{
	font-weight: 600;
	color: var(--red-dark-color)
}
.order-details, .billing-details{
	margin-bottom: 1.5rem;
}
.order-confirmation .section-title {
	color: var(--red-dark-color);
	margin-bottom: 1rem;
	font-weight: 600;
}
.product-item{
	padding: 1rem 0;
	border-bottom: 1px solid #e5e7eb;
}
.text-muted{
	--bs-text-opacity: 1;
	color: #212529bf !important;
}

.woocommerce-order-received .page-title{
	display:none;
}
.delicia-main .woocommerce form .form-row .input-text,
.delicia-main .woocommerce form .form-row select,
.delicia-main .select2-container .select2-dropdown, 
.delicia-main .select2-container .select2-selection{
	border-color: #d1d5db;
}
.delicia-main .woocommerce .woocommerce-customer-details address{
	padding:24px;
	color: #666;
	font-size: 16px;
	font-weight: 400;
}

/* DETALLE PRODUCTO  */
.detalle-producto{
	padding:30px;
	padding-left: 0px;
	height: 100%;
	position: relative;
	z-index: 2;
}
.detalle-producto-bg{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	right: 0px;
	top: 0;
	z-index: 0;
	background-image: url(../images/store-button-bg.svg);
	background-repeat: no-repeat;
	background-size: 400px;
	background-position: left;
	opacity: 0.2;
	-moz-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	transform: scaleX(-1);
	-ms-filter: fliph;
	filter: fliph;
}
.detalle-producto-descripcion h1{
	font-weight: 700;
	color: black;
	font-size: 34px;
}
.detalle-producto-descripcion form{
	display: flex;
	gap:20px;
	align-items: center;
}
.detalle-producto-main .detalle-producto-descripcion .single_add_to_cart_button{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	background: var(--accent-color) !important;
	color: var(--primary-color);
	border-radius: 30px;
	padding: 17px 58px 17px 30px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
	box-shadow: var(--bs-box-shadow-sm) !important;
}
.detalle-producto-descripcion ins{
	text-decoration: none;
}
.detalle-producto-descripcion .price{
	margin-bottom: 28px;
}
.detalle-producto-descripcion ins .woocommerce-Price-amount bdi{
	font-size: 26px;
	color:var(--red-dark-color);
	font-weight: 900;
	float: left;
	margin-right: 6px;
}
.detalle-producto-descripcion .detalle-producto-descripcion-content{
	font-size: 14px;
	color:#1E1E1E;
	font-weight: 500;
	margin-bottom: 30px;
}
.detalle-producto-tabs .woocommerce-tabs ul{
	margin: 0;
	padding: 0px 30px;
	list-style: none;
	display: flex;
}
.detalle-producto-tabs .woocommerce-tabs ul li:first-child a{
	border-top-left-radius: 4px;
}
.detalle-producto-tabs .woocommerce-tabs ul li:last-child a{
	border-top-right-radius: 4px;
}

.detalle-producto-tabs .woocommerce-tabs ul li a{
	font-size: 16px;
	font-weight: 800;
	color:#1E1E1E;
	background-color: #EAEAEA;
	padding: 8px 20px;
	display: block;
}
.detalle-producto-tabs .woocommerce-tabs ul li.active a{
	background-color: var(--dark-divider-color);
	color:white;
}
.detalle-producto-tabs .woocommerce-Tabs-panel{
	background-color: #EAEAEA;
	font-size: 14px;
	color: #1E1E1E;
	font-weight: 500;
	overflow: hidden;
	padding:30px;
}
.detalle-producto-tabs .woocommerce-Tabs-panel h2{
	color:black;
	font-size: 20px;
	font-weight: 700;
}

.theme-deliciadivina .woocommerce-breadcrumb{
	color:white !important;
	font-size: 14px !important;
	display: flex;
	gap: 8px;
	font-weight: 800;
}
.theme-deliciadivina .woocommerce-breadcrumb a{
	color:white !important;
	font-size: 14px;
	font-weight: 800;
}
.productos-relacionados{
	background-color: #f2f2f2;
	border-radius: 8px;
	padding: 30px;
	padding-top: 50px;
	margin-top: 60px;
}
.productos-relacionados h4{
	font-size: 20px;
	color:black;
	font-weight: 800;
	text-align: center;
}
.content-product-imagen{
	border-radius: 100%;
	overflow: hidden;
	width: 190px;
	height: 190px;
	margin: auto;
}
.productos-relacionados ins .woocommerce-Price-amount bdi{
	font-size: 18px;
	color: var(--red-dark-color);
	font-weight: 900;
}
.productos-relacionados .onsale{
	display:none;
}
.productos-relacionados del{
	display:none;
}
.productos-relacionados ins{
	text-decoration: inherit;
}
.productos-relacionados .price{
	display: block;
	text-align: center;
}
.productos-relacionados .productos-relacionados-title{
	background-color: var(--red-dark-color);
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	position: absolute;
	left: 0;
	top: -24px;
}
.productos-relacionados .productos-relacionados-title h2{
	color: white;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 2px;
	padding: 16px 32px;
}
.productos-relacionados .content-product-related a:hover{
	opacity: 0.8;
}

/**
	iniciar-sesion //
**/
#iniciar-sesion .sushi-image{
	background-image: url('../images/mi-cuenta.jpg');
	background-size: cover;
	background-position: center;
	min-height: 100%;
	position: relative;
}
#iniciar-sesion .sushi-image::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
}
#iniciar-sesion .sushi-image .sushi-image-content {
	position: relative;
	z-index: 1;
	padding: 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#iniciar-sesion .sushi-image .sushi-quote {
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 1.4;
	margin-bottom: 2rem;
	color: white;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
#iniciar-sesion .card-header{
	background-color: #f2f2f2;
	padding-bottom: 0;
}
#iniciar-sesion .card-header .nav-tabs{
	margin:0;
}
#iniciar-sesion .card-header .nav-tabs button{
	color:rgb(97, 97, 97);
}
#iniciar-sesion .card-header-tabs .nav-link.active{
	color:black;
	font-weight: bold;
}
#iniciar-sesion .card-body h2{
	font-weight: 700;
	color: black;
	margin: 0;
	font-size: 1.8rem;
}
#iniciar-sesion .woocommerce form .password-input, .woocommerce-page form .password-input{
	width: calc(100% - 50px);
}
#iniciar-sesion button[type="submit"],
#iniciar-sesion button[type="submit"]{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	background: var(--accent-color);
	color: var(--primary-color);
	border-radius: 30px;
	padding: 17px 58px 17px 30px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}
#iniciar-sesion button[type="submit"]:hover,
#global-deliciadivina input.btn-default:hover{
	background-color: black;
}
.panel-mi-cuenta .bienvenida-usuario h3,
.panel-mi-cuenta .bienvenida-usuario a{
	color:black;
}
.panel-mi-cuenta .bienvenida-usuario h3 span,
.panel-mi-cuenta .dashboard-item i,
.panel-mi-cuenta .bienvenida-usuario a:hover{
	color:#C00025
}
.panel-mi-cuenta .faq-catagery-list ul li a{
	color:black;
}
.panel-mi-cuenta .faq-catagery-list ul li a:hover,
.panel-mi-cuenta .faq-catagery-list ul li a.active{
	color: #c00025;
}
.panel-mi-cuenta .faq-catagery-list ul li a.active{
	font-weight: bold;
}
.panel-mi-cuenta .faq-catagery-list{
	padding:10px;
}
.panel-mi-cuenta label{
	color:var(--secondary-color);
}
.detalle-orden .woocommerce-order-details__title{
	display:none;
}
.detalle-orden .woocommerce-column__title{
	color:black;
	font-size: 1.4rem;
	margin-bottom: 12px;
}
.panel-mi-cuenta .detalle-orden table.shop_table th{
	color:#1E1E1E;
}

/*
	ARCHIVE PRODUCTS
*/
.categoria-producto h4{
	font-size: 20px;
	font-weight: 800;
}
.categoria-producto .price ins{
	color:#C00025;
	font-weight: 800;
}
.categoria-producto:hover {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.delicia-main .archive-controls p,
.delicia-main .archive-controls .woocommerce-ordering{
	margin-bottom: 0px;
}
.delicia-main .archive-controls p{
	color:#1E1E1E;
	font-size: 14px;
}
.delicia-main .archive-controls .woocommerce-ordering select{
	border: 0px;
	padding: 4px;
	border-radius: 4px;
	font-size: 14px;
}
/*
	BLOG POST
*/
.main-container {
	width: 80%;
	margin: 2rem auto;
	background-color: var(--sushi-cream);
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	overflow: hidden;
}

.delicia-post .blog-header {
	position: relative;
	height: 400px;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
	padding: 0 2rem;
}

.delicia-post .blog-header::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--sushi-red);
}

.delicia-post .blog-title {
	font-weight: 700;
	font-size: 3.5rem;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}

.delicia-post .blog-subtitle {
	font-weight: 300;
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto;
}

.delicia-post .content-wrapper {
	padding: 3rem;
	background-color: white;
	border-radius: 8px;
}

.delicia-post .blog-meta {
	display: flex;
	align-items: center;
	color: #1F2120;
	margin-bottom: 2rem;
	font-size: 0.9rem;
	border-bottom: 1px solid #eee;
	padding-bottom: 1.5rem;
}

.delicia-post .blog-meta-item {
	margin-right: 2rem;
	display: flex;
	align-items: center;
}

.delicia-post .blog-meta-item i {
	margin-right: 0.5rem;
	color:var(--red-dark-color);
}

.delicia-post .featured-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 2rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.delicia-post .featured-image:hover {
	transform: scale(1.02);
}

.delicia-post .blog-content {
	line-height: 1.8;
	padding-bottom: 2rem;
}

.delicia-post .blog-content h2 {
	color: var(--sushi-black);
	margin-top: 2.5rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
	position: relative;
	padding-bottom: 0.5rem;
}

.delicia-post .blog-content h2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: var(--sushi-red);
}

.delicia-post .blog-content h3 {
	color: var(--sushi-black);
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-weight: 500;
}

.delicia-post .blog-content p {
	margin-bottom: 1.5rem;
	color: #444;
}

.delicia-post blockquote {
	background-color: white;
	border-left: 4px solid var(--sushi-red);
	padding: 1.5rem;
	margin: 2rem 0;
	border-radius: 0 8px 8px 0;
	font-style: italic;
}

.delicia-post blockquote p {
	margin-bottom: 0.5rem !important;
	font-weight: 500;
	font-size: 1.1rem;
}

.delicia-post .blockquote-footer {
	color: var(--sushi-gray);
}

.default-page h1,
.default-page h2,
.default-page h3,
.default-page h4,
.default-page h5,
.default-page h6{
	color:#0E110D;
}
.default-page p,
.default-page ul,
.default-page ul li{
	color:#666;
}

.blog-card {
	margin-bottom: 2.5rem;
	border: none;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background-color: white;
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-card .card-img-top {
	height: 220px;
	object-fit: cover;
}

.blog-card .card-body {
	padding: 1.5rem;
}

.blog-card .card-title {
	font-weight: 600;
	font-size: 1.4rem;
	margin-bottom: 1rem;
	margin-top:1rem;
	color: black;
}

.blog-card .card-title a {
	color: black;
	text-decoration: none;
	transition: color 0.3s ease;
}

.blog-card .card-title a:hover {
	color: var(--red-dark-color);
}

.blog-card .card-text {
	color: #555;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.blog-meta {
	display: flex;
	align-items: center;
	color: var(--secondary-color);
	font-size: 0.85rem;
	margin-bottom: 1rem;
}

.blog-meta-item {
	margin-right: 1.5rem;
	display: flex;
	align-items: center;
}

.blog-meta-item i {
	margin-right: 0.5rem;
	color: var(--red-dark-color);
	font-size: 0.9rem;
}

.category-badge {
	display: inline-block;
	background-color: rgba(212, 46, 18, 0.1);
	color: var(--red-dark-color);
	padding: 0.3rem 0.8rem;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 500;
	margin-bottom: 0.75rem;
}

.small-quantity-control,
.small-quantity-control .input-group .btn,
.small-quantity-control input.form-control{
	height: 44px;
}
.delicia-main .woocommerce .cart-collaterals .cart_totals, 
.delicia-main .woocommerce-page .cart-collaterals .cart_totals{
	float: inherit;
	width: auto;
}
.delicia-main .woocommerce .metodo-envio ul#shipping_method{
	width: 80%;
	font-size: 16px;
	font-weight: 500;
}

/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/***      29. Responsive css      ***/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/