:root {
	--whiteColor: #fff;
	--blackColor: #212121;
	--textColor: #5C5C5B;
	--primaryColor: #00A149;
	--secondaryColor: #FFC222;
	--mainColor: #FFC222;
	--border: #D9D9D9;
	--border2: #ffffff2b;
	--button: #1C2539;
	--backgroundColor: #F4F1EA;
	--fontFamily: "Oswald", sans-serif;
}


/* --------------------------------------------
Template Default Fonts & Fonts Styles
---------------------------------------------- */
body {
	font-family: var(--fontFamily);
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
	color: var(--textColor);
	background-color: var(--whiteColor);
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}

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

button {
	border: none;
	background-color: transparent;
	padding: 0;
}

input:focus {
	color: var(--whiteColor);
	outline: none;
}

input {
	color: var(--whiteColor);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--fontFamily);
	margin: 0px;
	padding: 0;
	color: var(--blackColor);
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

h1 {
	font-size: 135px;
	font-weight: 600;
	line-height: 105%;
	text-transform: uppercase;
}
@media (max-width: 1399px) {
	h1 {
		font-size: 120px;
	}
}
@media (max-width: 1199px) {
	h1 {
		font-size: 100px;
	}
}
@media (max-width: 991px) {
	h1 {
		font-size: 60px;
	}
}
@media (max-width: 575px) {
	h1 {
		font-size: 42px;
	}
}

h2 {
	font-size: 60px;
	line-height: 112%;
	font-weight: 700;
}
@media (max-width: 1399px) {
	h2 {
		font-size: 50px;
	}
}
@media (max-width: 1199px) {
	h2 {
		font-size: 48px;
	}
}
@media (max-width: 991px) {
	h2 {
		font-size: 38px;
	}
}
@media (max-width: 575px) {
	h2 {
		font-size: 30px;
	}
}

h3 {
	font-size: 36px; 
	font-weight: 700;
	line-height: 130%;
}
@media (max-width: 1399px) {
	h3 {
		font-size: 26px;
	}
}
@media (max-width: 991px) {
	h3 {
		font-size: 24px;
	}
}

h4 {
	font-size: 20px;
	font-weight: 600;
	line-height: 130%;
}

h5 {
	font-size: 18px;
	font-weight: 600;
	line-height: 130%;
}

h6 {
	font-size: 16px;
	font-weight: 700;
	line-height: 145%;
}

a {
	text-decoration: none;
	outline: none !important;
	cursor: pointer;
	color: var(--blackColor);
	transition: all 0.4s ease-in-out;
}

p {
	transition: all 0.4s ease-in-out;
}

.theme-btn {
	position: relative;
	display: inline-block;
	overflow: hidden;
	vertical-align: middle;
	font-size: 17px;
	line-height: 1;
	font-weight: 600;
	padding: 20px 50px;
	color: var(--whiteColor);
	text-align: center;
	border-radius: 9px;
	letter-spacing: 0.8px;
	z-index: 1;
	transition: all 500ms ease;
	background-color: var(--primaryColor);
	text-transform: capitalize;
}
p {
	margin-bottom: 12px;
}
@media (max-width: 991px) {
	.theme-btn {
		padding: 16px 36px;
		font-size: 16px;
	}
	.theme-btn i {
		font-size: 22px;
	}
}
.theme-btn i {
	margin-right: 10px;
	font-size: 24px;
}
.theme-btn::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	transform: scale(0, 0);
	z-index: -1;
	transition: all 500ms ease;
}
.theme-btn:hover::before {
	background-color: var(--secondaryColor);
	transform: scale(1, 1);
}
.theme-btn.bg-white {
	background-color: var(--whiteColor);
	color: var(--blackColor);
}
.theme-btn.bg-white i {
	color: var(--primaryColor);
	transition: all 0.4s ease-in-out;
}
.theme-btn.bg-white:hover {
	color: var(--whiteColor);
}
.theme-btn.bg-white:hover::before {
	background-color: var(--mainColor);
}
.theme-btn.bg-white:hover i {
	color: var(--whiteColor);
}
.theme-btn.bg-yellow {
	background-color: var(--mainColor);
	color: var(--blackColor);
	font-weight: 700;
}
.theme-btn.bg-yellow i {
	margin-left: 10px;
	color: var(--blackColor);
}
.theme-btn.bg-yellow:hover {
	color: var(--blackColor);
}
.theme-btn.bg-yellow:hover::before {
	background-color: var(--whiteColor);
}
.theme-btn.bg-red {
	background-color: var(--secondaryColor);
	color: var(--whiteColor);
	border-radius: 0;
}
.theme-btn.bg-red:hover {
	color: var(--blackColor);
}
.theme-btn.bg-red:hover::before {
	background-color: var(--whiteColor);
}
.theme-btn.bg-red-2 {
	background-color: var(--secondaryColor);
	color: var(--whiteColor);
	border-radius: 7px;
}
.theme-btn.bg-red-2:hover {
	color: var(--whiteColor);
}
.theme-btn.bg-red-2:hover::before {
	background-color: var(--primaryColor);
}
.theme-btn.style-box-shadow {
	border-radius: 8px;
	background: var(--secondaryColor);
	box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.07);
	color: var(--whiteColor);
	font-weight: 700;
}
.theme-btn.style-box-shadow:hover {
	color: var(--whiteColor);
}
.theme-btn.style-box-shadow:hover::before {
	background-color: var(--primaryColor);
}
.theme-btn.bg-transparent {
	background: transparent;
	border: 1px solid var(--secondaryColor);
	color: var(--whiteColor);
	border-radius: 0;
}
.theme-btn.bg-transparent:hover {
	color: var(--blackColor);
}
.theme-btn.bg-transparent:hover::before {
	background-color: var(--whiteColor);
}
.theme-btn.cart-btn {
	background-color: var(--secondaryColor);
	color: var(--whiteColor);
	border-radius: 0;
	font-weight: 500;
	padding: 16px 25px;
}
.theme-btn.cart-btn i {
	font-size: 16px;
	color: var(--whiteColor) !important;
}
.theme-btn.cart-btn:hover {
	color: var(--whiteColor);
}
.theme-btn.cart-btn:hover::before {
	background-color: var(--mainColor);
}
@media (max-width: 1399px) {
	.theme-btn.cart-btn {
		padding: 15px 20px;
	}
}
@media (max-width: 1199px) {
	.theme-btn.cart-btn {
		padding: 16px 25px;
	}
}
.theme-btn.style-line-height {
	line-height: 1.5;
}
@media (max-width: 767px) {
	.theme-btn {
		padding: 14px 32px;
		font-size: 14px;
	}
	.theme-btn i {
		font-size: 20px;
	}
}

.theme-btn-2 {
	position: relative;
	display: inline-block;
	overflow: hidden;
	vertical-align: middle;
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
	padding: 10px 50px;
	color: var(--whiteColor);
	text-align: center;
	z-index: 1;
	transition: all 500ms ease;
	background-color: var(--blackColor);
	text-transform: capitalize;
	border-radius: 19px;
	width: 100%;
}
.theme-btn-2 i {
	font-size: 17px;
	margin-right: 10px;
}
.theme-btn-2::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	transform: scale(0, 0);
	z-index: -1;
	transition: all 500ms ease;
}
.theme-btn-2:hover::before {
	background-color: var(--primaryColor);
	transform: scale(1, 1);
}

.link-btn {
	text-transform: capitalize;
	font-size: 17px;
	color: var(--whiteColor);
	font-weight: 500;
	display: inline-block;
	background-image: linear-gradient(var(--secondaryColor), var(--secondaryColor));
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
}
.link-btn i {
	margin-left: 10px;
	font-size: 14px;
}
.link-btn.style-2 {
	text-transform: capitalize;
	font-weight: 600;
	font-size: 16px;
	color: var(--textColor);
	overflow: hidden;
	background-image: linear-gradient(var(--secondaryColor), var(--secondaryColor));
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: none;
}
.link-btn.style-2 i {
	color: var(--textColor);
	font-size: 16px;
}
.link-btn.style-2:hover {
	background-size: 100% 1px;
	color: var(--secondaryColor);
}
.link-btn.style-2:hover i {
	color: var(--secondaryColor);
}
.link-btn.color-red {
	text-transform: capitalize;
	font-weight: 700;
	font-size: 16px;
	color: var(--blackColor);
	overflow: hidden;
	background-image: linear-gradient(var(--secondaryColor), var(--secondaryColor));
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
}
.link-btn.color-red i {
	color: var(--blackColor);
	font-size: 16px;
}
.link-btn.color-red:hover {
	background-size: 100% 1px;
	color: var(--secondaryColor);
}
.link-btn.color-red:hover i {
	color: var(--secondaryColor);
}
.link-btn:hover {
	background-size: 100% 1px;
	color: var(--secondaryColor);
}
.link-btn:hover i {
	color: var(--secondaryColor);
}
.link-btn.hover-style:hover {
	color: var(--mainColor);
}
.link-btn.hover-style:hover i {
	color: var(--mainColor);
}

.preloader {
	align-items: center;
	cursor: default;
	display: flex;
	height: 100%;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 9999999;
}
.preloader .animation-preloader {
	z-index: 1000;
}
.preloader .animation-preloader .spinner {
	animation: spinner 1s infinite linear;
	border-radius: 50%;
	border: 3px solid rgba(0, 0, 0, 0.2);
	border-top-color: var(--primaryColor);
	height: 9em;
	margin: 0 auto 3.5em auto;
	width: 9em;
}
@media (max-width: 767px) {
	.preloader .animation-preloader .spinner {
		width: 7.5em;
		height: 7.5em;
		margin: 0 auto 1.5em auto;
	}
}
.preloader .animation-preloader .txt-loading {
	font-size: 5em;
	font-weight: 700;
	text-align: center;
	user-select: none;
	line-height: 1;
	position: relative;
}
@media (max-width: 767px) {
	.preloader .animation-preloader .txt-loading {
		font-size: 2.5em;
	}
}
.preloader .animation-preloader .txt-loading .letters-loading {
	color: var(--secondaryColor);
	position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
	animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
	animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
	animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
	animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
	animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
	animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
	animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
	animation: letters-loading 4s infinite;
	color: var(--primaryColor);
	content: attr(data-text-preloader);
	left: 0;
	opacity: 0;
	font-family: var(--fontFamily);
	position: absolute;
	top: 20px;
	transform: rotateY(-90deg);
}
.preloader p {
	margin-top: 20px;
	font-weight: 600;
	text-transform: capitalize;
	letter-spacing: 8px;
	color: var(--mainColor);
}
.preloader .loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}
.preloader .loader .row {
	height: 100%;
}
.preloader .loader .loader-section {
	padding: 0px;
}
.preloader .loader .loader-section .bg {
	background-color: #fff;
	height: 100%;
	left: 0;
	width: 100%;
	transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
	opacity: 0;
	transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
	width: 0;
	transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	background-color: rgba(255, 255, 255, 0.9);
}
.search-wrap .search-inner {
	position: relative;
	width: 100%;
	height: 100%;
}
.search-wrap .search-cell {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
}
.search-wrap .search-field-holder {
	width: 50%;
	margin: auto;
	position: relative;
	animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.search-wrap .search-field-holder {
		width: 70%;
	}
}
@media (max-width: 575px) {
	.search-wrap .search-field-holder {
		width: 80%;
	}
}
.search-wrap .main-search-input {
	width: 100%;
	height: 70px;
	border: 0;
	padding: 0 50px;
	text-transform: capitalize;
	background: transparent;
	font-size: 20px;
	color: var(--blackColor);
	border-bottom: 2px solid var(--blackColor);
	text-align: center;
	letter-spacing: 2px;
}

@media (max-width: 575px) {
	.search-wrap .main-search-input {
		height: 50px;
		padding: 0 0;
		line-height: 50px;
		font-size: 16px;
	}
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
	background-color: var(--blackColor);
}

input.main-search-input::placeholder {
	color: var(--blackColor);
	opacity: 1;
	font-size: 22px;
}

@media (max-width: 575px) {
	input.main-search-input::placeholder {
		font-size: 16px;
	}
}
.search-close {
	position: absolute;
	top: 50px;
	right: 50px;
	font-size: 30px;
	color: var(--secondaryColor);
	cursor: pointer;
}

.section-title {
	position: relative;
	z-index: 99;
	margin-bottom: 30px;
	margin-top: -6px;
}
@media (max-width: 767px) {
	.section-title {
		margin-bottom: 0;
	}
}
.section-title span {
	color: var(--primaryColor);
	margin-bottom: 5px;
	display: inline-block;
	font-weight: 700;
	text-transform: capitalize;
}

.center {
	text-align: center;
	margin: 0 auto;
}

.section-bg {
	background-color: var(--backgroundColor);
}

.section-bg-2 {
	background-color: var(--primaryColor);
}

.theme-bg-2 {
	background-color: var(--secondaryColor);
}

.section-bg-3 {
	background-color: var(--blackColor);
}

.section-padding {
	padding: 120px 0;
}
@media (max-width: 1199px) {
	.section-padding {
		padding: 100px 0;
	}
}
@media (max-width: 991px) {
	.section-padding {
		padding: 80px 0;
	}
}

@-webkit-keyframes video-animation {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.5);
	}
	100% {
		opacity: 0;
		transform: scale(2);
	}
}
@keyframes video-animation {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.5);
	}
	100% {
		opacity: 0;
		transform: scale(2);
	}
}
@keyframes cir36 {
	100% {
		transform: rotate(360deg);
	}
}
@keyframes rounded {
	50% {
		transform: rotate(15deg);
	}
}
@keyframes rounded-2 {
	50% {
		transform: rotate(5deg);
	}
}
@keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.animation__rotate {
	-webkit-animation: rotate 40s linear infinite;
	animation: rotate 40s linear infinite;
}

@-webkit-keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}
@keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}
@-webkit-keyframes letters-loading {
	0%, 75%, 100% {
		opacity: 0;
		transform: rotateY(-90deg);
	}
	25%, 50% {
		opacity: 1;
		transform: rotateY(0deg);
	}
}
@keyframes letters-loading {
	0%, 75%, 100% {
		opacity: 0;
		transform: rotateY(-90deg);
	}
	25%, 50% {
		opacity: 1;
		transform: rotateY(0deg);
	}
}
@keyframes loaderspin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
@keyframes tpswing {
	0% {
		-webkit-transform: rotate(20deg);
		-ms-transform: rotate(20deg);
		transform: rotate(20deg);
	}
	100% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}
@keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
@-webkit-keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
@-webkit-keyframes loaderspin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
@keyframes loaderpulse {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.2);
	}
}
.float-bob-y {
	-webkit-animation-name: float-bob-y;
	animation-name: float-bob-y;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
	0% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}
@keyframes float-bob-y {
	0% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}
@keyframes scale-up-two {
	0% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	40% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
	100% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
}
.header-top {
	background-color: #071358 !important;
	border-bottom: 1px solid var(--border);
	position: relative;
}
@media (max-width: 991px) {
	.header-top {
		display: none;
	}
}
/* .header-top::before {
position: absolute;
top: 0;
right: 0;
content: "";
height: 100%;
width: 100% !important;
background-color: var(--blackColor);
}
@media (max-width: 1399px) {
.header-top::before {
width: 290px;
}
}
@media (max-width: 1199px) {
.header-top::before {
width: 270px;
}
} */

.header-top-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-top-wrapper ul {
	display: flex;
	align-items: center;
	gap: 30px;
}
.header-top-wrapper ul li {
	font-size: 16px;
	color: var(--whiteColor);
}

.header-top-wrapper .top-right {
	display: flex;
	align-items: center;
	border-left: 1px solid var(--border);
	padding-left: 25px;
}
.header-top-wrapper .top-right .search-wrp{
	position: relative;
	z-index: 1;
}
.header-top-wrapper .top-right .search-wrp input {
    position: relative;
    background-color: transparent;
    outline: none;
    width: 180px;
    font-size: 17px;
    padding: 10px 40px 10px 7px;
    font-weight: 500;
    border: none;
    color: var(--whiteColor);
    border-radius: 0;
}
.header-top-wrapper .top-right .search-wrp i {
    font-weight: normal;
    color: var(--whiteColor);
}
.header-top-wrapper .top-right .search-wrp input::placeholder {
	color: var(--whiteColor);
}
.header-top-wrapper .top-right .social-icon {
	gap: 25px;
	position: relative;
	z-index: 9;
	list-style: none;
}
@media (max-width: 575px) {
	.header-top-wrapper .top-right .social-icon {
		margin-top: 20px;
	}
}
.header-top-wrapper .top-right .social-icon a {
    text-align: center;
    font-size: 16px;
    display: block;
    color: var(--whiteColor);
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
}
.header-top-wrapper .top-right .social-icon a:hover {
	color: var(--secondaryColor);
}

.header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}

.main-menu .sub-menu {
	background: var(--whiteColor);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	visibility: hidden;
	top: 60px;
	left: 25px;
	opacity: 0;
}

.primary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu li {
	display: inline-block;
	position: relative;
	padding: 6px 20px;
}
.primary-menu .menu-item-has-children:after {
	position: absolute;
	content: "\f107";
	font-family: 'Font Awesome 5 Pro';
	padding-top: 2px;
	padding-left: 3px;
	font-weight: 500;
}
.primary-menu li a {
	text-transform: capitalize;
	font-weight: 500;
	font-size: 18px;
}
.sub-menu {
	position: absolute;
	top: 100%;
	inset-inline-start: 0;
	min-width: 240px;
	background: var(--white);
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	-webkit-transform-origin: top center;
	transform-origin: top center;
	color: var(--header);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	width: 200px;
}

.menu-item-has-children:hover .sub-menu{
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}

.sub-menu li {
	display: block;
}

.sub-menu a {
	display: block;
	padding: 5px 10px;
	color: #333;
	text-decoration: none;
}

.sub-menu li:hover {
	background-color: var(--secondaryColor);
	transition: .5s;
	color: #fff;
}
.sub-menu li a:hover {
	color: #fff;
}


.header-main .header-right {
	gap: 25px;
}
@media (max-width: 767px) {
	.header-main .header-right .header-button {
		display: none;
	}
}
.header-main .header-right .menu-cart {
	position: relative;
}
@media (max-width: 1199px) {
	.header-main .header-right .menu-cart {
		display: none;
	}
}
.header-main .header-right .menu-cart .cart-box {
	background: var(--whiteColor) none repeat scroll 0 0;
	box-shadow: 0 0 7px 0.5px rgba(0, 0, 0, 0.15);
	padding: 5px 20px 0px;
	position: absolute;
	left: -70px;
	top: 200%;
	transform: rotateX(90deg);
	transform-origin: center top 0;
	transition: all 0.5s ease 0s;
	visibility: hidden;
	width: 340px;
	z-index: 9999;
}
.header-main .header-right .menu-cart .cart-box ul li {
	display: flex;
	align-items: center;
	padding: 2px 0;
	gap: 10px;
	border-bottom: 1px solid var(--border);
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
}
.header-main .header-right .menu-cart .cart-box ul li a {
	padding: 0;
	position: relative;
	font-size: 20px;
	text-transform: capitalize;
}
.header-main .header-right .menu-cart .cart-box ul li a::after {
	position: absolute;
	content: "\f00d";
	font-family: 'Font Awesome 5 Pro' !important;
	font-weight: 600;
	top: 15px;
	right: -88px;
	color: var(--whiteColor);
	font-size: 10px;
	width: 18px;
	height: 18px;
	line-height: 18px;
	border-radius: 30px;
	background-color: var(--secondaryColor);
	text-align: center;
}
.header-main .header-right .menu-cart .cart-box ul li span {
	display: block;
	font-size: 17px;
	font-weight: 500;
	color: var(--blackColor);
}
.header-main .header-right .menu-cart .cart-box ul li img {
	width: 90px;
}
.header-main .header-right .menu-cart .cart-box .shopping-items {
	margin-top: 10px;
}
.header-main .header-right .menu-cart .cart-box .shopping-items span {
	font-size: 17px;
	font-weight: 600;
	color: var(--blackColor);
	text-transform: capitalize;
}
.header-main .header-right .menu-cart .cart-box .cart-button {
	margin-top: 20px;
}
.header-main .header-right .menu-cart .cart-box .cart-button .theme-btn {
	padding: 16px 28px;
	font-size: 14px;
}
.header-main .header-right .menu-cart .cart-icon {
	position: relative;
}
.header-main .header-right .menu-cart .cart-icon span {
	position: absolute;
	top: -7px;
	right: -8px;
	width: 16px;
	line-height: 16px;
	height: 16px;
	border-radius: 16px;
	background-color: var(--blackColor);
	color: var(--whiteColor);
	font-size: 12px;
	text-align: center;
	font-weight: 500;
}
.header-main .header-right .menu-cart .cart-icon i {
	color: var(--primaryColor);
}
.header-main .header-right .menu-cart:hover .cart-box {
	transform: rotateX(0deg);
	visibility: visible;
}

.header-1 {
	position: relative;
	z-index: 99;
	overflow-x: clip;
	padding: 20px 0px;
}

.header-2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	background-color: transparent;
	border-bottom: 1px solid var(--border2);
	padding: 0 60px;
}
.header-2.foodking-hide-adminbar {
	top: 33px;
}
.header-2.foodking-hide-adminbar.custom-sticky {
	top: 0;
}
@media (max-width: 1399px) {
	.header-2 {
		padding: 0;
	}
}
.header-2 .header-main .header-left .logo-2 {
	display: none;
}
.header-2 .header-main .header-right {
	gap: 35px;
}
.header-2 .header-main .header-right .mean__menu-wrapper {
	margin-right: 50px;
}
@media (max-width: 1399px) {
	.header-2 .header-main .header-right .mean__menu-wrapper {
		margin-right: 0;
	}
}
@media (max-width: 1399px) {
	.header-2 .header-main .header-right .mean__menu-wrapper .main-menu ul li {
		margin-inline-end: 20px;
	}
}
.header-2 .header-main .header-right .mean__menu-wrapper .main-menu ul li a {
	color: var(--whiteColor) !important;
}
.header-2 .menu-item-has-children:after {
	color: var(--whiteColor);
}
.header-2 .header-main .header-right .mean__menu-wrapper .main-menu ul li .sub-menu a {
	color: var(--blackColor) !important;
}
.header-2 .header-main .header-right .mean__menu-wrapper .main-menu ul li .sub-menu a:hover {
	color: var(--whiteColor) !important;
}
.header-2.custom-sticky .menu-item-has-children:after {
	color: var(--blackColor);
}
.header-2.custom-sticky .header-main .header-right .mean__menu-wrapper .main-menu ul li a {
	color: var(--blackColor) !important;
}
.header-2 .header-main .header-right .mean__menu-wrapper .main-menu ul li a:hover {
	color: var(--mainColor) !important;
}
.header-2 .header-main .header-right .mean__menu-wrapper .main-menu ul li:hover > a {
	color: var(--mainColor);
}
.header-2 .header-main .header-right .mean__menu-wrapper .main-menu ul li .submenu li a {
	color: var(--blackColor);
}
.header-2 .header-main .header-right .mean__menu-wrapper .main-menu ul li .submenu li a:hover {
	color: var(--whiteColor) !important;
}

@media (max-width: 991px) {
	.header-2 .header-main .header-right .header-button {
		display: none;
	}
}
.header-2 .header-main .header-right .header-button .theme-btn {
	padding: 16px 40px;
}
.header-2 .header-main .header-right .search-icon i {
	color: var(--whiteColor) !important;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.header-2.custom-sticky .header-main .header-right .search-icon i {
	color: var(--secondaryColor) !important;
}
.header-2 .header-main .header-right .menu-cart .cart-icon i {
	color: var(--whiteColor) !important;
}
.header-2.custom-sticky .header-main .header-right .menu-cart .cart-icon i {
	color: var(--secondaryColor) !important;
}
.header-2 .header-main .header-right .menu-cart .cart-icon::before {
	display: none;
}
.header-2 .header-main .header-right .sidebar__toggle {
	margin-left: 30px;
}
@media (max-width: 1399px) {
	.header-2 .header-main .header-right .sidebar__toggle {
		margin-left: 0;
	}
}
.header-2 .header-main .header-right .sidebar__toggle .bar-2 {
	display: none !important;
}
.header-2 .header-main .header-right .sidebar__toggle .bar-1 {
	display: block !important;
}
.header-2.custom-sticky .header-main .header-right .sidebar__toggle .bar-2 {
	display: block !important;
}
.header-2.custom-sticky .header-main .header-right .sidebar__toggle .bar-1 {
	display: none !important;
}

.sidebar__toggle {
	cursor: pointer;
}
.sidebar__toggle .header-bar {
	position: relative;
	width: 31px;
	height: 18px;
}
.sidebar__toggle .header-bar span {
	position: absolute;
	width: 100%;
	height: 2px;
	display: inline-block;
	transition: all 0.3s;
	left: 0;
	background: var(--blackColor);
	overflow: hidden;
}
.sidebar__toggle .header-bar span:first-child {
	top: 0;
	background: var(--blackColor);
	left: 16px;
	width: 15px;
}
.sidebar__toggle .header-bar span:nth-child(2) {
	top: 44%;
	background: var(--blackColor);
	width: 30px;
}
.sidebar__toggle .header-bar span:last-child {
	bottom: 0;
	background: var(--blackColor);
	width: 15px;
}
.sidebar__toggle .header-bar.active span:first-child {
	transform: rotate(45deg) translate(3px, 9px);
}
.sidebar__toggle .header-bar.active span:nth-child(2) {
	opacity: 0;
}
.sidebar__toggle .header-bar.active span:last-child {
	transform: rotate(-45deg) translate(3px, -9px);
}
.sidebar__toggle .header-bar:hover {
	cursor: pointer;
}

.custom-sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	transition: all 0.9s;
	background-color: var(--whiteColor);
	box-shadow: 0px 0px 62px 0px rgba(0, 22, 89, 0.17);
}
@media (min-width: 991px) {
	.header-1 .header-main {
		padding: 0px;
	}
}
.header-2 .header-main .header-left .logo-2 {
	display: block !important;
}
.header-2 .header-main .header-left .logo {
	display: none !important;
}
.header-2.custom-sticky .header-main .header-left .logo-2 {
	display: none !important;
}
.header-2.custom-sticky .header-main .header-left .logo {
	display: block !important;
}
.header-2 .header-main .header-right .mean__menu-wrapper .main-menu ul li a {
	color: var(--blackColor);
}
.header-2 .header-main .header-right .mean__menu-wrapper .main-menu ul li a:hover {
	color: var(--secondaryColor) !important;
}
.header-2 .header-main .header-right .mean__menu-wrapper .main-menu ul li:hover > a {
	color: var(--secondaryColor);
}
.header-2 .header-main .header-right .mean__menu-wrapper .main-menu ul li .submenu li a {
	color: var(--blackColor);
}
.header-2 .header-main .header-right .mean__menu-wrapper .main-menu ul li .submenu li a:hover {
	color: var(--whiteColor) !important;
}
.header-2 .header-main .header-right .search-icon i {
	color: var(--secondaryColor);
}
.header-2 .header-main .header-right .header-button .theme-btn {
	background-color: var(--secondaryColor) !important;
	color: var(--whiteColor);
}
.header-2 .header-main .header-right .header-button .theme-btn:hover::before {
	background-color: var(--primaryColor);
}
.header-2 .header-main .header-right .menu-cart .cart-icon i {
	color: var(--secondaryColor);
}
.header-2 .header-main .header-right .sidebar__toggle .bar-2 {
	display: block;
}
.header-2 .header-main .header-right .sidebar__toggle .bar-1 {
	display: none;
}

.offcanvas__info {
	background: var(--whiteColor) none repeat scroll 0 0;
	border-left: 2px solid var(--secondaryColor);
	position: fixed;
	right: 0;
	top: 0;
	width: 400px;
	height: 100%;
	-webkit-transform: translateX(calc(100% + 80px));
	-moz-transform: translateX(calc(100% + 80px));
	-ms-transform: translateX(calc(100% + 80px));
	-o-transform: translateX(calc(100% + 80px));
	transform: translateX(calc(100% + 80px));
	-webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	-moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	z-index: 999;
	overflow-y: scroll;
	overscroll-behavior-y: contain;
	scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
	display: none;
}

.offcanvas__info.info-open {
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

.offcanvas__logo a img {
	width: 150px;
}

.offcanvas__wrapper {
	position: relative;
	height: 100%;
	padding: 30px 30px;
	padding-top: 60px;
}
.offcanvas__wrapper .offcanvas__content .text {
	color: var(--textColor);
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area {
	margin-top: 30px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items {
	display: flex;
	align-items: center;
	gap: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items:not(:last-child) {
	margin-bottom: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items .offcanvas-image {
	width: 100px;
	height: 100px;
	overflow: hidden;
	border-radius: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--secondaryColor);
	position: relative;
	z-index: 9;
	cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
	color: var(--whiteColor);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
	margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
	margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
	margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
	margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
	color: var(--secondaryColor);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
	width: 100%;
	padding: 16px 40px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
	margin-top: 30px;
	gap: 10px;
	list-style: none;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	font-size: 16px;
	display: block;
	background: transparent;
	color: var(--blackColor);
	border-radius: 50%;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	text-align: center;
	border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
	background-color: var(--secondaryColor);
	color: var(--whiteColor);
}

.offcanvas__overlay {
	position: fixed;
	height: 100%;
	width: 100%;
	background: #151515;
	z-index: 900;
	top: 0;
	opacity: 0;
	visibility: hidden;
	right: 0;
}

.offcanvas__overlay.overlay-open {
	opacity: 0.8;
	visibility: visible;
}

@media (max-width: 450px) {
	.offcanvas__info {
		width: 300px;
	}
}
@media (max-width: 575px) {
	.offcanvas__wrapper {
		padding: 20px;
		padding-top: 60px;
	}
}
.breadcrumb-wrapper .page-heading {
	position: relative;
	padding: 120px 0;
}
@media (max-width: 991px) {
	.breadcrumb-wrapper .page-heading {
		padding: 80px 0;
	}

	.admin-bar #header-sticky.custom-sticky {
		padding-top: 20px;
	}
}
.breadcrumb-wrapper .page-heading h1 {
	color: var(--whiteColor);
	font-size: 60px;
	position: relative;
	z-index: 9;
}
@media (max-width: 991px) {
	.breadcrumb-wrapper .page-heading h1 {
		font-size: 40px;
	}
}
@media (max-width: 575px) {
	.breadcrumb-wrapper .page-heading h1 {
		font-size: 30px;
	}
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	gap: 10px;
	word-wrap: break-word;
}
@media (max-width: 991px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items {
		margin-top: 15px;
		display: block;
	}
	.breadcrumb-items a {
		padding-right: 17px !important;
	}
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
	font-size: 18px;
	color: var(--secondaryColor);
	font-weight: 500;
	text-transform: capitalize;
}
@media (max-width: 991px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items li {
		font-size: 16px;
	}
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
	color: var(--secondaryColor);
	transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
	color: var(--primaryColor);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
	font-size: 20px;
	color: var(--secondaryColor);
}
@media (max-width: 575px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
		font-size: 17px;
	}
}
.breadcrumb-wrapper.error-page {
	height: 100vh;
}
.breadcrumb-wrapper.error-page .page-heading {
	padding: 250px 0;
}
.breadcrumb-wrapper.error-page .page-heading h1 {
	font-size: 180px;
	color: var(--whiteColor);
	text-transform: capitalize;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: var(--whiteColor);
	-webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
	.breadcrumb-wrapper.error-page .page-heading h1 {
		font-size: 120px;
	}
}
@media (max-width: 575px) {
	.breadcrumb-wrapper.error-page .page-heading h1 {
		font-size: 80px;
	}
}
.breadcrumb-wrapper.error-page .page-heading h3 {
	color: var(--whiteColor);
}
.breadcrumb-wrapper.coming-page {
	height: 100vh;
}
.breadcrumb-wrapper.coming-page .page-heading ul {
	display: flex;
	align-items: center;
	gap: 30px;
	max-width: 650px;
	justify-content: center;
	margin: 30px auto;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper.coming-page .page-heading ul {
		flex-wrap: wrap;
	}
}
.breadcrumb-wrapper.coming-page .page-heading ul li span {
	font-size: 42px;
	color: var(--whiteColor);
	width: 120px;
	height: 120px;
	line-height: 120px;
	border-radius: 50%;
	border: 3px solid var(--border2);
	display: inline-block;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper.coming-page .page-heading ul li span {
		width: 80px;
		height: 80px;
		line-height: 80px;
		font-size: 32px;
	}
}
.breadcrumb-wrapper.coming-page .page-heading ul li p {
	color: var(--whiteColor);
	margin-top: 10px;
	text-transform: capitalize;
}
.breadcrumb-wrapper.coming-page .page-heading .form {
	position: relative;
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	margin-top: 50px;
	overflow: hidden;
}
.breadcrumb-wrapper.coming-page .page-heading .form input {
	color: var(--textColor);
	width: 100%;
	padding: 19px 35% 19px 30px;
	border: none;
	outline: none;
	text-transform: capitalize;
	font-size: 14px;
}
.breadcrumb-wrapper.coming-page .page-heading .form .button-area {
	position: absolute;
	top: 0;
	right: 0;
}
.breadcrumb-wrapper.coming-page .page-heading .form .button-area .theme-btn {
	padding: 25px 45px;
}
@media (max-width: 575px) {
	.breadcrumb-wrapper.coming-page .page-heading h1 {
		font-size: 36px;
	}
}

.error-content h2 {
	font-weight: 700;
	font-size: 320px;
}
@media (max-width: 1199px) {
	.error-content h2 {
		font-size: 300px;
	}
}
@media (max-width: 991px) {
	.error-content h2 {
		font-size: 200px;
	}
}
@media (max-width: 575px) {
	.error-content h2 {
		font-size: 110px;
	}
}
.error-content h3 {
	font-weight: 700;
}

.mean-container .mean-nav {
	background: none;
	margin-top: 0;
}

.mean-container .mean-bar {
	padding: 0;
	min-height: auto;
	background: none;
}

.mean-container .mean-nav > ul {
	padding: 0;
	margin: 0;
	width: 100%;
	list-style-type: none;
	display: block !important;
}
.mean-container .mean-nav > ul .homemenu {
	position: relative;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb {
	position: relative;
	width: 240px;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	transform: scale(1, 0);
	transition: transform 800ms ease, opacity 600ms linear;
	transform-origin: bottom center;
	opacity: 0;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn {
	padding: 20px 30px;
	color: var(--whiteColor);
	width: initial;
}
@media (max-width: 991px) {
	.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn {
		padding: 16px 30px;
		font-size: 15px;
	}
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
	color: var(--whiteColor) !important;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb::before {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
	background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	content: "";
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover::before {
	visibility: visible;
	opacity: 1;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .demo-button {
	transform: scale(1, 1);
	opacity: 1;
	transform-origin: top center;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .homemenu-btn {
	opacity: 1;
	visibility: visible;
	bottom: 50%;
	transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb img {
	width: 100%;
}
.mean-container .mean-nav > ul .homemenu .homemenu-content .homemenu-title a {
	border: none;
	font-size: 18px;
	padding: 10px 20%;
}

.mean-container .mean-nav ul li a {
	width: 100%;
	padding: 10px 0;
	color: var(--blackColor);
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
}
.mean-container .mean-nav ul li a:hover {
	color: var(--secondaryColor);
}

.mean-container .mean-nav ul li a:last-child {
	border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
	color: var(--secondaryColor);
}

.mean-container .mean-nav ul li a.mean-expand {
	margin-top: 5px;
	padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
	display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
	display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
	border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
	height: 200px;
	width: 100%;
	padding: 0;
	border-top: 0;
	margin-bottom: 20px;
}

.hero-section {
	position: relative;
}
.hero-section .swiper-dot {
	position: absolute;
	left: 50%;
	bottom: 40px;
	z-index: 9;
	transform: translateX(-50%);
}

.hero-1 {
	position: relative;
	z-index: 1;
	padding: 200px 0;
}
@media (max-width: 1199px) {
	.hero-1 {
		padding: 130px 0;
	}
}
@media (max-width: 991px) {
	.hero-1 {
		padding: 100px 0;
	}
}
@media (max-width: 767px) {
	.hero-1 {
		padding: 90px 0;
	}
}
.hero-1 .chilii-shape {
	position: absolute;
	left: 0;
	top: 5%;
}
@media (max-width: 1199px) {
	.hero-1 .chilii-shape {
		display: none;
	}
}
.hero-1 .fire-shape {
	position: absolute;
	bottom: 0;
	left: 0;
}
@media (max-width: 1199px) {
	.hero-1 .fire-shape {
		display: none;
	}
}
.hero-1 .chilii-shape-2 {
	position: absolute;
	right: 0;
	top: 5%;
}
@media (max-width: 767px) {
	.hero-1 .chilii-shape-2 {
		display: none;
	}
}
.hero-1 .chilii-shape-3 {
	position: absolute;
	right: 0;
	bottom: 0;
}
@media (max-width: 575px) {
	.hero-1 .chilii-shape-3 {
		z-index: -1;
		opacity: 0.5;
	}
}
.hero-1 .offer-shape {
	position: absolute;
	left: 40%;
	top: 5%;
}
@media (max-width: 1399px) {
	.hero-1 .offer-shape {
		top: 0;
	}
}
@media (max-width: 991px) {
	.hero-1 .offer-shape {
		top: 280px;
		left: 5%;
	}
	.hero-1 .offer-shape img {
		width: 70%;
	}
}
@media (max-width: 575px) {
	.hero-1 .offer-shape {
		left: -3%;
	}
	.hero-1 .offer-shape img {
		width: 50%;
	}
}
.hero-1 .hero-back-title {
	font-size: 300px;
	line-height: 50%;
	color: rgba(255, 255, 255, 0.1019607843);
	letter-spacing: -12px;
	opacity: 0.69;
	position: absolute;
	bottom: 30%;
	left: 16%;
	z-index: -1;
}
@media (max-width: 1399px) {
	.hero-1 .hero-back-title {
		left: 10%;
		font-size: 270px;
	}
}
@media (max-width: 1199px) {
	.hero-1 .hero-back-title {
		display: none;
	}
}
.hero-1 .hero-content {
	position: relative;
	z-index: 99;
}
@media (max-width: 991px) {
	.hero-1 .hero-content {
		text-align: center;
	}
}
.hero-1 .hero-content p {
	font-weight: 600;
	color: var(--secondaryColor);
	text-transform: capitalize;
	font-size: 20px;
}
@media (max-width: 767px) {
	.hero-1 .hero-content p {
		margin-bottom: 5px;
	}
}
.hero-1 .hero-content h1 {
	color: var(--whiteColor);
}
.hero-1 .hero-content h1 span {
	position: relative;
}
.hero-1 .hero-content h1 span::before {
	position: absolute;
	right: 0;
	content: "";
	width: 83px;
	height: 75px;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 9;
	right: -70px;
	background-image: url("../../assets/img/icon/icon.png");
}
@media (max-width: 991px) {
	.hero-1 .hero-content h1 span::before {
		display: none;
	}
}
.hero-1 .hero-content .hero-button {
	margin-top: 35px;
}
.hero-1 .chiken-image {
	width: 760px;
}
.hero-1 .chiken-image img {
	width: 100%;
	height: 100%;
}
@media (max-width: 1399px) {
	.hero-1 .chiken-image {
		max-width: 750px;
		width: initial;
	}
}
@media (max-width: 991px) {
	.hero-1 .chiken-image {
		text-align: center !important;
	}
	.hero-1 .chiken-image img {
		width: 75%;
	}
}
@media (max-width: 767px) {
	.hero-1 .chiken-image {
		width: 380px;
		text-align: center;
		margin: 0 auto;
	}
}

.hero-2 {
	position: relative;
	z-index: 1;
	padding: 100px 0;
}
@media (max-width: 767px) {
	.hero-2 {
		padding: 80px 0;
	}
}
.hero-2 .vagetable-shape {
	position: absolute;
	right: 0;
	top: 0;
}
.hero-2 .chili-shape {
	position: absolute;
	right: 12%;
	top: 13%;
	z-index: -1;
}
.hero-2 .left-shape {
	position: absolute;
	top: 0;
	left: 0;
}
.hero-2 .hero-content {
	position: relative;
	z-index: 99;
}
@media (max-width: 991px) {
	.hero-2 .hero-content {
		text-align: center;
	}
}
.hero-2 .hero-content p {
	font-weight: 600;
	color: var(--secondaryColor);
	text-transform: capitalize;
	font-size: 20px;
}
.hero-2 .hero-content h1 {
	color: var(--whiteColor);
	font-size: 100px;
}
@media (max-width: 1399px) {
	.hero-2 .hero-content h1 {
		font-size: 90px;
	}
}
@media (max-width: 1199px) {
	.hero-2 .hero-content h1 {
		font-size: 80px;
	}
}
@media (max-width: 991px) {
	.hero-2 .hero-content h1 {
		font-size: 72px;
	}
}
@media (max-width: 575px) {
	.hero-2 .hero-content h1 {
		font-size: 60px;
	}
}
.hero-2 .hero-content .price-text {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-top: 30px;
}
@media (max-width: 991px) {
	.hero-2 .hero-content .price-text {
		justify-content: center;
		margin-top: 15px;
	}
}
.hero-2 .hero-content .price-text h3 {
	font-size: 28px;
	color: var(--whiteColor);
}
.hero-2 .hero-content .price-text h2 {
	font-size: 55px;
	color: var(--whiteColor);
}
.hero-2 .hero-content .hero-button {
	margin-top: 35px;
}
@media (max-width: 575px) {
	.hero-2 .hero-content .hero-button {
		margin-top: 15px;
	}
}
.hero-2 .burger-image {
	position: relative;
}
.hero-2 .burger-image img {
	width: 100%;
	height: 100%;
}
@media (max-width: 991px) {
	.hero-2 .burger-image {
		width: 80%;
		margin: 0px auto;
		text-align: center;
		padding-top: 20px;
	}
	.hero-2 .burger-image img {
		text-align: center;
		width: 80%;
	}
}
.hero-2 .burger-image .burger-text {
	position: absolute;
	bottom: 20%;
	left: -13%;
}
@media (max-width: 767px) {
	.hero-2 .burger-image .burger-text {
		display: none;
	}
}
.hero-2 .burger-image .hero-text {
	position: absolute;
	top: -30px;
	left: 30%;
}
@media (max-width: 575px) {
	.hero-2 .burger-image .hero-text {
		display: none;
	}
}

.hero-3 {
	position: relative;
}
.hero-3 .frame-shape {
	position: absolute;
	top: 20%;
	left: 60px;
}
@media (max-width: 991px) {
	.hero-3 .frame-shape {
		display: none;
	}
}
.hero-3 .frame-shape-2 {
	position: absolute;
	bottom: 13%;
	left: 2%;
}
@media (max-width: 991px) {
	.hero-3 .frame-shape-2 {
		display: none;
	}
}
.hero-3 .frame-shape-3 {
	position: absolute;
	top: 15%;
	left: 47%;
}
@media (max-width: 991px) {
	.hero-3 .frame-shape-3 {
		display: none;
	}
}
.hero-3 .frame-shape-4 {
	position: absolute;
	bottom: 5%;
	left: 40%;
}
@media (max-width: 991px) {
	.hero-3 .frame-shape-4 {
		display: none;
	}
}
.hero-3 .frame-shape-5 {
	position: absolute;
	top: 20%;
	right: 70px;
}
@media (max-width: 991px) {
	.hero-3 .frame-shape-5 {
		display: none;
	}
}
.hero-3 .frame-shape-6 {
	position: absolute;
	bottom: 13%;
	right: 2%;
}
@media (max-width: 991px) {
	.hero-3 .frame-shape-6 {
		display: none;
	}
}
.hero-3 .hero-content {
	padding-top: 150px;
	padding-bottom: 120px;
	position: relative;
	z-index: 9;
}
@media (max-width: 991px) {
	.hero-3 .hero-content {
		text-align: center;
		padding-bottom: 0;
		padding-top: 115px;
	}
}
@media (max-width: 575px) {
	.hero-3 .hero-content {
		padding-top: 110px;
	}
}
.hero-3 .hero-content h1 {
	font-size: 150px;
	color: var(--whiteColor);
	margin-bottom: 20px;
}
@media (max-width: 1399px) {
	.hero-3 .hero-content h1 {
		font-size: 130px;
	}
}
@media (max-width: 1199px) {
	.hero-3 .hero-content h1 {
		font-size: 100px;
	}
}
@media (max-width: 991px) {
	.hero-3 .hero-content h1 {
		font-size: 72px;
	}
}
@media (max-width: 575px) {
	.hero-3 .hero-content h1 {
		font-size: 50px;
	}
}
.hero-3 .hero-content h4 {
	font-size: 24px;
	color: var(--whiteColor);
	text-transform: capitalize;
}
@media (max-width: 575px) {
	.hero-3 .hero-content h4 {
		font-size: 22px;
	}
}
.hero-3 .hero-content .hero-button {
	margin-top: 40px;
}
@media (max-width: 575px) {
	.hero-3 .hero-content .hero-button {
		margin-top: 30px;
	}
}
.hero-3 .pizza-image {
	margin-left: 40px;
	margin-top: 50px;
	margin-bottom: -210px;
}
.hero-3 .pizza-image img {
	animation: cir36 25s infinite linear;
}
@media (max-width: 1199px) {
	.hero-3 .pizza-image {
		margin-top: 0;
		margin-bottom: 0;
	}
}
@media (max-width: 991px) {
	.hero-3 .pizza-image {
		margin-left: 0;
		padding-bottom: 80px;
		text-align: center;
	}
	.hero-3 .pizza-image img {
		width: 80% !important;
	}
}
@media (max-width: 767px) {
	.hero-3 .pizza-image {
		padding-bottom: 70px;
	}
}
@media (max-width: 575px) {
	.hero-3 .pizza-image {
		margin-top: 0;
		margin-bottom: 0;
		width: 300px;
		margin: 0 auto;
		padding-bottom: 50px;
	}
}
.hero-3 .pizza-image img {
	width: 100%;
	height: 100%;
}

.hero-section-3 {
	position: relative;
}
.hero-section-3 .swiper {
	overflow: initial !important;
}
.hero-section-3 .pegi-wrp {
	position: absolute;
	bottom: 4%;
	left: 17%;
	z-index: 9;
}
@media (max-width: 1399px) {
	.hero-section-3 .pegi-wrp {
		display: none;
	}
}
.hero-section-3 .pegi-wrp .pegi-number {
	font-size: 24px;
	color: var(--whiteColor);
	position: relative;
}
.hero-section-3 .pegi-wrp .pegi-number::before {
	position: absolute;
	content: "";
	bottom: 12px;
	left: 40px;
	width: 80px;
	height: 1px;
	background-color: var(--whiteColor);
}
.hero-section-3 .pegi-wrp .pegi-number span {
	margin-right: 140px;
}
.hero-section-3 .pegi-wrp .pegi-number span:not(:last-child) {
	color: var(--whiteColor);
}

.food-category-section {
	position: relative;
}
.food-category-section .tomato-shape {
	position: absolute;
	left: 0;
}
@media (max-width: 767px) {
	.food-category-section .tomato-shape {
		display: none;
	}
}
.food-category-section .burger-shape-2 {
	position: absolute;
	bottom: 0;
	left: 0;
}
.food-category-section .pizza-shape {
	position: absolute;
	bottom: 30%;
	left: 3%;
}
@media (max-width: 1199px) {
	.food-category-section .pizza-shape {
		display: none;
	}
}
.food-category-section .frame-shape {
	position: absolute;
	top: 10%;
	right: 5%;
	opacity: 0.4;
}
@media (max-width: 1199px) {
	.food-category-section .frame-shape {
		display: none;
	}
}
.food-category-section .frame-shape-2 {
	position: absolute;
	bottom: 5%;
	right: 5%;
}
@media (max-width: 1199px) {
	.food-category-section .frame-shape-2 {
		display: none;
	}
}

.catagory-product-card {
	background-color: var(--whiteColor);
	padding: 20px 30px 50px;
	position: relative;
	border-radius: 14px;
	margin-top: 30px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
.catagory-product-card h5 {
	font-size: 19px;
	color: var(--whiteColor);
	position: relative;
	z-index: 9;
}
.catagory-product-card::before {
	position: absolute;
	left: 0;
	top: 0px;
	height: 100%;
	width: 100%;
	background-color: var(--secondaryColor);
	content: "";
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	z-index: 9;
}
.catagory-product-card .catagory-product-image {
	position: relative;
	z-index: 9;
	height: 245px;
	margin-bottom: 30px;
}

.catagory-product-card .catagory-product-image .burger-shape {
	position: absolute;
	top: 30px;
	left: 0;
	z-index: -1;
	opacity: 0;
	transition: all 0.4s ease-in-out;
	visibility: hidden;
}
.catagory-product-card .catagory-product-content {
	position: relative;
	margin-top: 10px;
	padding-top: 25px;
	z-index: 9;
}
@media (max-width: 575px) {
	.catagory-product-card .catagory-product-content {
		padding-top: 15px;
	}
}
.catagory-product-card .catagory-product-content::before {
	position: absolute;
	top: 4px;
	content: "";
	left: 40%;
	width: 53px;
	height: 2px;
	background-color: var(--secondaryColor);
}
@media (max-width: 767px) {
	.catagory-product-card .catagory-product-content::before {
		left: 44%;
	}
}
@media (max-width: 575px) {
	.catagory-product-card .catagory-product-content::before {
		left: 42%;
	}
}
.catagory-product-card .catagory-product-content h3 {
	font-size: 28px;
	margin-bottom: 8px;
	margin-top: -60px;
	transition: all 0.3s ease-in-out;
}
.catagory-product-card .catagory-product-content p {
	font-weight: 600;
	color: var(--secondaryColor);
	text-transform: capitalize;
	z-index: 9;
	position: relative;
	transition: all 0.3s ease-in-out;
}
.catagory-product-card .catagory-product-content .catagory-product-icon {
	width: 125px;
	text-align: center;
	margin: 0 auto;
	opacity: 1;
	visibility: visible;
}
.catagory-product-card:hover {
	background-color: var(--mainColor);
}

.catagory-product-card:hover::before {
	opacity: 1;
	visibility: visible;
}
.catagory-product-card:hover .catagory-product-image {
	overflow: hidden;
}
.catagory-product-card:hover .catagory-product-image .decor-leaf {
	opacity: 1;
	transform: translate(0);
	right: -15px;
	visibility: visible;
}
@media (max-width: 767px) {
	.catagory-product-card:hover .catagory-product-image .decor-leaf {
		right: 50px;
	}
}
@media (max-width: 575px) {
	.catagory-product-card:hover .catagory-product-image .decor-leaf {
		right: 25px;
	}
}
.catagory-product-card:hover .catagory-product-image .decor-leaf-2 {
	opacity: 1;
	left: -20px;
	visibility: visible;
}
.catagory-product-card:hover .catagory-product-image .burger-shape {
	opacity: 1;
	visibility: visible;
}
.catagory-product-card:hover .catagory-product-content::before {
	background-color: var(--whiteColor);
}
.catagory-product-card:hover .catagory-product-content h3 a, .catagory-product-card:hover .catagory-product-content p {
	color: var(--whiteColor);
}
.catagory-product-card-2 {
	margin-top: 30px;
	padding: 40px 30px;
	position: relative;
}
.catagory-product-card-2 .icon {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 5px;
	background-color: var(--blackColor);
	text-align: center;
	cursor: pointer;
	z-index: 9;
	transition: all 0.4s ease-in-out;
}
.catagory-product-card-2 .icon .yith-wcwl-add-button i {
	color: var(--whiteColor);
	transition: all 0.4s ease-in-out;
	position: relative;
	left: -44px;
	top: 42px;
}
.catagory-product-card-2 .icon .yith-wcwl-add-button i::before {
	position: absolute;
	content: '\f004';
	top: -15px;
	left: -9px;
}
.catagory-product-card-2 .icon a{
	display: block;
	white-space: nowrap;
	position: relative;
	left: 50px;
	bottom: 52px;
}
.catagory-product-card-2 .icon span {
	display: none;
}
.catagory-product-card-2 .icon .feedback {
	display: block !important;
	font-size: 0;
}
.catagory-product-card-2 .icon .on-first-load .feedback i{
	font-size: 18px !important;
	left: 4px;
	position: relative;
	left: 4px;
	bottom: 2px;
}
.catagory-product-card-2 .icon:hover {
	background-color: var(--whiteColor);
}
.catagory-product-card-2 .icon:hover i {
	color: var(--mainColor);
}
@media (max-width: 575px) {
	.catagory-product-card-2 {
		padding: 30px;
	}
}
.catagory-product-card-2::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 65%;
	border-radius: 14px;
	background-color: var(--whiteColor);
	transition: all 0.35s ease-in-out;
}
@media (max-width: 575px) {
	.catagory-product-card-2::before {
		height: 60%;
	}
}
.catagory-product-card-2 .catagory-product-image {
	position: relative;
	z-index: 1;
	/*     height: 245px; */
}
.catagory-product-card-2 .catagory-product-image img {
	object-fit: contain;
}
.catagory-product-card-2 .catagory-product-content {
	position: relative;
	z-index: 9;
}
@media (max-width: 575px) {
	.catagory-product-card-2 .catagory-product-content {
		margin-top: 0;
	}
}
.catagory-product-card-2 .catagory-product-content .catagory-button {
	margin-bottom: 20px;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}
.catagory-product-card-2 .catagory-product-content .catagory-button .theme-btn-2 {
	border-radius: 30px;
	color: var(--whiteColor) !important;
	background-color: var(--blackColor);
}
.catagory-product-card-2 .catagory-product-content .catagory-button .theme-btn-2::before {
	border-radius: 30px;
}
.catagory-product-card-2 .catagory-product-content .info-price {
	gap: 10px;
	margin-bottom: 10px;
}
.catagory-product-card-2 .catagory-product-content .info-price p {
	font-size: 16px;
	font-weight: 600;
	background-color: var(--mainColor);
	padding: 4px 6px;
	border-radius: 3px;
	color: var(--blackColor);
}
.catagory-product-card-2 .catagory-product-content .info-price bdi {
	color: var(--textColor);
}
.catagory-product-card-2 .catagory-product-content .info-price ins {
	font-size: 16px;
	font-weight: 600;
	color: var(--textColor) !important;
	transition: all 0.4s ease-in-out;
	text-decoration: none !important;
}
.catagory-product-card-2 .catagory-product-content h4 a:hover {
	color: var(--whiteColor);
}
.catagory-product-card-2 .catagory-product-content .star {
	margin-top: 15px;
}
.catagory-product-card-2 .catagory-product-content .star .star-rating{
	margin: auto;
	float: unset;
}
.catagory-product-card-2 .catagory-product-content .star span {
	font-size: 17px;
	color: var(--mainColor);
	transition: all 0.4s ease-in-out;
}
.catagory-product-card-2:hover::before {
	height: 100%;
	background-color: var(--mainColor);
	background-image: url(../../assets/img/shape/catagory-card-shape.jpg);
}
.catagory-product-card-2:hover .catagory-product-content .catagory-button {
	opacity: 1;
}
.catagory-product-card-2:hover .catagory-product-content p {
	background-color: var(--whiteColor);
}
.catagory-product-card-2:hover .catagory-product-content span {
	color: var(--whiteColor);
}
.catagory-product-card-2:hover .catagory-product-content span.woocommerce-Price-currencySymbol {
	color: var(--textColor);
}
.catagory-product-card-2:hover .catagory-product-content .star span {
	color: var(--whiteColor);
}
.catagory-product-card-2.active::before {
	height: 100%;
	background-color: var(--mainColor);
	background-image: url(../../assets/img/shape/catagory-card-shape.jpg);
}
.catagory-product-card-2.active .icon {
	background-color: var(--whiteColor);
}
.catagory-product-card-2.active .icon i {
	color: var(--mainColor);
}
.catagory-product-card-2.active .catagory-product-content .catagory-button {
	opacity: 1;
}
.catagory-product-card-2.active .catagory-product-content p {
	background-color: var(--whiteColor);
}
.catagory-product-card-2.active .catagory-product-content span {
	color: var(--whiteColor);
}
.catagory-product-card-2.active .catagory-product-content .star span {
	color: var(--whiteColor);
}

.food-catagory-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1600px) {
	.food-catagory-wrapper {
		grid-template-columns: repeat(4, 5fr);
	}
}
@media (max-width: 1399px) {
	.food-catagory-wrapper {
		grid-template-columns: repeat(4, 4fr);
	}
}
@media (max-width: 1199px) {
	.food-catagory-wrapper {
		grid-template-columns: repeat(3, 3fr);
		border-bottom: none;
	}
}
@media (max-width: 991px) {
	.food-catagory-wrapper {
		grid-template-columns: repeat(2, 2fr);
	}
}
@media (max-width: 767px) {
	.food-catagory-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
}
.food-catagory-wrapper .catagory-product-card-3 {
	padding: 100px 30px;
	display: flex;
	align-items: center;
}
@media (max-width: 1600px) {
	.food-catagory-wrapper .catagory-product-card-3 {
		padding: 100px 20px;
	}
}
@media (max-width: 1199px) {
	.food-catagory-wrapper .catagory-product-card-3 {
		border: none;
		padding: 0 40px;
		margin-top: 80px;
	}
}
@media (max-width: 767px) {
	.food-catagory-wrapper .catagory-product-card-3 {
		border: none;
		padding: 0 40px;
		margin-top: 60px;
	}
}
.food-catagory-wrapper .catagory-product-card-3 .food-image {
	position: relative;
	margin-right: 10px;
}
.food-catagory-wrapper .catagory-product-card-3 .food-image .box-text {
	width: 90px;
	height: 90px;
	line-height: 90px;
	text-align: center;
	position: absolute;
	top: -35px;
	left: 0;
	display: none;
}
@media (max-width: 991px) {
	.food-catagory-wrapper .catagory-product-card-3 .food-image .box-text {
		top: -25px;
		left: 55px;
	}
}
@media (max-width: 575px) {
	.food-catagory-wrapper .catagory-product-card-3 .food-image .box-text {
		width: 70px;
		height: 70px;
		line-height: 70px;
	}
}
.food-catagory-wrapper .catagory-product-card-3 .food-image .box-text span {
	font-size: 30px;
	text-transform: capitalize;
	color: var(--whiteColor);
	font-weight: 600;
}
@media (max-width: 575px) {
	.food-catagory-wrapper .catagory-product-card-3 .food-image .box-text span {
		font-size: 24px;
	}
}
.food-catagory-wrapper .catagory-product-card-3 .food-image .food-title {
	line-height: 1;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: rgba(12, 15, 38, 0.0509803922);
	-webkit-text-fill-color: transparent;
	font-size: 65px;
	font-weight: 400;
	position: absolute;
	bottom: -20px;
	z-index: -1;
	left: 50%;
	transform: translateX(-50%);
}
.food-catagory-wrapper .catagory-product-card-3 .food-content {
	margin-top: 0px;
}
@media (max-width: 575px) {
	.food-catagory-wrapper .catagory-product-card-3 .food-content {
		margin-top: 15px;
	}
}
.food-catagory-wrapper .catagory-product-card-3 .food-content h3 {
	font-size: 30px;
	margin-bottom: 15px;
}
.food-catagory-wrapper .catagory-product-card-3 .food-content h3 a:hover {
	color: var(--secondaryColor);
}
@media (max-width: 575px) {
	.food-catagory-wrapper .catagory-product-card-3 .food-content h3 {
		font-size: 22px;
		margin-bottom: 10px;
	}
}

.shop-list-items {
	display: flex;
	align-items: center;
	background-color: var(--whiteColor);
	border-radius: 14px;
	padding: 40px;
	gap: 20px;
	margin-top: 30px;
}
@media (max-width: 991px) {
	.shop-list-items {
		flex-wrap: wrap;
		justify-content: center;
	}
}
.shop-list-items .shop-image {
	height: 100%;
}
@media (min-width: 992px) {
	.shop-list-items .shop-image {
		max-width: calc(100% - 200px);
		width: 340px;
	}
}
@media (max-width: 1199px) {
	.shop-list-items .shop-image {
		width: 550px;
	}
}
@media (max-width: 991px) {
	.shop-list-items .shop-image {
		text-align: center;
		width: 400px;
	}
}
.shop-list-items .shop-image img {
	object-fit: cover;
	height: 100%;
	border-radius: 18px;
	max-width: 100%;
}
@media (min-width: 1200px) {
	.shop-list-items .shop-content {
		margin-right: 30px;
	}
}
@media (max-width: 991px) {
	.shop-list-items .shop-content {
		text-align: center;
	}
}
.shop-list-items .shop-content .star a {
	color: var(--mainColor);
	font-size: 16px;
	font-weight: 600;
}
.shop-list-items .shop-content .star .discount {
	background-color: var(--mainColor);
	font-weight: 600;
	color: var(--blackColor);
	padding: 5px 6px;
	border-radius: 3px;
	margin-right: 10px;
}

.shop-list-items .shop-content .star span {
	color: var(--mainColor);
	font-size: 18px;
}
.shop-list-items .shop-content h3 {
	font-size: 28px;
	margin-bottom: 10px;
}
.shop-list-items .shop-content h3 a:hover {
	color: var(--primaryColor);
}
.shop-list-items .shop-content h5 {
	color: var(--secondaryColor);
	font-size: 22px;
	font-weight: 600;
	margin-top: 15px;
}
.shop-list-items .shop-content .shop-list-btn {
	margin-top: 30px;
}
.shop-list-items .shop-content .shop-list-btn .theme-btn {
	padding: 14px 50px;
}

.about-wrapper .about-image {
	position: relative;
}
.about-wrapper .about-image img {
	width: 100%;
	height: 100%;
}
@media (max-width: 991px) {
	.about-wrapper .about-image img {
		width: 70%;
	}
}
.about-wrapper .about-image .burger-text {
	position: absolute;
	top: 0;
	left: 0;
	animation: 4s ease 0s infinite alternate forwards running tpswing;
}
.about-wrapper .about-image .price {
	position: absolute;
	left: 10%;
	bottom: 20px;
}
.about-wrapper .about-image .price h2 {
	font-size: 80px;
}
@media (max-width: 575px) {
	.about-wrapper .about-image .price h2 {
		font-size: 50px;
	}
}
.about-wrapper .about-image .since-text {
	padding: 25px 30px;
	background-color: var(--mainColor);
	position: absolute;
	right: 20px;
	bottom: 45px;
	border-radius: 14px;
	transform: rotate(-25.477deg);
	width: initial;
	height: initial;
}
.about-wrapper .about-image .since-text h3 {
	color: var(--whiteColor);
}
.about-wrapper .about-content {
	margin-left: 20px;
}
@media (max-width: 1399px) {
	.about-wrapper .about-content {
		margin-left: 0;
	}
}
@media (max-width: 767px) {
	.about-wrapper .about-content p {
		margin-top: 10px;
	}
}
.about-wrapper .about-content .icon-area {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
	gap: 20px;
}
@media (max-width: 1199px) {
	.about-wrapper .about-content .icon-area {
		flex-wrap: wrap;
		gap: 20px;
	}
}
@media (max-width: 575px) {
	.about-wrapper .about-content .icon-area {
		flex-wrap: wrap;
		justify-content: center;
		gap: 30px;
	}
}
.about-wrapper .about-content .icon-area .icon-items {
	gap: 15px;
}
.about-wrapper .about-content .icon-area .icon-items .icon {
	font-size: 52px;
	color: var(--secondaryColor);
}
.about-wrapper .about-content .icon-area .icon-items .content h4 {
	margin-bottom: 5px;
}
.about-wrapper .about-content .icon-area .icon-items .content p {
	color: var(--blackColor);
}
.about-wrapper .about-content .info-area {
	margin-top: 40px;
	gap: 22px;
	flex-wrap: wrap;
}
.about-wrapper .about-content .info-area .info-content span {
	font-size: 16px;
	font-weight: 600;
	color: var(--secondaryColor);
}
.about-wrapper.style-2 .about-content {
	margin-left: 0;
}
.about-wrapper.style-2 .about-image-2 {
	margin-right: -65%;
	position: relative;
}
@media (max-width: 991px) {
	.about-wrapper.style-2 .about-image-2 {
		margin-right: 0;
	}
}
.about-wrapper.style-2 .about-image-2 img {
	width: 100%;
	height: 100%;
}
.about-wrapper.style-2 .about-image-2 .since-text {
	padding: 25px 30px;
	background-color: var(--primaryColor);
	position: absolute;
	right: 20px;
	bottom: 45px;
	border-radius: 14px;
	transform: rotate(-25.477deg);
	width: initial;
	height: initial;
	position: absolute;
	bottom: 20%;
	right: 20%;
}
.about-wrapper.style-2 .about-image-2 .since-text h3 {
	color: var(--whiteColor);
}
@media (max-width: 1399px) {
	.about-wrapper.style-2 .about-image-2 .since-text {
		right: 35%;
		bottom: 70px;
	}
}
@media (max-width: 991px) {
	.about-wrapper.style-2 .about-image-2 .since-text {
		right: 20px;
		bottom: 45px;
	}
}

.about-section {
	position: relative;
}
.about-section .leaves-shape {
	position: absolute;
	top: -90px;
	left: 0;
}

.about-wrapper-2 .pizza-image {
	margin-left: -62%;
	position: relative;
	max-width: 981px;
}
@media (max-width: 991px) {
	.about-wrapper-2 .pizza-image {
		margin-left: 0;
	}
}
.about-wrapper-2 .pizza-image img {
	width: 100%;
	height: 100%;
}
.about-wrapper-2 .pizza-image .quate-content {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 45px;
	background-color: var(--mainColor);
}
@media (max-width: 575px) {
	.about-wrapper-2 .pizza-image .quate-content {
		padding: 25px;
	}
}
.about-wrapper-2 .pizza-image .quate-content::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	width: 100%;
	height: 100%;
	background-position: center;
	background-image: url(../../assets/img/about/food-shape.png);
}
.about-wrapper-2 .pizza-image .quate-content h3 {
	font-size: 28px;
	position: relative;
	z-index: 9;
}
@media (max-width: 575px) {
	.about-wrapper-2 .pizza-image .quate-content h3 {
		font-size: 20px;
	}
}
.about-wrapper-2 .pizza-image .quate-content h3 span {
	color: var(--secondaryColor);
}
.about-wrapper-2 .about-content {
	margin-left: 50px;
}
@media (max-width: 1399px) {
	.about-wrapper-2 .about-content {
		margin-left: 30px;
	}
}
@media (max-width: 991px) {
	.about-wrapper-2 .about-content {
		margin-left: 0;
	}
}
.about-wrapper-2 .about-content p {
	margin-bottom: 40px;
}
.about-wrapper-2 .about-content .about-counter-area {
	border-top: 1px solid var(--border);
}
@media (max-width: 575px) {
	.about-wrapper-2 .about-content .about-counter-area {
		flex-wrap: wrap;
	}
}
.about-wrapper-2 .about-content .about-counter-area .counter-items {
	padding-top: 40px;
	padding-left: 0px;
	border-right: 1px solid var(--border);
	padding-right: 80px;
	position: relative;
}
@media (max-width: 1199px) {
	.about-wrapper-2 .about-content .about-counter-area .counter-items {
		padding-right: 40px;
	}
}
@media (max-width: 991px) {
	.about-wrapper-2 .about-content .about-counter-area .counter-items {
		padding-right: 80px;
	}
}
@media (max-width: 767px) {
	.about-wrapper-2 .about-content .about-counter-area .counter-items {
		padding-right: 50px;
	}
}
@media (max-width: 575px) {
	.about-wrapper-2 .about-content .about-counter-area .counter-items {
		padding-top: 30px;
		padding-right: 40px;
	}
}
.about-wrapper-2 .about-content .about-counter-area .counter-items h3 {
	font-size: 90px;
	text-transform: capitalize;
	opacity: 0.09;
	position: absolute;
	left: -10px;
	top: 10px;
}
.about-wrapper-2 .about-content .about-counter-area .counter-items:nth-last-of-type(1) {
	border-right: none;
	padding-right: 0;
}
.about-wrapper-2 .about-content .about-counter-area .counter-items:nth-of-type(1) {
	padding-left: 30px;
}
@media (max-width: 575px) {
	.about-wrapper-2 .about-content .about-counter-area .counter-items:nth-of-type(1) {
		padding-left: 0;
	}
}
.about-wrapper-2 .about-content .about-counter-area .counter-items h5 {
	font-weight: 500;
	text-transform: capitalize;
}
.about-wrapper-2 .about-content .about-counter-area .counter-items h2 {
	font-size: 50px;
	color: var(--secondaryColor);
	margin-top: 5px;
}
.about-wrapper-2 .about-content .about-info {
	margin-top: 50px;
	display: flex;
	align-items: center;
	gap: 40px;
}
@media (max-width: 1199px) {
	.about-wrapper-2 .about-content .about-info {
		gap: 20px;
	}
}
@media (max-width: 575px) {
	.about-wrapper-2 .about-content .about-info {
		justify-content: center;
		flex-wrap: wrap;
		margin-top: 30px;
	}
}
.about-wrapper-2 .about-content .about-info .profile {
	gap: 20px;
}
.about-wrapper-2 .about-content .about-info .profile .profile-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}
.about-wrapper-2 .about-content .about-info .theme-btn-2 {
	padding: 16px 50px;
	border-radius: 21px;
}
.about-wrapper-2 .about-content .about-info .theme-btn-2 span {
	color: var(--secondaryColor);
}

.about-food-wrapper {
	margin-bottom: -120px;
	position: relative;
	z-index: 9;
	background-color: #f3f3f3;
	padding: 120px 65px;
}
.about-food-wrapper.style-2 {
	padding: 0;
	margin-bottom: 0;
	background: transparent;
}
.about-food-wrapper.style-2 .about-food-items {
	background-color: transparent;
	padding: 60px 30px;
	border-radius: 12px;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
	.about-food-wrapper.style-2 .about-food-items {
		padding: 30px;
	}
}
.about-food-wrapper.style-2 .about-food-items:hover {
	background-color: var(--whiteColor);
}
@media (max-width: 1199px) {
	.about-food-wrapper {
		padding: 100px 50px;
	}
}
@media (max-width: 991px) {
	.about-food-wrapper {
		padding: 80px 40px;
	}
}
.about-food-wrapper .nav {
	gap: 20px;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.about-food-wrapper .nav {
		margin-top: 30px;
	}
}
.about-food-wrapper .nav .nav-item .nav-link {
	border: 1px solid var(--border);
	border-radius: 40px;
	padding: 12px 35px;
	font-weight: 500;
	font-size: 18px;
	text-transform: capitalize;
	color: var(--blackColor);
}
.about-food-wrapper .nav .nav-item .nav-link.active {
	background-color: var(--mainColor);
	border: 1px solid var(--mainColor);
}
.about-food-wrapper .about-food-items {
	margin-top: 30px;
}
.about-food-wrapper .about-food-items .food-image {
	height: 190px;
}
.about-food-wrapper .about-food-items .food-image img {
	object-fit: cover;
}
.about-food-wrapper .about-food-items .food-content {
	margin-top: 20px;
}
.about-food-wrapper .about-food-items .food-content h3 {
	font-size: 26px;
	margin-bottom: 5px;
}
.about-food-wrapper .about-food-items .food-content h3 a:hover {
	color: var(--primaryColor);
}

.fooder-menu-wrapper {
	border: 1px dotted var(--textColor);
	border-radius: 13px;
	padding: 15px 45px 60px;
	margin-top: 30px;
}
@media (max-width: 575px) {
	.fooder-menu-wrapper {
		padding: 15px 30px 40px;
	}
}
.fooder-menu-wrapper .food-menu-items {
	padding: 25px 25px 30px;
	margin-top: 30px;
	border-bottom: 1px dotted var(--textColor);
	transition: all 0.4s ease-in-out;
	position: relative;
}
.food-menu-items:hover a{
	z-index: 999;
	width: 100%;
	height: 100%;
	position: absolute;
}
@media (max-width: 575px) {
	.fooder-menu-wrapper .food-menu-items {
		background-color: var(--primaryColor);
		border-radius: 8px;
		gap: 20px;
		flex-wrap: wrap;
	}
	.fooder-menu-wrapper .food-menu-items::before {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		content: "";
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		background-image: url(../../assets/img/shape/overlay-shape.png);
		transition: all 0.3s ease-in-out;
	}
	.fooder-menu-wrapper .food-menu-items .food-menu-content h4, .fooder-menu-wrapper .food-menu-items .food-menu-content p {
		color: var(--whiteColor);
		transition: all 0.3s ease-in-out;
	}
	.fooder-menu-wrapper .food-menu-items .price {
		color: var(--whiteColor);
	}
}
.fooder-menu-wrapper .food-menu-items .food-menu-content {
	position: relative;
	z-index: 9;
}
.fooder-menu-wrapper .food-menu-items .food-menu-content h4 {
	margin-bottom: 5px;
}
.fooder-menu-wrapper .food-menu-items .price {
	font-size: 22px;
	font-weight: 500;
	color: var(--secondaryColor);
	position: relative;
	z-index: 9;
}
.fooder-menu-wrapper .food-menu-items:hover {
	background-color: var(--primaryColor);
	border-radius: 8px;
}
.fooder-menu-wrapper .food-menu-items:hover::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../../assets/img/shape/overlay-shape.png);
}
.fooder-menu-wrapper .food-menu-items:hover .food-menu-content h4, .fooder-menu-wrapper .food-menu-items:hover .food-menu-content p {
	color: var(--whiteColor);
}
.fooder-menu-wrapper .food-menu-items:hover .price {
	color: var(--whiteColor);
}
.fooder-menu-wrapper .food-menu-items.active {
	background-color: var(--primaryColor);
	border-radius: 8px;
}
.fooder-menu-wrapper .food-menu-items.active::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../../assets/img/shape/overlay-shape.png);
	transition: all 0.3s ease-in-out;
}
.fooder-menu-wrapper .food-menu-items.active .food-menu-content h4, .fooder-menu-wrapper .food-menu-items.active .food-menu-content p {
	color: var(--whiteColor);
}
.fooder-menu-wrapper .food-menu-items.active .price {
	color: var(--whiteColor);
}

::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px var(--primaryColor);
	border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--primaryColor);
	border-radius: 10px;
}

.fix {
	overflow: hidden;
}

.ralt {
	position: relative;
}

.ml-100 {
	margin-left: 100px;
}

.video-pulse::after,
.video-pulse::before {
	position: absolute;
	content: "";
	width: 100px;
	height: 100px;
	border: 1px solid var(--whiteColor);
	opacity: 0.7;
	left: 0;
	top: 0;
	border-radius: 50%;
	-webkit-animation-duration: 2.5s;
	animation-duration: 2.5s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-name: video-animation;
	animation-name: video-animation;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
@media (max-width: 575px) {
	.video-pulse::after,
	.video-pulse::before {
		width: 70px;
		height: 70px;
		line-height: 70px;
	}
}

.video-pulse::before {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

.swiper-dot .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	transition: 0.6s;
	background-color: var(--whiteColor);
	opacity: 1;
	border-radius: 10px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
	margin-right: 10px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--whiteColor);
	transition: 0.6s;
	position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
	position: absolute;
	width: 22px;
	height: 22px;
	line-height: 22px;
	top: -6px;
	left: -6px;
	border-radius: 50%;
	background-color: transparent;
	border: 2px solid var(--whiteColor);
	content: "";
}
.swiper-dot.style-2 {
	border: 1px dotted rgba(92, 92, 91, 0.9);
	width: 146px;
	height: 41px;
	line-height: 35px;
	border-radius: 30px;
	text-align: center;
	margin: 50px auto;
}
.swiper-dot.style-2 .swiper-pagination-bullet {
	background-color: var(--textColor);
}
.swiper-dot.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--primaryColor);
}
.swiper-dot.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
	border: 2px solid var(--primaryColor);
}

.swiper-dot-2 .swiper-pagination-bullet {
	width: 7px;
	height: 7px;
	border-radius: 0;
	background-color: var(--secondaryColor);
	opacity: 1;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 20px;
	background-color: var(--mainColor);
}

.array-button {
	position: relative;
	z-index: 99;
}
.array-button .array-prev {
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 50%;
	background-color: transparent;
	margin-right: 20px;
	border: 1px solid var(--whiteColor);
	color: var(--secondaryColor);
	transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
	.array-button .array-prev {
		margin-right: 0;
		margin-bottom: 10px;
	}
}
@media (max-width: 575px) {
	.array-button .array-prev {
		width: 45px;
		height: 45px;
		line-height: 45px;
	}
}
.array-button .array-prev:hover {
	background-color: var(--whiteColor);
}
.array-button .array-next {
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 100%;
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.06);
	background-color: var(--secondaryColor);
	color: var(--whiteColor);
	transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
	.array-button .array-next {
		width: 45px;
		height: 45px;
		line-height: 45px;
	}
}
.array-button .array-next:hover {
	background-color: var(--whiteColor);
	color: var(--secondaryColor);
}

.mt-10 {
	margin-top: 10px;
}

/* background */
.bg-cover {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-position: center;
	width: 100%;
	height: 100%;
}

.nice-select {
	background-color: transparent;
	width: unset;
	outline: none;
	padding: 18px 25px;
	border: 1px solid var(--border2);
	border-radius: 9px;
}
@media (max-width: 575px) {
	.nice-select {
		padding: 12px 20px;
	}
}
.nice-select:hover {
	border: 1px solid var(--border2);
}
.nice-select span {
	font-size: 17px;
	font-weight: 500;
	color: var(--whiteColor);
	text-transform: capitalize;
}
@media (max-width: 575px) {
	.nice-select span {
		font-size: 15px;
	}
}

.nice-select .current {
	margin-right: 12px;
}

.nice-select:after {
	right: 23px;
	border-bottom: 1px solid var(--whiteColor);
	border-right: 1px solid var(--whiteColor);
	width: 10px;
	height: 10px;
}

.nice-select.open .list {
	background: var(--backgroundColor);
	margin-top: 14px;
	width: 100%;
	text-transform: capitalize;
	color: var(--primaryColor);
}

.nice-select .option.selected.focus {
	background: var(--backgroundColor);
	outline: none;
	color: var(--primaryColor);
	text-transform: capitalize;
	font-weight: 400;
	font-size: 17px;
	border: none;
}

.nice-select .option {
	border: none;
}

.nice-select .option:hover {
	background: transparent;
}

.scroll-up {
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px var(--border);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	position: fixed;
	right: 25px;
	bottom: 35px;
	height: 50px;
	width: 50px;
	transition: all 0.4s ease-in-out;
}

.scroll-up::after {
	position: absolute;
	font-family: 'Font Awesome 5 Pro' !important;
	content: "\f176";
	text-align: center;
	line-height: 50px;
	font-weight: 700;
	font-size: 17px;
	color: var(--secondaryColor);
	left: 0;
	top: 0;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.scroll-up svg path {
	fill: none;
}

.scroll-up svg.scroll-circle path {
	stroke: var(--secondaryColor);
	stroke-width: 4px;
	box-sizing: border-box;
	transition: all 0.4s ease-in-out;
}

.scroll-up.active-scroll {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.theme-bg {
	background-color: var(--primaryColor) !important;
}

.white-bg {
	background-color: var(--whiteColor) !important;
	width: initial;
	height: initial;
}
@media (min-width: 1400px) {
	.white-bg {
		padding-left: 25px;
	}
}
@media (max-width: 1199px) {
	.white-bg {
		background-color: transparent !important;
	}
}

.theme-color-2 {
	color: var(--secondaryColor) !important;
}

.color-bg {
	color: var(--textColor) !important;
	opacity: 0.3;
}

.text-color {
	color: var(--blackColor) !important;
}

.theme-color-3 {
	color: var(--mainColor) !important;
}

.border-radius-none {
	border-radius: 0 !important;
}

.border-right {
	border-right: 1px solid var(--border2);
}
@media (max-width: 1199px) {
	.border-right {
		border: none;
	}
}

.shadow-style {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border-radius: 14px;
}

.single-team-items {
	margin-top: 30px;
}
.single-team-items .team-image {
	position: relative;
	height: 435px;
	max-width: 345px;
	text-align: center;
	margin: 0 auto;
	z-index: 9;
}
.single-team-items .team-image img {
	width: 100%;
	height: 100%;
	border-radius: 13px;
}
.single-team-items .team-image::before {
	position: absolute;
	top: -16px;
	left: 40px;
	width: 95%;
	height: 100%;
	bottom: 0;
	right: 0;
	content: "";
	border: 2px dotted var(--primaryColor);
	border-radius: 13px;
	z-index: -1;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
	.single-team-items .team-image::before {
		top: -10px;
	}
}
.single-team-items .team-image .social-link {
	position: absolute;
	top: 50%;
	left: 0;
	display: grid;
	padding: 20px;
	background-color: var(--primaryColor);
	gap: 15px;
	transform: translate(-50%, -50%);
	transition: all 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
}
.single-team-items .team-image .social-link::before {
	width: 0;
	height: 0;
	border-top: 25px solid var(--primaryColor);
	border-right: 30px solid transparent;
	content: "";
	left: 0px;
	position: absolute;
	top: -24px;
	transform: rotate(-180.509deg);
}
.single-team-items .team-image .social-link::after {
	width: 0;
	height: 0;
	border-top: 20px solid var(--primaryColor);
	border-right: 16px solid transparent;
	content: "";
	right: -7px;
	position: absolute;
	bottom: 50%;
	transform: rotate(139deg);
}
.single-team-items .team-image .social-link a i {
	color: var(--whiteColor);
}
@media (max-width: 991px) {
	.single-team-items .team-image {
		height: 380px;
		max-width: 290px;
	}
	.single-team-items .team-image img {
		object-fit: cover;
	}
}
@media (max-width: 767px) {
	.single-team-items .team-image {
		height: 380px;
		max-width: 345px;
	}
}
.single-team-items .team-content {
	margin-top: 20px;
	text-align: center;
}
.single-team-items .team-content p {
	font-weight: 500;
	color: var(--primaryColor);
	text-transform: capitalize;
	font-size: 17px;
}
.single-team-items .team-content h3 {
	margin-top: 5px;
	font-size: 28px;
}
@media (max-width: 575px) {
	.single-team-items .team-content h3 {
		font-size: 24px;
	}
}
.single-team-items .team-content h3 a:hover {
	color: var(--primaryColor);
}
.single-team-items:hover .team-image::before {
	transform: rotate(-3.136deg);
}
.single-team-items:hover .team-image .social-link {
	opacity: 1;
	visibility: visible;
}
.single-team-items.active .team-image::before {
	transform: rotate(-3.136deg);
}
.single-team-items.active .team-image .social-link {
	opacity: 1;
	visibility: visible;
}

.team-details-wrapper .team-image {
	height: 525px;
}
@media (max-width: 575px) {
	.team-details-wrapper .team-image {
		height: 400px;
	}
	.team-details-wrapper .team-image img {
		object-fit: cover;
	}
}
.team-details-wrapper .team-details-content .star a {
	font-size: 16px;
	color: var(--blackColor);
}
.team-details-wrapper .team-details-content .star a i {
	color: var(--mainColor);
}
.team-details-wrapper .team-details-content h3 {
	margin-bottom: 5px;
}
.team-details-wrapper .team-details-content span {
	font-weight: 500;
	margin-bottom: 15px;
	display: block;
}
.team-details-wrapper .team-details-content .social-icon {
	margin-top: 40px;
	gap: 15px;
	position: relative;
	z-index: 9;
}
@media (max-width: 575px) {
	.team-details-wrapper .team-details-content .social-icon {
		margin-top: 20px;
	}
}
.team-details-wrapper .team-details-content .social-icon a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
	display: block;
	background: rgba(92, 92, 91, 0.1);
	color: var(--blackColor);
	border-radius: 50%;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	text-align: center;
}
.team-details-wrapper .team-details-content .social-icon a:hover {
	background-color: var(--secondaryColor);
	color: var(--whiteColor);
}

.team-skill-wrapper .team-skill-content h3 {
	color: var(--whiteColor);
}
.team-skill-wrapper .progress-wrap .pro-items:not(:last-child) {
	margin-bottom: 20px;
}
.team-skill-wrapper .progress-wrap .pro-items .pro-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}
.team-skill-wrapper .progress-wrap .pro-items .pro-head .point {
	font-size: 17px;
	font-weight: 700;
	color: var(--whiteColor);
}
.team-skill-wrapper .progress-wrap .pro-items .pro-head .title {
	letter-spacing: 0.9px;
	color: var(--whiteColor);
	font-weight: 700;
}
.team-skill-wrapper .progress-wrap .pro-items .progress {
	background: var(--whiteColor);
	justify-content: flex-start;
	border-radius: 0;
	align-items: center;
	position: relative;
	display: flex;
	height: 6px;
	width: 100%;
}
.team-skill-wrapper .progress-wrap .pro-items .progress-value {
	animation: load 3s normal forwards;
	box-shadow: 0 10px 40px -10px var(--whiteColor);
	border-radius: 0;
	background: var(--mainColor);
	height: 6px;
	width: 0;
}
.team-skill-wrapper .progress-wrap .pro-items .style-two {
	animation: load2 3s normal forwards;
}
@keyframes load {
	0% {
		width: 0;
	}
	100% {
		width: 65%;
	}
}
@keyframes load2 {
	0% {
		width: 0;
	}
	100% {
		width: 75%;
	}
}

.team-reservation-wrapper .get-touch-items .get-touch-title h2 {
	margin-bottom: 10px;
}
.team-reservation-wrapper .get-touch-items .contact-items {
	margin-top: 50px;
	display: flex;
	align-items: center;
	gap: 100px;
}
@media (max-width: 575px) {
	.team-reservation-wrapper .get-touch-items .contact-items {
		margin-top: 30px;
		gap: 70px;
	}
}
.team-reservation-wrapper .get-touch-items .contact-items .contact-info h4 {
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
}
.team-reservation-wrapper .get-touch-items .contact-items .contact-info h5 {
	text-transform: capitalize;
}
.team-reservation-wrapper .get-touch-items .contact-items .contact-info .social-icon {
	gap: 15px;
	position: relative;
	z-index: 9;
	list-style: none;
}
@media (max-width: 575px) {
	.team-reservation-wrapper .get-touch-items .contact-items .contact-info .social-icon {
		margin-top: 20px;
	}
}
.team-reservation-wrapper .get-touch-items .contact-items .contact-info .social-icon a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
	display: block;
	background: rgba(92, 92, 91, 0.1);
	color: var(--blackColor);
	border-radius: 50%;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	text-align: center;
}
.team-reservation-wrapper .get-touch-items .contact-items .contact-info .social-icon a:hover {
	background-color: var(--secondaryColor);
	color: var(--whiteColor);
}
.team-reservation-wrapper .team-reservation-items {
	padding: 50px 55px;
	border: 1px solid var(--border);
	border-radius: 15px;
}
@media (max-width: 575px) {
	.team-reservation-wrapper .team-reservation-items {
		padding: 40px;
		margin-bottom: 10px;
	}
}
.team-reservation-wrapper .team-reservation-items .reservation-title {
	margin-bottom: 20px;
}
@media (max-width: 575px) {
	.team-reservation-wrapper .team-reservation-items .reservation-title {
		margin-bottom: 15px;
	}
}
.team-reservation-wrapper .team-reservation-items .reservation-title h3 {
	text-transform: capitalize;
	font-size: 38px;
	font-weight: 500;
	margin-bottom: 10px;
}
@media (max-width: 575px) {
	.team-reservation-wrapper .team-reservation-items .reservation-title h3 {
		font-size: 32px;
	}
}
.team-reservation-wrapper .team-reservation-items .reservation-title h3 span {
	color: var(--primaryColor);
}
.team-reservation-wrapper .team-reservation-items .form-clt {
	position: relative;
}
.team-reservation-wrapper .team-reservation-items .form-clt .icon {
	position: absolute;
	top: 18px;
	right: 0;
}
@media (max-width: 575px) {
	.team-reservation-wrapper .team-reservation-items .form-clt .icon {
		display: none;
	}
}
.team-reservation-wrapper .team-reservation-items .form-clt .icon i {
	color: var(--blackColor);
	font-weight: 600;
}
.team-reservation-wrapper .team-reservation-items .form-clt input {
	width: 100%;
	outline: none;
	border: none;
	padding: 18px 0;
	color: var(--textColor);
	background-color: transparent;
	text-transform: capitalize;
	font-weight: 500;
	border-bottom: 1px solid var(--textColor);
}
@media (max-width: 575px) {
	.team-reservation-wrapper .team-reservation-items .form-clt input {
		padding: 15px 0;
	}
}
.team-reservation-wrapper .team-reservation-items .form-clt .nice-select {
	border-radius: 0;
	padding: 18px 0;
	border: none;
	border-bottom: 1px solid var(--textColor);
}
.team-reservation-wrapper .team-reservation-items .form-clt .nice-select::after {
	right: 0;
	border-bottom: 1px solid var(--blackColor);
	border-right: 1px solid var(--blackColor);
}
.team-reservation-wrapper .team-reservation-items .form-clt .nice-select span {
	color: var(--textColor);
}
.team-reservation-wrapper .team-reservation-items .form-clt .theme-btn {
	width: 100%;
}

.food-icon-wrapper {
	background-color: var(--blackColor);
	border-radius: 14px;
	padding: 70px 75px;
}
@media (max-width: 991px) {
	.food-icon-wrapper .single-food-icon {
		text-align: center;
	}
}
.food-icon-wrapper .single-food-icon .icon {
	font-size: 55px;
	color: var(--mainColor);
}
.food-icon-wrapper .single-food-icon .content {
	margin-top: 20px;
}
.food-icon-wrapper .single-food-icon .content h4 {
	color: var(--whiteColor);
	margin-bottom: 10px;
}
.food-icon-wrapper .single-food-icon .content p {
	color: var(--whiteColor);
}

.choose-us-2 {
	background-color: var(--secondaryColor);
}
@media (max-width: 575px) {
	.choose-us-2 .food-icon-wrapper-2 {
		text-align: center;
	}
}
.choose-us-2 .food-icon-wrapper-2 .single-food-icon .icon {
	font-size: 65px;
	color: var(--mainColor);
}
.choose-us-2 .food-icon-wrapper-2 .single-food-icon .content {
	margin-top: 20px;
}
@media (max-width: 575px) {
	.choose-us-2 .food-icon-wrapper-2 .single-food-icon .content {
		margin-top: 10px;
	}
}
.choose-us-2 .food-icon-wrapper-2 .single-food-icon .content h3 {
	font-size: 27px;
	text-transform: capitalize;
	color: var(--whiteColor);
	font-weight: 600;
	margin-bottom: 10px;
}
.choose-us-2 .food-icon-wrapper-2 .single-food-icon .content p {
	color: var(--whiteColor);
	font-size: 16px;
}

.video-icon {
	padding-top: 120px;
}
.video-icon .video-popup {
	width: 150px;
	height: 150px;
	line-height: 150px;
	background: transparent;
	border: 2px dotted var(--whiteColor);
	border-radius: 50%;
	display: inline-block;
	font-size: 30px;
	color: var(--secondaryColor);
}
@media (max-width: 991px) {
	.video-icon .video-popup {
		width: 90px;
		height: 90px;
		line-height: 90px;
		font-size: 22px;
	}
}

.video-section-2 {
	position: relative;
}
.video-section-2::before {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: #1a1919;
	z-index: -1;
}
.video-section-2.style-2::before {
	background-color: var(--primaryColor);
}
.video-section-2.style-2::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	content: "";
	background-color: var(--backgroundColor);
	z-index: -1;
}

.video-wrapper {
	padding: 315px 0;
}
@media (max-width: 1199px) {
	.video-wrapper {
		padding: 250px 0;
	}
}
@media (max-width: 991px) {
	.video-wrapper {
		padding: 200px 0;
	}
}
@media (max-width: 575px) {
	.video-wrapper {
		padding: 120px 0;
	}
}
.video-wrapper .video-btn {
	position: relative;
	display: inline-block;
	z-index: 2;
	left: 50%;
	top: 50%;
	transform: translateX(-50%);
}
.video-wrapper .video-btn a {
	position: relative;
	color: var(--secondaryColor);
	font-size: 16px;
	z-index: 1;
	background-color: var(--whiteColor);
	width: 100px;
	height: 100px;
	line-height: 100px;
	border-radius: 50%;
	display: block;
	transition: 0.4s;
}
@media (max-width: 575px) {
	.video-wrapper .video-btn a {
		width: 70px;
		height: 70px;
		line-height: 70px;
	}
}
.video-wrapper .video-btn a i {
	color: var(--secondaryColor);
}

.food-processing-wrapper {
	position: relative;
}
.food-processing-wrapper::before {
	position: absolute;
	top: 50%;
	left: 100px;
	width: 80%;
	height: 1px;
	content: "";
	background-image: url(../../assets/img/border.png);
}
@media (max-width: 1399px) {
	.food-processing-wrapper::before {
		display: none;
	}
}
.food-processing-wrapper .food-processing-items {
	margin-top: 30px;
	transition: all 0.4s ease-in-out;
	border: 1px dotted transparent;
	padding: 50px 50px;
	border-radius: 17px;
	position: relative;
}
@media (max-width: 767px) {
	.food-processing-wrapper .food-processing-items {
		padding: 30px 30px;
		background-color: var(--whiteColor);
		border: 1px dotted var(--textColor);
	}
	.food-processing-wrapper .food-processing-items .food-processing-image .number {
		opacity: 1;
	}
}
.food-processing-wrapper .food-processing-items .food-processing-image {
	position: relative;
}
.food-processing-wrapper .food-processing-items .food-processing-image .number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--primaryColor);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
.food-processing-wrapper .food-processing-items .food-processing-image .number span {
	font-size: 16px;
	font-weight: 700;
	color: var(--whiteColor);
}
.food-processing-wrapper .food-processing-items .food-processing-content {
	margin-top: 15px;
}
@media (max-width: 575px) {
	.food-processing-wrapper .food-processing-items .food-processing-content {
		margin-top: 0;
	}
}
.food-processing-wrapper .food-processing-items .food-processing-content h3 {
	font-size: 28px;
	margin-bottom: 10px;
}
@media (max-width: 575px) {
	.food-processing-wrapper .food-processing-items .food-processing-content h3 {
		font-size: 22px;
	}
}
.food-processing-wrapper .food-processing-items:hover {
	background-color: var(--whiteColor);
	border: 1px dotted var(--textColor);
}
.food-processing-wrapper .food-processing-items:hover .food-processing-image .number {
	opacity: 1;
}
.food-processing-wrapper .food-processing-items.active {
	background-color: var(--whiteColor);
	border-radius: 17px;
	border: 1px dotted var(--textColor);
}
.food-processing-wrapper .food-processing-items.active .food-processing-image .number {
	opacity: 1;
}
.food-processing-wrapper .food-processing-items.style-2 {
	border: none;
}
@media (max-width: 767px) {
	.food-processing-wrapper .food-processing-items.style-2 {
		background-color: var(--mainColor);
	}
	.food-processing-wrapper .food-processing-items.style-2 .food-processing-image .number {
		opacity: 1;
	}
}
.food-processing-wrapper .food-processing-items.style-2:hover {
	background-color: var(--mainColor);
}
.food-processing-wrapper .food-processing-items.style-2.active {
	background-color: var(--mainColor);
}

.single-product-items {
	margin-top: 35px;
}
.single-product-items .product-image {
	position: relative;
}
.single-product-items .product-image img {
	width: 100%;
	height: 100%;
}
.single-product-items .product-image .box {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 50%;
	background-color: var(--primaryColor);
	text-align: center;
}
.single-product-items .product-image .box span {
	font-size: 14px;
	font-weight: 500;
	color: var(--whiteColor);
}
.single-product-items .product-image .product-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	z-index: 999;
	gap: 10px;
}
.single-product-items .product-image .product-icon li {
	background-color: var(--whiteColor);
	box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.2);
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-transform: capitalize;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
	transform: scaleX(0);
	transition: all 0.4s ease-in-out;
}
.single-product-items .product-image .product-icon li i {
	color: var(--primaryColor);
}
.single-product-items .product-image .product-icon li.style-2 {
	background-color: var(--secondaryColor);
	cursor: pointer;
	width: 135px;
}
.single-product-items .product-image .product-icon li.style-2 a {
	color: var(--whiteColor);
}
.single-product-items .product-image .product-icon li.style-2 a i {
	color: var(--whiteColor);
	margin-right: 3px;
}
.single-product-items .product-content .price {
	margin-bottom: 5px;
}
.single-product-items .product-content .price span {
	font-size: 14px;
	font-weight: 500;
	color: var(--secondaryColor);
}
.single-product-items .product-content .price del {
	font-size: 14px;
	font-weight: 500;
	color: var(--textColor2);
}
.single-product-items .product-content h5 a {
	background-image: linear-gradient(var(--secondaryColor), var(--secondaryColor));
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
}
.single-product-items .product-content h5 a:hover {
	background-size: 100% 1px;
	color: var(--secondaryColor);
}
.single-product-items:hover .product-image .product-icon li {
	transform: scaleX(1);
}
.single-product-items.active .product-image .product-icon li {
	transform: scaleX(1);
}

.single-product-items-2 {
	padding: 40px 20px;
	background-color: var(--whiteColor);
	margin-top: 30px;
	position: relative;
	z-index: 9;
}
.single-product-items-2 .product-content h4 {
	text-transform: capitalize;
	margin-bottom: 5px;
}
.single-product-items-2 .product-content h4 a {
	background-image: linear-gradient(var(--primaryColor), var(--primaryColor));
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
}
.single-product-items-2 .product-content h4 a:hover {
	background-size: 100% 1px;
	color: var(--primaryColor);
}
.single-product-items-2 .product-content .star {
	margin-bottom: 5px;
}
.single-product-items-2 .product-content .star span {
	font-size: 16px;
	color: var(--textColor);
	font-weight: 600;
}
.single-product-items-2 .product-content .star i {
	font-size: 16px;
	color: var(--mainColor);
}
.single-product-items-2 .product-content h5 {
	font-size: 18px;
	color: var(--secondaryColor);
	text-transform: initial;
}
.single-product-items-2 .product-image {
	margin-top: 40px;
	position: relative;
}
.single-product-items-2 .product-image img {
	max-height: 185px;
}
@media (max-width: 575px) {
	.single-product-items-2 .product-image {
		margin-top: 25px;
	}
}
.single-product-items-2 .product-image .product-icon {
	gap: 16px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}
.single-product-items-2 .product-image .product-icon li {
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	cursor: pointer;
}
.single-product-items-2 .product-image .product-icon li a i {
	color: var(--secondaryColor);
	font-size: 16px;
}
.single-product-items-2 .product-image .product-icon .yith-wcwl-add-button span{
	display: none;
}
.single-product-items-2 .product-image .product-icon .yith-wcwl-add-to-wishlist {
	margin-top: 0px !important;
}
.single-product-items-2 .product-image .product-icon .yith-wcwl-wishlistexistsbrowse{
	font-size: 0;
}
.single-product-items-2 .product-image .product-icon .yith-wcwl-wishlistexistsbrowse i {
	font-size: 16px !important;
}
.single-product-items-2:hover .product-image .product-icon li {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.woocommerce-notices-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	margin-bottom: 30px;
}
@media (max-width: 767px) {
	.woocommerce-notices-wrapper {
		flex-wrap: wrap;
		padding: 20px 15px;
		gap: 20px;
		justify-content: center;
	}
}
.woocommerce-notices-wrapper .product-showing {
	border: 1px solid var(--border2);
	display: flex;
	align-items: center;
	gap: 50px;
}
@media (max-width: 767px) {
	.woocommerce-notices-wrapper .product-showing {
		flex-wrap: wrap;
		gap: 30px;
	}
}
.woocommerce-notices-wrapper .product-showing h5 {
	text-transform: capitalize;
}
.woocommerce-notices-wrapper .product-showing h5 span {
	color: var(--primaryColor);
}
.woocommerce-notices-wrapper .product-showing h5 img {
	margin-right: 10px;
}
.woocommerce-notices-wrapper .form-clt {
	display: flex;
	align-items: center;
	gap: 20px;
}
.woocommerce-notices-wrapper .form-clt h6 {
	text-transform: capitalize;
}
.woocommerce-notices-wrapper .form-clt h6 a {
	margin-left: 10px;
	color: var(--textColor);
}
.woocommerce-notices-wrapper .form-clt .nice-select {
	padding: 18px 20px;
	font-size: 16px;
	text-transform: capitalize;
	border-radius: 0;
	background-color: transparent;
	border: 1px solid var(--border2);
	width: 100px;
}
@media (max-width: 767px) {
	.woocommerce-notices-wrapper .form-clt .nice-select {
		padding: 0 20px;
	}
}
.woocommerce-notices-wrapper .form-clt .nice-select::after {
	border-bottom: 1px solid var(--textColor);
	border-right: 1px solid var(--textColor);
}
.woocommerce-notices-wrapper .form-clt .nice-select span {
	color: var(--textColor);
}
.woocommerce-notices-wrapper .form-clt .icon a {
	color: var(--secondaryColor);
}
.woocommerce-notices-wrapper .form-clt .icon-2 a {
	color: var(--blackColor);
}

.main-cart-wrapper {
	border-radius: 5px;
}
.main-cart-wrapper .cart-wrapper {
	box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
	border-radius: 5px;
	padding: 40px 40px;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table {
	width: 100%;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table thead {
	border-bottom: 1px solid var(--border);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table thead tr th {
	padding-bottom: 16px;
	color: var(--blackColor);
	text-transform: capitalize;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item td {
	border-bottom: 1px solid var(--border);
	padding: 16px 0;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-info {
	display: flex;
	align-items: center;
	gap: 16px;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-info img {
	border-radius: 5px;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-price {
	color: var(--blackColor);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--backgroundColor);
	width: 100px;
	border-radius: 5px;
	padding: 2px 20px;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity span {
	display: block;
	color: var(--blackColor);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity .cart-item-quantity-controller a {
	display: block;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity .cart-item-quantity-controller a i {
	color: var(--blackColor);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-remove a i {
	color: var(--blackColor);
}
.main-cart-wrapper .cart-wrapper-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}
.main-cart-wrapper .cart-wrapper-footer form {
	border: 1px solid var(--border);
	padding: 8px;
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.main-cart-wrapper .cart-wrapper-footer form input {
	padding: 5px 5px;
	border: none;
	text-transform: capitalize;
	font-size: 16px;
	outline: none;
	background: transparent;
}
.main-cart-wrapper .cart-wrapper-footer form button {
	outline: none;
	border: none;
}
.main-cart-wrapper .cart-pragh-box {
	margin-top: 24px;
	padding-right: 30px;
	padding-bottom: 30px;
}
.main-cart-wrapper .cart-graph {
	border: 1px solid var(--border);
	padding: 30px 30px;
	border-radius: 5px;
}
.main-cart-wrapper .cart-graph h4 {
	text-align: center;
	color: var(--blackColor);
	margin-bottom: 30px;
}
.main-cart-wrapper .cart-graph ul {
	margin-bottom: 30px;
}
.main-cart-wrapper .cart-graph ul li {
	display: flex;
}
.main-cart-wrapper .cart-graph ul li:not(:last-child) {
	border-bottom: 1px solid var(--border);
}
.main-cart-wrapper .cart-graph ul li span {
	width: 50%;
	color: var(--blackColor);
	font-size: 17px;
	text-transform: capitalize;
	padding: 16px 0;
	font-weight: 500;
}

@media (max-width: 767px) {
	.cart-wrapper {
		overflow-x: scroll;
	}
	.cart-wrapper .cart-items-wrapper {
		width: 700px;
	}
	.cart-wrapper .cart-wrapper-footer {
		width: 700px;
	}
}
.checkout-radio {
	box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
	border-radius: 5px;
	padding: 24px;
}
.checkout-radio .primary-text {
	font-size: 24px;
	font-weight: 500;
	line-height: 150%;
	margin-bottom: 16px;
	color: var(--blackColor);
	text-transform: capitalize;
}
.checkout-radio h4 {
	color: var(--blackColor);
	margin-bottom: 16px;
	font-weight: 600;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
	border-radius: 50%;
	width: 18px;
	height: 18px;
	box-shadow: none;
	outline: none;
	border: 1px solid var(--border);
	font-weight: 500;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
	color: var(--blackColor);
	text-transform: capitalize;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
	margin-bottom: 12px;
}
@media (max-width: 500px) {
	.checkout-radio {
		padding: 10px;
	}
}

.checkout-single-wrapper .checkout-single h4 {
	color: var(--blackColor);
	margin-bottom: 2rem;
	font-weight: 600;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
	width: 100%;
	outline: none;
	box-shadow: none;
	border: 1px solid var(--border);
	border-radius: 5px;
	padding: 12px 24px;
	color: var(--blackColor);
	text-transform: capitalize;
	font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
	color: var(--blackColor);
	font-size: 17px;
	text-transform: capitalize;
	margin-bottom: 10px;
	font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::placeholder {
	color: var(--blackColor);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select {
	background-color: var(--whiteColor);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select span {
	font-size: 17px;
	color: var(--blackColor);
	font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select::after {
	border-right: 1px solid var(--blackColor);
	border-bottom: 1px solid var(--blackColor);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
	color: var(--blackColor);
	margin-bottom: 12px;
	text-transform: capitalize;
}
.checkout-single-wrapper .boxshado-single {
	box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
	border-radius: 5px;
	padding: 32px;
	margin-bottom: 24px;
}
@media (max-width: 575px) {
	.checkout-single-wrapper .boxshado-single {
		padding: 14px;
	}
}
.checkout-single-wrapper .checkout-single-bg {
	box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
	border-radius: 5px;
	padding: 32px;
}
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
	border: 1px solid var(--border);
	background: transparent;
	text-transform: capitalize;
}
@media (max-width: 575px) {
	.checkout-single-wrapper .checkout-single-bg {
		padding: 14px;
	}
}
.checkout-single-wrapper .checkout-single-bg .payment-save {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}
.checkout-single-wrapper .checkout-single-bg .payment-save input {
	width: 24px;
	height: 24px;
	border-radius: 4px;
	border: 1px solid var(--border);
	background-color: var(--primaryColor);
	outline: none;
	color: var(--blackColor);
}
.checkout-single-wrapper .checkout-single-bg .payment-save label {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
}

.faq-section {
	position: relative;
}

.faq-content .accordion-item {
	border: 0;
	margin-top: 20px;
	border-radius: 10px;
	background-color: var(--whiteColor);
}
.faq-content .accordion-item .accordion-header .accordion-button {
	font-weight: 600;
	color: var(--blackColor);
	letter-spacing: -0.2px;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background-color: transparent;
	padding: 16px 20px;
	text-transform: capitalize;
	font-size: 22px;
}
.faq-content .accordion-item .accordion-header .accordion-button::after {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	content: "\f067";
	/* margin-left: 10px; */
	transition: all 0.3s ease-in-out;
	padding-left: 0px;
	font-size: 15px;
}

.faq-content .accordion-item .accordion-header .accordion-button.collapsed::after {
	content: "\f068";
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
}
.faq-content .accordion-item .accordion-collapse .accordion-body {
	padding-right: 30px;
	padding-top: 5px;
	color: var(--blackColor);
}

@media (max-width: 575px) {
	.main-sidebar .single-sidebar-widget {
		margin-bottom: 30px;
	}
}

.main-sidebar .single-sidebar-widget .wid-title::before {
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	width: 2px;
	height: 17px;
	position: absolute;
	background-color: var(--primaryColor);
}
.main-sidebar .single-sidebar-widget .wid-title h4 {
	font-size: 24px;
	font-weight: 600;
}
.main-sidebar .single-sidebar-widget .widget-categories {
	border-bottom: 1px solid var(--border);
	padding-bottom: 40px;
}
.main-sidebar .single-sidebar-widget .widget-categories ul li {
	font-size: 17px;
	font-weight: 600;
	text-transform: capitalize;
}
.main-sidebar .single-sidebar-widget .widget-categories ul li:not(:last-child) {
	margin-bottom: 20px;
}
.main-sidebar .single-sidebar-widget .widget-categories ul li a i {
	font-size: 20px;
	color: var(--blackColor);
	margin-right: 20px;
}
.main-sidebar .single-sidebar-widget .range__barcustom .price-input {
	margin-top: 30px;
	position: relative;
}
.main-sidebar .single-sidebar-widget .range__barcustom .price-input .field {
	display: flex;
	align-items: center;
	font-size: 17px;
	width: 16%;
}
.main-sidebar .single-sidebar-widget .range__barcustom .price-input .field span {
	font-size: 18px;
	font-weight: 500;
	color: var(--blackColor);
}
.main-sidebar .single-sidebar-widget .range__barcustom .separators {
	margin-left: -12px;
	padding-right: 12px;
	font-size: 24px;
	line-height: 42px;
	font-weight: 500;
}
.main-sidebar .single-sidebar-widget .range__barcustom .field input {
	height: 100%;
	outline: none;
	background: transparent;
	border: unset;
	font-size: 16px;
	font-weight: 500;
	color: var(--blackColor);
	padding: 0;
}
.main-sidebar .single-sidebar-widget .range__barcustom .field input span {
	font-weight: 500;
	color: var(--blackColor);
	font-size: 16px;
}
.main-sidebar .single-sidebar-widget .range__barcustom input[type=number]::-webkit-outer-spin-button,
.main-sidebar .single-sidebar-widget .range__barcustom input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
.main-sidebar .single-sidebar-widget .range__barcustom .price-input .separator {
	font-size: 14px;
	font-weight: 400;
	color: var(--whiteColor);
}
.main-sidebar .single-sidebar-widget .range__barcustom .slider {
	height: 6.75px;
	position: relative;
	background: var(--blackColor);
	border-radius: 5px;
}
.main-sidebar .single-sidebar-widget .range__barcustom .slider .progress {
	height: 100%;
	left: 25%;
	right: 25%;
	position: absolute;
	border-radius: 5px;
	background: var(--primaryColor);
}
.main-sidebar .single-sidebar-widget .range__barcustom .range-input {
	position: relative;
	display: flex;
	justify-content: center;
}
.main-sidebar .single-sidebar-widget .range__barcustom .range-input input {
	position: absolute;
	width: 100%;
	height: 6.75px;
	top: -7px;
	background: none;
	pointer-events: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 0;
	outline: none;
}
.main-sidebar .single-sidebar-widget .range__barcustom input[type=range]::-webkit-slider-thumb {
	height: 17px;
	width: 7px;
	border-radius: 5px;
	background: var(--primaryColor);
	border: 1.125px solid var(--primaryColor);
	pointer-events: auto;
	-webkit-appearance: none;
}
.main-sidebar .single-sidebar-widget .range__barcustom .price-input .theme-btn {
	padding: 14px 30px;
}
.main-sidebar .single-sidebar-widget .filter-size .input-save:not(:last-child) {
	margin-bottom: 20px;
}
.main-sidebar .single-sidebar-widget .filter-size .input-save input {
	width: 20px;
	height: 19px;
	background-color: var(--primaryColor);
	outline: none;
	color: var(--secondaryColor);
	padding: 5px;
	border-radius: 4px;
}
.main-sidebar .single-sidebar-widget .filter-size .input-save label {
	margin-left: 20px;
	color: var(--blackColor);
	text-transform: capitalize;
	font-weight: 500;
	text-transform: capitalize;
}
.main-sidebar .single-sidebar-widget .popular-food-posts .single-post-item {
	overflow: hidden;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.main-sidebar .single-sidebar-widget .popular-food-posts .single-post-item:last-child {
	margin-bottom: 0;
	border: none;
	padding-bottom: 0;
}
.main-sidebar .single-sidebar-widget .popular-food-posts .single-post-item .thumb {
	width: 80px;
	height: 80px;
	float: left;
	overflow: hidden;
	margin-right: 20px;
}
.main-sidebar .single-sidebar-widget .popular-food-posts .single-post-item .post-content {
	overflow: hidden;
}
.main-sidebar .single-sidebar-widget .popular-food-posts .single-post-item .post-content .star {
	font-size: 14px;
	color: var(--mainColor);
	margin-bottom: 3px;
}
.main-sidebar .single-sidebar-widget .popular-food-posts .single-post-item .post-content h4 {
	text-transform: capitalize;
	margin-bottom: 3px;
}
.main-sidebar .single-sidebar-widget .popular-food-posts .single-post-item .post-content h4 a:hover {
	color: var(--primaryColor);
}
.main-sidebar .single-sidebar-widget .popular-food-posts .single-post-item .post-content .post-price {
	font-size: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
}
.main-sidebar.style-2 {
	margin-left: 30px;
}
@media (max-width: 991px) {
	.main-sidebar.style-2 {
		margin-left: 0;
	}
}

.product-details-wrapper .product-image-items .tab-content .tab-pane .product-image {
	position: relative;
}
.product-details-wrapper .product-image-items .tab-content .tab-pane .product-image img {
	width: 100%;
	height: 100%;
}
.product-details-wrapper .product-image-items .tab-content .tab-pane .product-image .icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 130px;
	height: 130px;
	line-height: 130px;
	border-radius: 50%;
	background-color: var(--mainColor);
	text-align: center;
}
@media (max-width: 991px) {
	.product-details-wrapper .product-image-items .tab-content .tab-pane .product-image .icon {
		width: 90px;
		height: 90px;
		line-height: 90px;
		font-size: 16px;
	}
}
@media (max-width: 575px) {
	.product-details-wrapper .product-image-items .tab-content .tab-pane .product-image .icon {
		width: 70px;
		height: 70px;
		line-height: 70px;
		font-size: 15px;
	}
}
.product-details-wrapper .product-image-items .tab-content .tab-pane .product-image .icon i {
	color: var(--blackColor);
	font-size: 24px;
}
.product-details-wrapper .product-image-items .nav {
	border: unset;
	display: flex;
	align-items: center;
	margin-top: 20px;
}
.product-details-wrapper .product-image-items .nav .nav-link {
	padding: 0;
	border: unset;
	background: none;
}
.product-details-wrapper .product-image-items .nav .nav-link .image-tab img {
	width: 100%;
	height: 100%;
}
.product-details-wrapper .product-details-content {
	margin-left: 60px;
}
@media (max-width: 1399px) {
	.product-details-wrapper .product-details-content {
		margin-left: 30px;
	}
}
@media (max-width: 991px) {
	.product-details-wrapper .product-details-content {
		margin-left: 0;
	}
}
.product-details-wrapper .product-details-content .star a {
	color: var(--mainColor);
	font-size: 16px;
	font-weight: 600;
}
.product-details-wrapper .product-details-content .star span {
	background-color: var(--mainColor);
	font-weight: 600;
	color: var(--blackColor);
	padding: 5px 6px;
	border-radius: 3px;
	margin-right: 10px;
}
.product-details-wrapper .product-details-content .price-list {
	gap: 20px;
}
.product-details-wrapper .product-details-content .price-list span {
	font-weight: 600;
	font-size: 28px;
	color: var(--blackColor);
}
.product-details-wrapper .product-details-content .price-list del {
	font-size: 20px;
	color: var(--secondaryColor);
	font-weight: 500;
}
.product-details-wrapper .product-details-content .price-list h3 {
	font-size: 40px;
	color: var(--secondaryColor);
}
.product-details-wrapper .product-details-content .cart-wrp {
	margin-top: 30px;
	margin-bottom: 30px;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 40px;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity h5 {
	font-weight: 700;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .quantity {
	width: 190px;
	border: 1px solid var(--blackColor);
	border-radius: 6px;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .quantity input {
	width: 60px;
	height: 55px;
	text-align: center;
	background-color: transparent;
	border: 1px solid var(--border2);
	color: var(--blackColor);
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .quantity .minus {
	color: var(--blackColor);
	font-size: 32px;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .quantity .plus {
	color: var(--blackColor);
	font-size: 32px;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .quantity .qty {
	color: var(--blackColor);
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button {
	justify-content: space-between;
	gap: 30px;
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button .theme-btn {
	width: 88%;
	border-radius: 30px;
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button .star-icon {
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 36px;
	background-color: var(--whiteColor);
	box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
	font-size: 20px;
	display: inline-block;
	text-align: center;
	transition: all 0.4s ease-in-out;
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button .star-icon i {
	color: var(--blackColor);
	transition: all 0.4s ease-in-out;
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button .star-icon:hover {
	background-color: var(--primaryColor);
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button .star-icon:hover i {
	color: var(--whiteColor);
}
.product-details-wrapper .product-details-content .shop-text {
	font-weight: 500;
	margin-bottom: 20px;
}
.product-details-wrapper .product-details-content .shop-text span {
	font-weight: 600;
}
.product-details-wrapper .product-details-content .details-info {
	position: relative;
}
.product-details-wrapper .product-details-content .details-info:not(:last-child) {
	margin-bottom: 10px;
}
.product-details-wrapper .product-details-content .details-info span {
	font-size: 17px;
	font-weight: 500;
	text-transform: capitalize;
	position: absolute;
	left: 0;
	top: 2px;
}
.product-details-wrapper .product-details-content .details-info a {
	font-size: 17px;
	font-weight: 500;
	color: var(--blackColor);
	margin-left: 100px;
	text-transform: capitalize;
}
.product-details-wrapper .single-tab {
	padding-top: 80px;
}
@media (max-width: 575px) {
	.product-details-wrapper .single-tab {
		padding-top: 50px;
	}
}
.product-details-wrapper .single-tab .nav {
	border-bottom: 1px solid var(--border2);
	padding-bottom: 20px;
}
.product-details-wrapper .single-tab .nav .nav-link {
	text-align: center;
	padding: 18px 50px;
	background-color: #f7f7f7;
	border-radius: 5px;
	font-weight: 700;
	font-size: 20px;
	font-family: var(--fontFamily);
	text-transform: capitalize;
	color: var(--blackColor);
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
	.product-details-wrapper .single-tab .nav .nav-link {
		padding: 14px 45px;
		font-size: 18px;
	}
}
.product-details-wrapper .single-tab .nav .nav-link.active {
	position: relative;
	background-color: var(--mainColor);
}
.product-details-wrapper .single-tab .nav .nav-link.active h6 {
	color: var(--blackColor);
}
.product-details-wrapper .single-tab .description-items .description-content {
	margin-right: 50px;
}
@media (max-width: 1399px) {
	.product-details-wrapper .single-tab .description-items .description-content {
		margin-right: 30px;
	}
}
@media (max-width: 991px) {
	.product-details-wrapper .single-tab .description-items .description-content {
		margin-right: 0;
	}
}
.product-details-wrapper .single-tab .description-items .description-content h3 {
	margin-bottom: 15px;
	font-size: 28px;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items {
	margin-top: 20px;
	gap: 200px;
}
@media (max-width: 575px) {
	.product-details-wrapper .single-tab .description-items .description-content .description-list-items {
		flex-wrap: wrap;
		gap: 30px;
	}
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li {
	font-size: 16px;
	font-weight: 400;
	font-weight: 500;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li:not(:last-child) {
	margin-bottom: 15px;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li i {
	color: var(--primaryColor);
	margin-right: 10px;
	font-weight: 600;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li span {
	color: var(--textColor);
	font-size: 20px;
	font-weight: 400;
}
@media (max-width: 767px) {
	.product-details-wrapper .single-tab .review-items .admin-items {
		justify-content: center;
		gap: 30px;
	}
}
.product-details-wrapper .single-tab .review-items .admin-items .admin-img {
	width: 100px;
	height: 100px;
}
.product-details-wrapper .single-tab .review-items .admin-items .admin-img img {
	border-radius: 50%;
}
.product-details-wrapper .single-tab .review-items .admin-items .content {
	position: relative;
	border: 1px solid var(--border);
}
.product-details-wrapper .single-tab .review-items .admin-items .content::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	background-color: var(--whiteColor);
	border-left: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	transform: rotate(45deg);
	top: 40%;
	left: -16px;
}
@media (max-width: 575px) {
	.product-details-wrapper .single-tab .review-items .admin-items .content::before {
		display: none;
	}
}
.product-details-wrapper .single-tab .review-items .admin-items .content .head-content h5 span {
	font-size: 16px;
	margin-left: 30px;
}
.product-details-wrapper .single-tab .review-items .admin-items .content .star i {
	font-size: 16px;
	color: #ff9200;
}
.product-details-wrapper .single-tab .review-title .rate-now {
	margin-top: 15px;
	gap: 15px;
}
.product-details-wrapper .single-tab .review-title .rate-now p {
	font-size: 16px;
	text-transform: capitalize;
}
.product-details-wrapper .single-tab .review-title .rate-now i {
	font-size: 16px;
	color: #ff9200;
}
.product-details-wrapper .single-tab .review-form {
	margin-top: 40px;
}
.product-details-wrapper .single-tab .review-form .form-clt input {
	width: 100%;
	outline: none;
	border: none;
	padding: 18px 35px;
	color: var(--textColor);
	background-color: rgb(245, 245, 245);
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
}
@media (max-width: 575px) {
	.product-details-wrapper .single-tab .review-form .form-clt input {
		padding: 15px 20px;
	}
}
.product-details-wrapper .single-tab .review-form .form-clt-big textarea {
	padding: 18px 35px 170px;
	width: 100%;
	outline: none;
	color: var(--textColor);
	background-color: rgb(245, 245, 245);
	font-size: 14px;
	border: none;
	text-transform: capitalize;
}
@media (max-width: 575px) {
	.product-details-wrapper .single-tab .review-form .form-clt-big textarea {
		padding: 15px 20px;
	}
}

.food-banner-section {
	position: relative;
}
.food-banner-section .chili-shape {
	position: absolute;
	bottom: 15%;
	left: 0;
}
.food-banner-section .fry-shape {
	position: absolute;
	right: 2%;
}
.food-banner-section .burger-shape-2 {
	position: absolute;
	right: 3%;
	bottom: 0;
}
.single-offer-items.custom-single-offer-items {
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	width: 98%;
	height: 350px;
}
.single-offer-items {
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	width: 98%;
	/*height: 350px;
	margin-top: 100px;*/
}
/*.single-offer-items {
border-radius: 20px;
position: relative;
overflow: hidden;
}*/
.single-offer-items .offer-image {
	position: absolute;
	bottom: 15px;
	left: 0;
	z-index: 9;
	-webkit-animation: scale-up-two 6s infinite linear;
	animation: scale-up-two 6s infinite linear;
}
@media (max-width: 1199px) {
	.single-offer-items .offer-image {
		bottom: 0px;
		left: 190px;
	}
}
@media (max-width: 767px) {
	.single-offer-items .offer-image {
		display: none;
	}
}
.single-offer-items .burger-text {
	position: absolute;
	right: 20%;
	top: 0;
	animation: rounded 4s linear infinite;
	z-index: 9;
}
@media (max-width: 575px) {
	.single-offer-items .burger-text {
		right: 0;
	}
}
.single-offer-items .main-food {
	position: absolute;
	right: -20px;
	bottom: -5px;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
	.single-offer-items .main-food {
		width: 250px;
	}
	.single-offer-items .main-food img {
		width: 100%;
	}
}
.single-offer-items .offer-content {
	padding: 50px;
	position: relative;
	z-index: 99;
}
@media (max-width: 1199px) {
	.single-offer-items .offer-content {
		padding: 100px 50px;
	}
}
@media (max-width: 767px) {
	.single-offer-items .offer-content {
		padding: 90px 30px;
	}
}
.single-offer-items .offer-content h5 {
	font-weight: 700;
	color: var(--secondaryColor);
	margin-bottom: 5px;
}
.single-offer-items .offer-content h3 {
	font-size: 55px;
	color: var(--whiteColor);
}
@media (max-width: 575px) {
	.single-offer-items .offer-content h3 {
		font-size: 42px;
	}
}
.single-offer-items.style-2 .offer-content {
	padding: 60px 45px;
}
.single-offer-items.style-2 .offer-content h3 {
	font-size: 55px;
	margin-bottom: 5px;
}
@media (max-width: 575px) {
	.single-offer-items.style-2 .offer-content h3 {
		font-size: 36px;
	}
}
.single-offer-items.style-2 .offer-content p {
	font-size: 16px;
	font-weight: 500;
	color: var(--whiteColor);
}
.single-offer-items.style-2 .offer-img {
	position: absolute;
	top: 30%;
	left: 43%;
	-webkit-animation: scale-up-two 6s infinite linear;
	animation: scale-up-two 6s infinite linear;
}
@media (max-width: 1399px) {
	.single-offer-items.style-2 .offer-img {
		top: 15%;
		left: 58%;
	}
}
@media (max-width: 1199px) {
	.single-offer-items.style-2 .offer-img {
		top: 30%;
		left: 43%;
	}
}
@media (max-width: 767px) {
	.single-offer-items.style-2 .offer-img {
		top: 15%;
		left: 60%;
	}
}
.single-offer-items.style-2 .roller-box {
	position: absolute;
	right: -20px;
	bottom: -10px;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
	.single-offer-items.style-2 .roller-box {
		width: 300px;
	}
	.single-offer-items.style-2 .roller-box img {
		width: 100%;
		height: 100%;
	}
}
@media (max-width: 1199px) {
	.single-offer-items.style-2 .roller-box {
		width: initial;
	}
}
@media (max-width: 575px) {
	.single-offer-items.style-2 .roller-box {
		width: 250px;
		right: 0;
		bottom: 0;
	}
	.single-offer-items.style-2 .roller-box img {
		width: 100%;
		height: 100%;
	}
}
.single-offer-items.style-2:hover .roller-box {
	right: -50px;
}
.single-offer-items.style-3 {
	border-radius: 9px;
}
.single-offer-items.style-3 .offer-content {
	margin-bottom: 20px;
	padding: 50px 35px;
	position: relative;
	z-index: 9;
}
.single-offer-items.style-3 .offer-content h3 {
	margin-bottom: 20px;
	font-size: 38px;
	font-weight: 700;
}
.single-offer-items.style-3 .offer-image-2 {
	position: absolute;
	top: 0;
	right: 5%;
	animation: 4s linear 0s infinite normal none running rounded;
}
.single-offer-items.style-3 .small-pizza {
	position: absolute;
	bottom: 0;
	right: 0;
	transition: all 0.4s ease-in-out;
}
.single-offer-items.style-3 .french-content {
	padding: 50px 35px;
	position: relative;
	z-index: 9;
}
.single-offer-items.style-3 .french-content span {
	font-size: 14px;
	color: var(--secondaryColor);
	font-weight: 500;
}
.single-offer-items.style-3 .french-content h4 {
	font-size: 26px;
	font-style: italic;
	color: var(--whiteColor);
	text-transform: capitalize;
	font-weight: 500;
	color: var(--mainColor);
	margin-bottom: 10px;
}
.single-offer-items.style-3 .french-content h4 span {
	font-size: 14px;
	font-family: var(--fontFamily);
	margin-right: 5px;
	color: var(--whiteColor);
}
.single-offer-items.style-3 .french-content h3 {
	font-size: 40px;
	color: var(--whiteColor);
	margin-bottom: 10px;
}
.single-offer-items.style-3 .french-content h5 {
	color: var(--whiteColor);
	text-transform: capitalize;
	margin-bottom: 40px;
	font-weight: 500;
}
.single-offer-items.style-3 .french-content .theme-btn {
	background-color: var(--mainColor) !important;
	padding: 16px 40px;
}
.single-offer-items.style-3 .french-content .theme-btn .button-content-wrapper .button-icon i {
	margin-left: 10px;
}
.single-offer-items.style-3 .french-content .theme-btn .button-content-wrapper .button-text {
	font-weight: 500;
	color: var(--blackColor) !important;
	font-size: 17px;
	text-transform: capitalize;
}
.single-offer-items.style-3 .french-content .theme-btn:hover {
	color: var(--blackColor);
}
.single-offer-items.style-3 .french-content .theme-btn:hover::before {
	background-color: var(--whiteColor);
}
.single-offer-items.style-3 .french-image {
	position: absolute;
	bottom: 0;
	right: 0;
	transition: all 0.4s ease-in-out;
}
.single-offer-items.style-3 .noodles-image {
	position: absolute;
	right: 0;
	bottom: 40px;
	width: 205px;
	transition: all 0.4s ease-in-out;
}
.single-offer-items.style-3 .noodles-image img {
	width: 100%;
	height: 100%;
}
.single-offer-items.style-3 .chicken-image {
	position: absolute;
	right: 0;
	bottom: 0;
	transition: all 0.4s ease-in-out;
}
.single-offer-items.style-3 .offer-shape-3 {
	position: absolute;
	right: 30%;
	top: 20%;
	animation: 4s linear 0s infinite normal none running rounded;
}
.single-offer-items.style-3 .main-food-3 {
	position: absolute;
	right: 0;
	bottom: 0;
	transition: all 0.4s ease-in-out;
}
.single-offer-items.style-3:hover .small-pizza, .single-offer-items.style-3:hover .chicken-image {
	transform: scale(1.1);
}
.single-offer-items.style-3:hover .french-image {
	right: -30px;
}
.single-offer-items.style-3:hover .main-food-3 {
	transform: scale(1.1);
}
.single-offer-items.style-3:hover .noodles-image {
	right: -30px;
}
.single-offer-items.style-4 {
	border-radius: 0;
	padding: 60px 45px;
	overflow: hidden;
	width: 100%;
}
.single-offer-items.style-4 .burger-comboo-content {
	position: relative;
	z-index: 9;
}
.single-offer-items.style-4 .burger-comboo-content h4 {
	font-size: 26px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--mainColor);
}
@media (max-width: 575px) {
	.single-offer-items.style-4 .burger-comboo-content h4 {
		font-size: 22px;
	}
}
.single-offer-items.style-4 .burger-comboo-content h3 {
	font-size: 40px;
	color: var(--whiteColor);
	margin-bottom: 15px;
}
@media (max-width: 575px) {
	.single-offer-items.style-4 .burger-comboo-content h3 {
		margin-bottom: 10px;
	}
}
.single-offer-items.style-4 .burger-comboo-content h2 {
	font-size: 44px;
	color: var(--whiteColor);
	margin-top: 20px;
}
@media (max-width: 575px) {
	.single-offer-items.style-4 .burger-comboo-content h2 {
		font-size: 36px;
		margin-top: 15px;
	}
}
.single-offer-items.style-4 .burger-comboo-content h2 span {
	font-size: 20px;
	font-weight: 600;
}
.single-offer-items.style-4 .chicken-content {
	position: relative;
	z-index: 9;
}
.single-offer-items.style-4 .chicken-content h5 {
	color: var(--secondaryColor);
	margin-bottom: 5px;
}
.single-offer-items.style-4 .chicken-content h3 {
	font-size: 53px;
	color: var(--whiteColor);
}
@media (max-width: 575px) {
	.single-offer-items.style-4 .chicken-content h3 {
		font-size: 40px;
	}
}
.single-offer-items.style-4 .chicken-content h6 {
	text-transform: initial;
	color: var(--whiteColor);
	margin-top: 10px;
}
.single-offer-items.style-4 .french-image {
	position: absolute;
	bottom: 15%;
	right: 0;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
	.single-offer-items.style-4 .french-image {
		width: 250px;
	}
	.single-offer-items.style-4 .french-image img {
		width: 100%;
	}
}
.single-offer-items.style-4 .chicken-text {
	position: relative;
	z-index: 9;
}
.single-offer-items.style-4 .chicken-french-image {
	position: absolute;
	bottom: 10%;
	right: 5%;
	transition: all 0.4s ease-in-out;
}
.single-offer-items.style-4:hover .french-image {
	right: -30px;
}
.single-offer-items.style-4:hover .chicken-french-image {
	transform: scale(1.1);
}
.single-offer-items:hover .main-food {
	transform: scale(1.1);
}

.pizza-banner-items {
	padding: 60px 50px;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}
@media (max-width: 1399px) {
	.pizza-banner-items {
		padding: 60px 30px;
	}
}
@media (max-width: 1199px) {
	.pizza-banner-items {
		padding: 60px 50px;
	}
}
@media (max-width: 767px) {
	.pizza-banner-items {
		padding: 60px 30px;
		background-size: 300%;
	}
}
.pizza-banner-items .pizza-image {
	position: absolute;
	right: 0;
	bottom: -40px;
	transition: all 0.4s ease-in-out;
	z-index: 99;
}
@media (max-width: 1399px) {
	.pizza-banner-items .pizza-image {
		max-width: 300px;
		bottom: 0;
	}
	.pizza-banner-items .pizza-image img {
		width: 100%;
		height: 100%;
	}
}
@media (max-width: 1199px) {
	.pizza-banner-items .pizza-image {
		max-width: initial;
		bottom: -40px;
	}
}
@media (max-width: 767px) {
	.pizza-banner-items .pizza-image {
		width: 270px;
		bottom: -10px;
	}
	.pizza-banner-items .pizza-image img {
		width: 100%;
		height: 100%;
	}
}
.pizza-banner-items .pizza-text {
	position: relative;
	z-index: 9;
}
.pizza-banner-items .pizza-text-2 {
	position: absolute;
	right: 15%;
	top: 5px;
}
@media (max-width: 767px) {
	.pizza-banner-items .pizza-text-2 {
		top: 30px;
	}
}
.pizza-banner-items:hover .pizza-image {
	transform: scale(1.1);
}

.burger-banner-items {
	border-radius: 20px;
	position: relative;
}
.burger-banner-items .burger-content {
	padding: 100px 40px;
	max-width: 300px;
	position: relative;
	z-index: 9;
}
@media (max-width: 767px) {
	.burger-banner-items .burger-content {
		width: 280px;
		padding: 100px 30px;
	}
}
@media (max-width: 575px) {
	.burger-banner-items .burger-content {
		width: 250px;
		padding: 70px 20px;
	}
}
.burger-banner-items .burger-content h2, .burger-banner-items .burger-content h3 {
	color: var(--whiteColor);
}
.burger-banner-items .burger-content h4 {
	font-size: 40px;
	color: var(--whiteColor);
	margin-top: 10px;
}
@media (max-width: 575px) {
	.burger-banner-items .burger-content h4 {
		font-size: 36px;
	}
}
.burger-banner-items .burger-content h4 span {
	color: var(--mainColor);
}
.burger-banner-items .burger-image {
	position: absolute;
	bottom: 0;
	right: 0;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
	.burger-banner-items .burger-image {
		width: 350px;
		bottom: -12px;
		right: 0;
	}
	.burger-banner-items .burger-image img {
		width: 100%;
		height: 100%;
	}
}
@media (max-width: 1199px) {
	.burger-banner-items .burger-image {
		width: 300px;
		right: 50px;
	}
}
@media (max-width: 767px) {
	.burger-banner-items .burger-image {
		width: 250px;
		bottom: 0;
		right: 0;
	}
}
@media screen and (max-width: 500px) {
	.burger-banner-items .burger-image {
		width: 180px;
	}
}
.burger-banner-items:hover .burger-image {
	transform: scale(1.1);
}
.burger-banner-items .text-shape {
	position: absolute;
	top: 40px;
	right: 65px;
}
@media (max-width: 1199px) {
	.burger-banner-items .text-shape {
		top: 25px;
	}
}
@media (max-width: 575px) {
	.burger-banner-items .text-shape {
		display: none;
	}
}
.burger-banner-items .burger-text {
	position: absolute;
	top: 20%;
	left: 38%;
	animation: 5s linear 0s infinite normal none running rounded;
}
@media (max-width: 1199px) {
	.burger-banner-items .burger-text {
		left: 30%;
	}
}
@media (max-width: 767px) {
	.burger-banner-items .burger-text {
		left: 35%;
	}
}
@media (max-width: 575px) {
	.burger-banner-items .burger-text {
		display: none;
	}
}

.grilled-banner {
	position: relative;
}
.grilled-banner .patato-shape {
	position: absolute;
	bottom: -80px;
	left: -40px;
}
@media (max-width: 1399px) {
	.grilled-banner .patato-shape {
		display: none;
	}
}
.grilled-banner .offer-shape {
	position: absolute;
	bottom: 33%;
	left: 2%;
}
@media (max-width: 1399px) {
	.grilled-banner .offer-shape {
		bottom: 30%;
		left: 35%;
	}
}
@media (max-width: 1199px) {
	.grilled-banner .offer-shape {
		display: none;
	}
}
.grilled-banner .text-shape {
	position: absolute;
	bottom: 20%;
	left: 52%;
	transform: rotate(30.01deg);
	animation: rounded 5s linear infinite;
}
@media (max-width: 991px) {
	.grilled-banner .text-shape {
		display: none;
	}
}
.grilled-banner .spicy-shape {
	position: absolute;
	right: 7%;
	top: 15%;
	-webkit-animation: rotate 15s linear infinite;
	animation: rotate 15s linear infinite;
}
@media (max-width: 1399px) {
	.grilled-banner .spicy-shape {
		top: 5%;
		right: 2%;
	}
}
@media (max-width: 1199px) {
	.grilled-banner .spicy-shape {
		top: 65%;
		right: 5%;
	}
	.grilled-banner .spicy-shape img {
		width: 60%;
	}
}
.grilled-banner .tomato-shape {
	position: absolute;
	right: 0;
	bottom: 0;
}

.grilled-wrapper .grilled-content {
	position: relative;
	z-index: 99;
}
@media (max-width: 991px) {
	.grilled-wrapper .grilled-content {
		text-align: center;
	}
}
.grilled-wrapper .grilled-content h4 {
	color: var(--whiteColor);
	font-size: 28px;
	margin-bottom: 5px;
}
@media (max-width: 575px) {
	.grilled-wrapper .grilled-content h4 {
		font-size: 22px;
	}
}
.grilled-wrapper .grilled-content h2 {
	color: var(--whiteColor);
}
.grilled-wrapper .grilled-content h2 span {
	color: var(--mainColor);
}
@media (max-width: 1199px) {
	.grilled-wrapper .grilled-content h2 {
		font-size: 66px;
	}
}
@media (max-width: 991px) {
	.grilled-wrapper .grilled-content h2 {
		font-size: 56px;
	}
}
@media (max-width: 575px) {
	.grilled-wrapper .grilled-content h2 {
		font-size: 46px;
	}
}
.grilled-wrapper .grilled-content h3 {
	margin-top: 20px;
}
@media (max-width: 1199px) {
	.grilled-wrapper .grilled-content h3 {
		font-size: 40px;
	}
}
@media (max-width: 991px) {
	.grilled-wrapper .grilled-content h3 {
		font-size: 36px;
	}
}
@media (max-width: 575px) {
	.grilled-wrapper .grilled-content h3 {
		font-size: 28px;
	}
}
.grilled-wrapper .grilled-content h3 a {
	color: var(--whiteColor);
}
.grilled-wrapper .grilled-content h3 a .text-1 {
	color: var(--mainColor);
}
.grilled-wrapper .grilled-content h3 .text-2 {
	font-size: 28px;
	color: var(--mainColor);
}
.grilled-wrapper .grilled-content h3 sup {
	margin-top: 10px;
}
.grilled-wrapper .grilled-content .grilled-button {
	margin-top: 40px;
}
.grilled-wrapper .grilled-image img {
	width: 100%;
	height: 100%;
}

.food-comboo-section {
	position: relative;
}
.food-comboo-section .drinks-shape {
	position: absolute;
	bottom: 0;
	left: 0;
}
@media (max-width: 1399px) {
	.food-comboo-section .drinks-shape {
		display: none;
	}
}

@media (max-width: 1199px) {
	.comboo-wrapper {
		padding-bottom: 180px;
	}
}
@media (max-width: 1199px) {
	.comboo-wrapper .food-comboo-content {
		padding-bottom: 180px;
	}
}
.comboo-wrapper .food-comboo-content .nav {
	border: unset;
	margin-top: 40px;
	display: inline-block;
}
.comboo-wrapper .food-comboo-content .nav .nav-link {
	padding: 0;
	border: unset;
	background: none;
	max-width: 500px;
	width: 100%;
}
.comboo-wrapper .food-comboo-content .nav .nav-link:not(:last-child) {
	margin-bottom: 25px;
}
.comboo-wrapper .food-comboo-content .nav .nav-link .food-comboo-list {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 15px 30px;
	background-color: var(--backgroundColor);
	border-radius: 5px;
}
@media screen and (max-width: 470px) {
	.comboo-wrapper .food-comboo-content .nav .nav-link .food-comboo-list {
		padding: 15px 15px;
		gap: 15px;
	}
}
.comboo-wrapper .food-comboo-content .nav .nav-link .food-comboo-list .comboo-title {
	font-size: 17px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--blackColor);
}
.comboo-wrapper .food-comboo-content .nav .nav-link.active .food-comboo-list {
	background-color: var(--mainColor);
}
.comboo-wrapper .comboo-image {
	width: 898px;
	height: 780px;
	position: absolute;
	bottom: 0;
	right: 0;
}
@media (max-width: 1399px) {
	.comboo-wrapper .comboo-image {
		width: 630px;
		height: 780px;
	}
}
@media (max-width: 1199px) {
	.comboo-wrapper .comboo-image {
		width: 1180px;
		height: 410px;
		left: 0;
		bottom: 0;
	}
}
@media (max-width: 991px) {
	.comboo-wrapper .comboo-image {
		width: 990px;
	}
}
@media (max-width: 767px) {
	.comboo-wrapper .comboo-image {
		width: 770px;
		height: 400px;
	}
}
@media (max-width: 575px) {
	.comboo-wrapper .comboo-image {
		left: 0;
		bottom: 0;
		right: 0;
	}
}
.comboo-wrapper .comboo-image .pizza-text {
	position: absolute;
	top: 15%;
	left: 10px;
	z-index: 9;
	-webkit-animation: tpswing 4s forwards infinite alternate;
	animation: tpswing 4s forwards infinite alternate;
}
@media (max-width: 1399px) {
	.comboo-wrapper .comboo-image .pizza-text {
		top: 20%;
		left: 10px;
	}
}
@media (max-width: 1199px) {
	.comboo-wrapper .comboo-image .pizza-text {
		top: 15%;
		left: 10px;
	}
}
@media (max-width: 767px) {
	.comboo-wrapper .comboo-image .pizza-text {
		top: 3%;
	}
}
@media (max-width: 575px) {
	.comboo-wrapper .comboo-image .pizza-text {
		display: none;
	}
}
.comboo-wrapper .comboo-image .offer-shape {
	position: absolute;
	top: 10%;
	left: 40%;
	-webkit-animation: scale-up-two 6s infinite linear;
	animation: scale-up-two 6s infinite linear;
}
@media (max-width: 1399px) {
	.comboo-wrapper .comboo-image .offer-shape {
		top: 0%;
		left: 30%;
	}
}
@media (max-width: 991px) {
	.comboo-wrapper .comboo-image .offer-shape {
		top: 10%;
		left: 40%;
	}
}
@media (max-width: 767px) {
	.comboo-wrapper .comboo-image .offer-shape {
		left: 50%;
		top: 0;
	}
}
@media (max-width: 575px) {
	.comboo-wrapper .comboo-image .offer-shape {
		left: 8%;
	}
}
.comboo-wrapper .comboo-image .vegetable-shape {
	position: absolute;
	top: 5%;
	right: 10%;
	-webkit-animation: tpswing 3s forwards infinite alternate;
	animation: tpswing 3s forwards infinite alternate;
}
.comboo-wrapper .comboo-image .pizza-image {
	position: absolute;
	top: 25%;
	left: -12%;
	max-width: 1100px;
}
.comboo-wrapper .comboo-image .pizza-image img {
	width: 100%;
}
@media (max-width: 1399px) {
	.comboo-wrapper .comboo-image .pizza-image {
		top: 45%;
		left: -10%;
	}
}
@media (max-width: 1199px) {
	.comboo-wrapper .comboo-image .pizza-image {
		top: 25%;
		left: 20%;
		max-width: 625px;
	}
}
@media (max-width: 991px) {
	.comboo-wrapper .comboo-image .pizza-image {
		max-width: 500px;
		left: 120px;
		top: 40%;
	}
}
@media (max-width: 767px) {
	.comboo-wrapper .comboo-image .pizza-image {
		left: 50px;
		top: 35%;
	}
}
@media (max-width: 575px) {
	.comboo-wrapper .comboo-image .pizza-image {
		top: 37%;
		left: -6%;
	}
}

.kfc-wrapper .kfc-image-items {
	position: absolute;
	top: 0;
	left: 0;
	width: 1017px;
	height: 730px;
}
@media (max-width: 1399px) {
	.kfc-wrapper .kfc-image-items {
		width: 700px;
		height: 700px;
	}
}
@media (max-width: 1199px) {
	.kfc-wrapper .kfc-image-items {
		width: 600px;
		height: 730px;
	}
}
@media (max-width: 991px) {
	.kfc-wrapper .kfc-image-items {
		width: 1000px;
		height: 500px;
	}
}
@media (max-width: 575px) {
	.kfc-wrapper .kfc-image-items {
		width: 800px;
		height: 400px;
		bottom: 0;
	}
}
.kfc-wrapper .kfc-image-items .kfc-image {
	position: absolute;
	left: 0;
	bottom: -30px;
	width: 960px;
	transition: all 0.4s ease-in-out;
}
.kfc-wrapper .kfc-image-items .kfc-image img {
	width: 100%;
}
@media (max-width: 1399px) {
	.kfc-wrapper .kfc-image-items .kfc-image {
		bottom: 0px;
		width: 600px;
	}
}
@media (max-width: 1199px) {
	.kfc-wrapper .kfc-image-items .kfc-image {
		width: 500px;
		bottom: 10%;
	}
}
@media (max-width: 991px) {
	.kfc-wrapper .kfc-image-items .kfc-image {
		left: 50px;
		bottom: 0;
	}
}
@media (max-width: 575px) {
	.kfc-wrapper .kfc-image-items .kfc-image {
		width: 400px;
		bottom: 0;
	}
}
@media screen and (max-width: 400px) {
	.kfc-wrapper .kfc-image-items .kfc-image {
		bottom: 10px;
		width: 340px;
	}
}
.kfc-wrapper .kfc-image-items:hover .kfc-image {
	left: -30px;
}
.kfc-wrapper .kfc-image-items .offer-shape {
	position: absolute;
	top: 15%;
	left: 50%;
	animation: 4s linear 0s infinite normal none running rounded;
}
@media (max-width: 767px) {
	.kfc-wrapper .kfc-image-items .offer-shape {
		top: 12%;
		left: 25%;
	}
}
@media (max-width: 575px) {
	.kfc-wrapper .kfc-image-items .offer-shape {
		top: 10%;
		left: 20%;
	}
}
@media screen and (max-width: 400px) {
	.kfc-wrapper .kfc-image-items .offer-shape {
		left: 10%;
	}
}
.kfc-wrapper .kfc-content {
	margin-left: 80px;
}
@media (max-width: 991px) {
	.kfc-wrapper .kfc-content {
		margin-top: 460px;
		margin-left: 0;
	}
}
@media (max-width: 575px) {
	.kfc-wrapper .kfc-content {
		margin-top: 365px;
	}
}
.kfc-wrapper .kfc-content .countdown-items {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
}
.kfc-wrapper .kfc-content .countdown-items li span {
	font-size: 44px;
	font-weight: 600;
	color: var(--secondaryColor);
}
.kfc-wrapper .kfc-content .countdown-items li p {
	font-size: 19px;
	font-weight: 500;
	color: var(--blackColor);
}

.main-cta-banner {
	position: relative;
}
.main-cta-banner::before {
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: var(--backgroundColor);
}

.main-cta-banner-wrapper {
	padding: 120px 100px;
	border-radius: 20px;
	position: relative;
	z-index: 9;
}
@media (max-width: 1199px) {
	.main-cta-banner-wrapper {
		padding: 120px 60px;
	}
}
@media (max-width: 767px) {
	.main-cta-banner-wrapper {
		padding: 70px 50px;
		text-align: center;
	}
}
@media (max-width: 575px) {
	.main-cta-banner-wrapper {
		padding: 60px 40px;
	}
}
.main-cta-banner-wrapper .arrow-shape {
	position: absolute;
	top: 18%;
	left: 50%;
}
@media (max-width: 767px) {
	.main-cta-banner-wrapper .arrow-shape {
		display: none;
	}
}
.main-cta-banner-wrapper .frame-shape {
	position: absolute;
	top: 20%;
	left: 42%;
}
@media (max-width: 767px) {
	.main-cta-banner-wrapper .frame-shape {
		display: none;
	}
}
.main-cta-banner-wrapper .delivery-man {
	position: absolute;
	right: 0;
	bottom: 0;
	top: -10%;
}
@media (max-width: 1199px) {
	.main-cta-banner-wrapper .delivery-man {
		right: -35px;
	}
}
@media (max-width: 991px) {
	.main-cta-banner-wrapper .delivery-man {
		width: 320px;
		top: 30%;
	}
	.main-cta-banner-wrapper .delivery-man img {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.main-cta-banner-wrapper .delivery-man {
		display: none;
	}
}

.main-cta-banner-2 {
	position: relative;
}
.main-cta-banner-2 .tomato-shape-left {
	position: absolute;
	left: 0;
	bottom: 0;
}
.main-cta-banner-2 .chili-shape-right {
	position: absolute;
	top: 30%;
	right: 0;
}

.main-cta-banner-wrapper-2 {
	position: relative;
}
@media (max-width: 767px) {
	.main-cta-banner-wrapper-2 {
		flex-wrap: wrap;
		gap: 30px;
		justify-content: center !important;
		text-align: center;
	}
}
.main-cta-banner-wrapper-2 .delivery-man {
	position: absolute;
	right: 15%;
	bottom: -30%;
}
@media (max-width: 1399px) {
	.main-cta-banner-wrapper-2 .delivery-man {
		right: 22%;
		bottom: -55%;
		width: 400px;
	}
	.main-cta-banner-wrapper-2 .delivery-man img {
		width: 100%;
		height: 100%;
	}
}
@media (max-width: 1199px) {
	.main-cta-banner-wrapper-2 .delivery-man {
		width: 350px;
	}
}
@media (max-width: 991px) {
	.main-cta-banner-wrapper-2 .delivery-man {
		display: none;
	}
}

.main-cta-banner-wrapper-3 {
	position: relative;
	padding: 100px;
	background-attachment: fixed;
}
@media (max-width: 991px) {
	.main-cta-banner-wrapper-3 {
		padding: 80px 50px;
	}
}
@media (max-width: 1199px) {
	.main-cta-banner-wrapper-3 {
		padding: 90px 70px;
	}
}
@media (max-width: 575px) {
	.main-cta-banner-wrapper-3 {
		padding: 60px 40px;
	}
}
.main-cta-banner-wrapper-3 .fry-shape {
	position: absolute;
	top: 40px;
	left: 40px;
	z-index: 9;
	animation: 4s linear 0s infinite normal none running rounded;
}
.main-cta-banner-wrapper-3 .frame-shape {
	position: absolute;
	top: 55px;
	left: 60%;
	z-index: 9;
}
@media (max-width: 991px) {
	.main-cta-banner-wrapper-3 .frame-shape {
		display: none;
	}
}
.main-cta-banner-wrapper-3 .frame-shape-2 {
	position: absolute;
	top: 40px;
	right: 40px;
	z-index: 9;
	animation: 3s linear 0s infinite normal none running rounded;
}
.main-cta-banner-wrapper-3::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, #F4F1EA 67.2%, rgba(244, 241, 234, 0) 100%);
}
.main-cta-banner-wrapper-3 .cta-content {
	position: relative;
	z-index: 9;
}
.main-cta-banner-wrapper-3 .cta-content h3 {
	font-size: 48px;
	text-transform: capitalize;
	color: var(--blackColor);
	font-weight: 700;
	margin-bottom: 15px;
}
@media (max-width: 1199px) {
	.main-cta-banner-wrapper-3 .cta-content h3 {
		font-size: 42px;
	}
}
@media (max-width: 575px) {
	.main-cta-banner-wrapper-3 .cta-content h3 {
		font-size: 34px;
		margin-bottom: 10px;
	}
}
.main-cta-banner-wrapper-3 .newsletter-items {
	position: relative;
	z-index: 9;
}
.main-cta-banner-wrapper-3 .newsletter-items input {
	width: 100%;
	background-color: var(--whiteColor);
	border: none;
	outline: none;
	text-transform: capitalize;
	font-size: 16px;
	color: var(--textColor);
	padding: 20px 50px;
	position: relative;
}
.main-cta-banner-wrapper-3 .newsletter-items .icon {
	position: absolute;
	left: 20px;
	top: 20px;
	font-size: 16px;
	color: var(--textColor);
}
.main-cta-banner-wrapper-3 .newsletter-items .input-save {
	margin-top: 20px;
}
.main-cta-banner-wrapper-3 .newsletter-items .input-save input {
	width: 15px;
	height: 15px;
	border: 1px solid rgba(12, 15, 38, 0.2);
	background-color: var(--secondaryColor);
	outline: none;
	color: var(--secondaryColor);
	padding: 5px;
	border-radius: 0;
}
.main-cta-banner-wrapper-3 .newsletter-items .input-save label {
	margin-left: 10px;
	color: var(--textColor);
	text-transform: capitalize;
	font-size: 16px;
}
.main-cta-banner-wrapper-3 .newsletter-items .input-save label a {
	font-weight: 500;
	color: var(--blackColor);
	text-decoration: underline;
}

.instagram-banner-items .banner-image {
	position: relative;
}
@media (max-width: 767px) {
	.instagram-banner-items .banner-image {
		height: 450px;
	}
	.instagram-banner-items .banner-image img {
		object-fit: cover;
	}
}
@media (max-width: 575px) {
	.instagram-banner-items .banner-image {
		height: 380px;
	}
}
.instagram-banner-items .banner-image img {
	width: 100%;
	height: 380px;
	object-fit: cover;
}
.instagram-banner-items .banner-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	background-color: rgba(33, 33, 33, 0.9);
	transform: scale(1, 0);
	transition: transform 500ms ease;
	transform-origin: bottom center;
	z-index: 1;
}
.instagram-banner-items .banner-image .icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 99;
	color: var(--whiteColor);
	opacity: 0;
	transition: all 0.4s ease-in-out;
	font-size: 24px;
}
.instagram-banner-items:hover .banner-image::before {
	transform: scale(1, 1);
	transform-origin: top center;
}
.instagram-banner-items:hover .banner-image .icon {
	opacity: 1;
}
.instagram-banner-items.style-2 .banner-image::before {
	background-color: rgba(0, 129, 61, 0.9);
}

.pasta-banner-items {
	padding: 50px 35px;
	border-radius: 9px;
	position: relative;
}
.pasta-banner-items .pasta-content {
	position: relative;
	z-index: 9;
}
.pasta-banner-items .pasta-food {
	position: absolute;
	bottom: 50px;
	right: 0;
	transition: all 0.4s ease-in-out;
}
.pasta-banner-items .pasta-content span {
	font-size: 14px;
	font-weight: 500;
	color: var(--secondaryColor);
}
.pasta-banner-items .pasta-content h3 {
	font-size: 36px;
	color: var(--whiteColor);
}
.pasta-banner-items:hover .pasta-food {
	transform: scale(1.1);
}

.food-banner-section-2 {
	position: relative;
}
.food-banner-section-2::before {
	position: absolute;
	top: 40%;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	width: 100%;
	height: 100%;
	background-color: var(--backgroundColor);
	z-index: -1;
}

.main-food-wrapper .pizza-banner-items-2 {
	padding: 100px 50px;
	position: relative;
}
.main-food-wrapper .pizza-banner-items-2 .tomato-left-shape {
	position: absolute;
	left: 0;
	top: 40%;
	transform: translateY(-50%);
}
@media (max-width: 767px) {
	.main-food-wrapper .pizza-banner-items-2 {
		padding: 70px 50px;
	}
}
@media (max-width: 575px) {
	.main-food-wrapper .pizza-banner-items-2 {
		padding: 60px 40px;
	}
}
.main-food-wrapper .pizza-banner-items-2 .pizza-content h3 {
	color: var(--whiteColor);
}
.main-food-wrapper .pizza-banner-items-2 .pizza-content h2 {
	color: var(--whiteColor);
}
.main-food-wrapper .pizza-banner-items-2 .pizza-content h4 {
	font-size: 40px;
	color: var(--whiteColor);
	margin-top: 10px;
	font-weight: 600;
}
.main-food-wrapper .pizza-banner-items-2 .pizza-content h4 span {
	font-weight: 500;
}
.main-food-wrapper .pizza-banner-items-2 .pizza-image {
	max-width: 800px;
	margin-top: 90px;
	transition: all 0.4s ease-in-out;
}
.main-food-wrapper .pizza-banner-items-2 .pizza-image img {
	width: 100%;
	height: 100%;
}
.main-food-wrapper .pizza-banner-items-2 .offer-shape {
	position: absolute;
	top: 30%;
	right: 10%;
	animation: 4s linear 0s infinite normal none running rounded;
}
.main-food-wrapper .pizza-banner-items-2:hover .pizza-image {
	transform: scale(1.1);
}

.food-banner-items-2 {
	padding: 75px 70px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
	.food-banner-items-2 {
		padding: 75px 60px;
	}
}
@media (max-width: 1199px) {
	.food-banner-items-2 {
		padding: 70px 50px;
	}
}
@media (max-width: 575px) {
	.food-banner-items-2 {
		padding: 50px 40px;
	}
}
.food-banner-items-2 .price {
	width: 112px;
	height: 107px;
	line-height: 107px;
	text-align: center;
	position: absolute;
	top: 50px;
	right: 50px;
}
@media (max-width: 1399px) {
	.food-banner-items-2 .price {
		top: 40px;
		right: 40px;
		width: 90px;
		line-height: 90px;
	}
}
@media (max-width: 1199px) {
	.food-banner-items-2 .price {
		top: 40px;
		right: 40px;
		width: 112px;
		height: 107px;
		line-height: 107px;
	}
}
@media (max-width: 575px) {
	.food-banner-items-2 .price {
		width: 70px;
		height: 70px;
		line-height: 70px;
		top: 30px;
		right: 30px;
	}
}
.food-banner-items-2 .price span {
	color: var(--blackColor);
	font-size: 55px;
	font-weight: 600;
}
@media (max-width: 575px) {
	.food-banner-items-2 .price span {
		font-size: 32px;
	}
}
.food-banner-items-2 .price.style-2 span {
	color: var(--whiteColor);
}
.food-banner-items-2 .food-content h4 {
	color: var(--mainColor);
	margin-bottom: 5px;
}

.today-best-sale-wrapper .today-best-sale-image-slider {
	position: relative;
}
.today-best-sale-wrapper .today-best-sale-image-slider .array-button {
	display: grid;
	position: absolute;
	top: 50%;
	right: -5%;
	transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
	.today-best-sale-wrapper .today-best-sale-image-slider .array-button {
		display: none;
	}
}
.today-best-sale-wrapper .today-best-sale-image-slider .array-button .array-prev, .today-best-sale-wrapper .today-best-sale-image-slider .array-button .array-next {
	width: 65px;
	height: 65px;
	line-height: 65px;
	text-align: center;
	background-color: var(--mainColor);
	border-radius: 0;
	border: none;
	color: var(--blackColor);
}
.today-best-sale-wrapper .today-best-sale-image-slider .array-button .array-prev {
	background-color: var(--whiteColor);
}
.today-best-sale-wrapper .today-best-sale-image {
	height: 800px;
}
@media (max-width: 767px) {
	.today-best-sale-wrapper .today-best-sale-image {
		height: 500px;
	}
}
@media (max-width: 575px) {
	.today-best-sale-wrapper .today-best-sale-image {
		height: 380px;
	}
}
.today-best-sale-wrapper .best-sale-content {
	background-color: var(--secondaryColor);
	padding: 120px 100px;
	height: 100%;
	position: relative;
	z-index: 99;
}
@media (max-width: 1399px) {
	.today-best-sale-wrapper .best-sale-content {
		padding: 80px 60px;
	}
}
@media (max-width: 575px) {
	.today-best-sale-wrapper .best-sale-content {
		padding: 70px 50px;
	}
}
.today-best-sale-wrapper .best-sale-content .burger-shape {
	position: absolute;
	top: 65px;
	right: 10%;
	animation: rounded 5s linear infinite;
}
@media (max-width: 991px) {
	.today-best-sale-wrapper .best-sale-content .burger-shape {
		display: none;
	}
}
.today-best-sale-wrapper .best-sale-content .fry-shape {
	position: absolute;
	bottom: 65px;
	right: 10%;
	animation: rounded 3s linear infinite;
}
@media (max-width: 991px) {
	.today-best-sale-wrapper .best-sale-content .fry-shape {
		display: none;
	}
}
.today-best-sale-wrapper .best-sale-content h4 {
	font-size: 24px;
	color: var(--whiteColor);
	text-transform: capitalize;
}
@media (max-width: 767px) {
	.today-best-sale-wrapper .best-sale-content h4 {
		margin-bottom: 10px;
		font-size: 20px;
	}
}
.today-best-sale-wrapper .best-sale-content h2 {
	color: var(--whiteColor);
	margin-bottom: 50px;
}
@media (max-width: 575px) {
	.today-best-sale-wrapper .best-sale-content h2 {
		margin-bottom: 20px;
	}
}
@media (max-width: 767px) {
	.today-best-sale-wrapper .best-sale-content h2 {
		margin-bottom: 30px;
	}
}
.today-best-sale-wrapper .best-sale-content h3 {
	font-size: 55px;
	color: var(--whiteColor);
	text-transform: capitalize;
	position: relative;
	padding-left: 80px;
}
@media (max-width: 575px) {
	.today-best-sale-wrapper .best-sale-content h3 {
		font-size: 42px;
	}
}
.today-best-sale-wrapper .best-sale-content h3::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-repeat: no-repeat;
	animation: 4s linear 0s infinite normal none running rounded-2;
}
.today-best-sale-wrapper .best-sale-content h3 span {
	font-size: 24px;
	font-weight: 500;
}
@media (max-width: 575px) {
	.today-best-sale-wrapper .best-sale-content h3 span {
		font-size: 22px;
	}
}
.today-best-sale-wrapper .best-sale-content p {
	font-size: 20px;
	color: var(--whiteColor);
	margin-top: 50px;
}
@media (max-width: 767px) {
	.today-best-sale-wrapper .best-sale-content p {
		margin-top: 30px;
	}
}
@media (max-width: 575px) {
	.today-best-sale-wrapper .best-sale-content p {
		margin-top: 20px;
	}
}
.today-best-sale-wrapper .best-sale-content .button-area {
	margin-top: 50px;
}
@media (max-width: 575px) {
	.today-best-sale-wrapper .best-sale-content .button-area {
		margin-top: 35px;
	}
}
.today-best-sale-wrapper .best-sale-content.style-2 {
	background-color: var(--primaryColor);
}

.food-banner-section-3 {
	position: relative;
	z-index: 9;
	margin-bottom: -50px;
}
.food-banner-section-3.seven__ {
	position: relative;
	z-index: 9;
	margin-bottom: 110px;
}
@media (max-width: 1199px) {
	.food-banner-section-3 {
		margin-bottom: 0;
		padding-bottom: 100px;
	}
}
@media (max-width: 991px) {
	.food-banner-section-3 {
		padding-bottom: 80px;
	}
}

.marquee-wrapper {
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	margin-top: 30px;
	margin-bottom: -3px;
}
.marquee-wrapper.style-3 {
	margin-top: 50px;
}
@media (max-width: 575px) {
	.marquee-wrapper.style-3 {
		margin-top: 40px;
	}
}
.marquee-wrapper.style-3 .marquee-inner .marqee-list .marquee-item .text-slider {
	text-transform: capitalize;
	font-family: var(--fontFamily);
	line-height: 90px;
	font-weight: 400;
}
@media (max-width: 575px) {
	.marquee-wrapper.style-responsive {
		margin-top: -29px !important;
	}
}
@media (max-width: 575px) {
	.marquee-wrapper.style-responsive-2 {
		margin-top: -29px !important;
	}
}

.text-slider {
	font-size: 125px;
	height: 110px;
	line-height: 100px;
	font-weight: 700;
	text-transform: capitalize;
}
.text-slider.text-color {
	color: #A4A4A4;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #A4A4A4;
	-webkit-text-fill-color: transparent;
	font-style: italic;
}
.text-slider.text-color-2 {
	color: var(--secondaryColor);
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--secondaryColor);
	-webkit-text-fill-color: transparent;
	font-style: italic;
}
@media (max-width: 575px) {
	.text-slider {
		font-size: 50px;
		height: 70px;
	}
}

.marquee-inner {
	position: absolute;
	display: inline-flex;
	width: 200%;
}

.marquee-list {
	float: left;
	width: 50%;
}

.marquee-item {
	float: left;
	transition: animation 0.2s ease-out;
}

.marquee-inner.to-left {
	animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
	0% {
		left: 0;
	}
	100% {
		left: -100%;
	}
}
.marquee-inner.to-right {
	animation: marqueeRight 25s linear infinite;
}

@keyframes marqueeRight {
	0% {
		right: 0;
	}
	100% {
		right: -100%;
	}
}
.testimonial-section {
	position: relative;
}
.testimonial-section .burger-shape {
	position: absolute;
	bottom: 30%;
	left: 5%;
}
@media (max-width: 991px) {
	.testimonial-section .burger-shape {
		display: none;
	}
}
.testimonial-section .fry-shape {
	position: absolute;
	right: 15%;
	top: 10%;
}
@media (max-width: 991px) {
	.testimonial-section .fry-shape {
		display: none;
	}
}
.testimonial-section .pizza-shape {
	position: absolute;
	right: 15%;
	bottom: 22%;
}
@media (max-width: 991px) {
	.testimonial-section .pizza-shape {
		display: none;
	}
}
.testimonial-section .swiper-dot-2 {
	margin-top: -30px;
}
@media (max-width: 991px) {
	.testimonial-section .swiper-dot-2 {
		display: none;
	}
}

.testimonial-wrapper .testimonial-items {
	max-width: 980px;
	margin: 0 auto;
}
.testimonial-wrapper .testimonial-items .testimonial-content {
	margin-top: -7px;
}
.testimonial-wrapper .testimonial-items .testimonial-content .client-info {
	margin-bottom: 30px;
}
.testimonial-wrapper .testimonial-items .testimonial-content .client-info h4 {
	font-size: 29px;
	text-transform: capitalize;
	margin-bottom: 5px;
}
.testimonial-wrapper .testimonial-items .testimonial-content .client-info h5 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--secondaryColor);
}
.testimonial-wrapper .testimonial-items .testimonial-content .star {
	margin-top: 15px;
}
.testimonial-wrapper .testimonial-items .testimonial-content .star span {
	font-size: 14px;
	color: var(--mainColor);
	transition: all 0.4s ease-in-out;
}
.testimonial-wrapper .testimonial-items .testimonial-image-slider {
	width: 300px;
}
.testimonial-wrapper .testimonial-items .client-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 50px auto;
	display: inline-block;
	position: relative;
	z-index: 1;
	border: 5px solid var(--whiteColor);
	box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.06);
}
@media (max-width: 575px) {
	.testimonial-wrapper .testimonial-items .client-img {
		width: 60px;
		height: 60px;
		line-height: 60px;
	}
}
.testimonial-wrapper .testimonial-items .swiper-slide.swiper-slide-active .client-image-item {
	position: relative;
}
.testimonial-wrapper .testimonial-items .swiper-slide.swiper-slide-active .client-image-item::before {
	position: absolute;
	bottom: 35px;
	left: 2px;
	content: "";
	background-color: var(--mainColor);
	height: 120px;
	width: 90px;
	border-radius: 7px;
}
@media (max-width: 767px) {
	.testimonial-wrapper .testimonial-items .swiper-slide.swiper-slide-active .client-image-item::before {
		left: 28px;
	}
}
.testimonial-wrapper.style-2 {
	margin-bottom: -34px;
}
@media (max-width: 991px) {
	.testimonial-wrapper.style-responsive {
		margin-bottom: -45px;
	}
}

.testimonial-section-2 {
	position: relative;
}
.testimonial-section-2::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	width: 100%;
	height: 55%;
	background-color: var(--backgroundColor);
	z-index: -1;
}
.testimonial-section-2::after {
	position: absolute;
	top: 0;
	left: 17%;
	right: 0;
	bottom: 0;
	content: "";
	width: 100%;
	height: 100%;
	background-color: var(--whiteColor);
	box-shadow: 0px 4px 31px 0px rgba(0, 0, 0, 0.04);
	z-index: -1;
	background-image: url(../../assets/img/client/bg-shape.png);
}

.testimonial-wrapper-2 {
	padding: 60px;
	background-color: var(--whiteColor);
}
@media (max-width: 575px) {
	.testimonial-wrapper-2 {
		padding: 50px 40px;
	}
}
.testimonial-wrapper-2 .testimonial-image {
	position: relative;
	height: 523px;
}
@media (max-width: 575px) {
	.testimonial-wrapper-2 .testimonial-image {
		height: 400px;
	}
}
.testimonial-wrapper-2 .testimonial-image img {
	width: 100%;
	height: 100%;
}
.testimonial-wrapper-2 .testimonial-image .feedback {
	gap: 25px;
	transform: rotate(-90deg);
	position: absolute;
	left: -25%;
	bottom: 25%;
	padding: 17px 27px;
	background-color: var(--primaryColor);
}
.testimonial-wrapper-2 .testimonial-image .feedback img {
	width: initial;
	height: initial;
	transform: rotate(90deg);
}
.testimonial-wrapper-2 .testimonial-image .feedback h4 {
	text-transform: capitalize;
	color: var(--whiteColor);
	font-weight: 500;
}
.testimonial-wrapper-2 .testimonial-content {
	margin-left: 30px;
}
@media (max-width: 991px) {
	.testimonial-wrapper-2 .testimonial-content {
		margin-left: 0;
	}
}
.testimonial-wrapper-2 .testimonial-content .client-info {
	margin-bottom: 30px;
}
@media (max-width: 575px) {
	.testimonial-wrapper-2 .testimonial-content .client-info {
		margin-bottom: 15px;
	}
}
.testimonial-wrapper-2 .testimonial-content .client-info h4 {
	font-size: 29px;
	text-transform: capitalize;
	margin-bottom: 5px;
}
@media (max-width: 575px) {
	.testimonial-wrapper-2 .testimonial-content .client-info h4 {
		font-size: 22px;
	}
}
.testimonial-wrapper-2 .testimonial-content .client-info h5 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--secondaryColor);
}
.testimonial-wrapper-2 .testimonial-content h3 {
	font-size: 34px;
	font-weight: 500;
}
@media (max-width: 575px) {
	.testimonial-wrapper-2 .testimonial-content h3 {
		font-size: 24px;
	}
}
.testimonial-wrapper-2 .testimonial-content .star {
	margin-top: 15px;
}
.testimonial-wrapper-2 .testimonial-content .star span {
	font-size: 14px;
	color: var(--mainColor);
	transition: all 0.4s ease-in-out;
}

.testimonial-wrapper-3 .testimonial-image {
	height: 370px;
	width: 300px;
	margin-left: 100px;
	position: relative;
}
@media (max-width: 1199px) {
	.testimonial-wrapper-3 .testimonial-image {
		margin-left: 40px;
	}
}
@media (max-width: 991px) {
	.testimonial-wrapper-3 .testimonial-image {
		margin-left: 0;
	}
}
@media (max-width: 575px) {
	.testimonial-wrapper-3 .testimonial-image {
		text-align: center;
		margin: 0 auto;
	}
}
.testimonial-wrapper-3 .testimonial-image .shape-image {
	position: absolute;
	left: -75%;
	bottom: 0;
	z-index: -1;
	opacity: 0.4;
}
@media (max-width: 991px) {
	.testimonial-wrapper-3 .testimonial-image .shape-image {
		display: none;
	}
}
@media (max-width: 575px) {
	.testimonial-wrapper-3 .testimonial-content {
		text-align: center;
		margin: 0 auto;
	}
}
.testimonial-wrapper-3 .testimonial-content h4 {
	color: var(--secondaryColor);
	margin-bottom: 20px;
}
@media (max-width: 575px) {
	.testimonial-wrapper-3 .testimonial-content h4 {
		margin-bottom: 15px;
	}
}
.testimonial-wrapper-3 .testimonial-content h3 {
	font-size: 28px;
	font-weight: 600;
}
@media (max-width: 575px) {
	.testimonial-wrapper-3 .testimonial-content h3 {
		font-size: 22px;
	}
}
.testimonial-wrapper-3 .testimonial-content .client-info {
	gap: 30px;
	margin-top: 40px;
}
@media (max-width: 575px) {
	.testimonial-wrapper-3 .testimonial-content .client-info {
		margin-top: 30px;
		justify-content: center;
	}
}
.testimonial-wrapper-3 .testimonial-content .client-info .client-image {
	width: 65px;
	height: 65px;
	border-radius: 50%;
}
.testimonial-wrapper-3 .testimonial-content .client-info .title h4 {
	color: var(--blackColor);
}
.testimonial-wrapper-3 .testimonial-content .client-info .title h4 span {
	font-size: 16px;
	font-weight: 500;
	color: var(--textColor);
}

.testimonial-wrapper-4 .testimonial-content .info-icon {
	gap: 30px;
	margin-bottom: 40px;
}
@media (max-width: 575px) {
	.testimonial-wrapper-4 .testimonial-content .info-icon {
		grid-template: 20px;
		margin-bottom: 20px;
	}
}
.testimonial-wrapper-4 .testimonial-content .info-icon h4 {
	font-size: 24px;
	text-transform: capitalize;
}
@media (max-width: 575px) {
	.testimonial-wrapper-4 .testimonial-content .info-icon h4 {
		font-size: 20px;
	}
}
.testimonial-wrapper-4 .testimonial-content .info-icon .star span {
	font-size: 14px;
	color: var(--mainColor);
}
.testimonial-wrapper-4 .testimonial-content h3 {
	font-size: 35px;
	font-weight: 500;
	text-transform: initial;
}
@media (max-width: 575px) {
	.testimonial-wrapper-4 .testimonial-content h3 {
		font-size: 24px;
	}
}
.testimonial-wrapper-4 .testimonial-content .client-info {
	gap: 30px;
	margin-top: 40px;
}
.testimonial-wrapper-4 .testimonial-content .client-info .client-image {
	width: 65px;
	height: 65px;
	border-radius: 50%;
}
.testimonial-wrapper-4 .testimonial-content .client-info .title h4 {
	color: var(--blackColor);
	font-size: 24px;
	text-transform: capitalize;
	font-weight: 600;
}
.testimonial-wrapper-4 .testimonial-content .client-info .title h4 span {
	font-size: 14px;
	font-weight: 500;
	color: var(--textColor);
}
.testimonial-wrapper-4 .testimonial-image {
	height: 643px;
}
@media (max-width: 575px) {
	.testimonial-wrapper-4 .testimonial-image {
		height: 400px;
	}
	.testimonial-wrapper-4 .testimonial-image img {
		object-fit: cover;
	}
}

@media (max-width: 991px) {
	.testimonial-section-3 {
		padding-bottom: 55px;
	}
}

.testimonial-card-items {
	background-color: var(--whiteColor);
	padding: 30px;
	border-radius: 14px;
	position: relative;
}
.testimonial-card-items::before {
	position: absolute;
	top: 30px;
	right: 30px;
	content: "\f10d";
	font-family: "Font Awesome 5 Pro";
	font-size: 32px;
	color: var(--secondaryColor);
	font-weight: 900;
}
.testimonial-card-items .testimonial-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
}
.testimonial-card-items .testimonial-content {
	margin-top: 20px;
}
.testimonial-card-items .testimonial-content h4 {
	margin-top: 20px;
	margin-bottom: 5px;
}

.brand-wrapper .brand-title {
	font-weight: 600;
	margin-bottom: 50px;
	position: relative;
	margin-top: -5px;
}
@media (max-width: 767px) {
	.brand-wrapper .brand-title {
		text-align: center;
	}
}
.brand-wrapper .brand-title::before {
	position: absolute;
	top: 12px;
	right: 0;
	content: "";
	background-color: var(--border);
	width: 991px;
	height: 1px;
}
@media (max-width: 1399px) {
	.brand-wrapper .brand-title::before {
		display: none;
	}
}
.brand-wrapper .brand-title span {
	color: var(--mainColor);
}
@media (max-width: 575px) {
	.brand-wrapper .brand-image {
		text-align: center;
	}
}
.brand-wrapper .brand-image img {
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}
.brand-wrapper .brand-image img:hover {
	filter: brightness(50%) grayscale(100%) contrast(150%);
}
.brand-wrapper .swiper-wrapper {
	align-items: center;
}
.brand-wrapper .swiper-slide.swiper-slide-active .brand-image img {
	filter: brightness(50%) grayscale(100%) contrast(150%);
}

.single-news-items {
	margin-top: 30px;
	overflow: hidden;
	border-radius: 16px;
}
.single-news-items .news-image {
	height: 270px;
	position: relative;
	transition: all 0.3s ease-in-out;
}
.single-news-items .news-image::before {
	position: absolute;
	top: 0;
	left: -75%;
	display: block;
	content: "";
	width: 10%;
	height: 100%;
	transform: skewX(-50deg);
	background-color: var(--secondaryColor);
	opacity: 0.3;
	z-index: 1;
}
.single-news-items .news-image .post-cat {
	position: absolute;
	bottom: -10px;
	right: 15px;
}
.single-news-items .news-image .post-cat .cat-name {
	padding: 13px 55px;
	text-align: center;
	background-color: var(--mainColor);
	color: var(--blackColor);
	border-radius: 6px;
	font-weight: 500;
	transition: all 0.4s ease-in-out;
}
.single-news-items .news-image .post-cat .cat-name:hover {
	background-color: var(--primaryColor);
	color: var(--whiteColor);
}
.single-news-items .news-content {
	padding: 30px;
	background: #f4f4f4;
}
@media (max-width: 575px) {
	.single-news-items .news-content {
		padding: 20px;
	}
}
.single-news-items .news-content .post-date {
	gap: 35px;
	border-bottom: 1px solid var(--primaryColor);
	padding-bottom: 20px;
	transition: all 0.4s ease-in-out;
}
.single-news-items .news-content .post-date li {
	text-transform: capitalize;
	font-weight: 600;
	color: var(--blackColor);
}
.single-news-items .news-content h3 {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 10px;
	padding-top: 20px;
}
@media (max-width: 991px) {
	.single-news-items .news-content h3 {
		font-size: 24px;
	}
}
@media (max-width: 575px) {
	.single-news-items .news-content h3 {
		font-size: 22px;
	}
}
.single-news-items .news-content h3 a:hover {
	color: var(--secondaryColor);
}
.single-news-items:hover .news-image::before {
	left: 140%;
	transition: all 2300ms cubic-bezier(0.19, 1, 0.22, 1);
}
.single-news-items:hover .news-content .post-date {
	border-bottom: 1px solid var(--secondaryColor);
}
.single-news-items.style-2 .news-image {
	height: 240px;
	border-radius: 0;
	background-size: cover;
}
.single-news-items.style-2 .news-content .post-date li {
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primaryColor);
}
.single-news-items.style-2 {
	border-radius: 0px;
}
.single-news-items.style-2 .news-content .post-date li span {
	font-weight: 400;
	color: var(--textColor);
	margin-right: 40px;
}
.single-news-items.style-2 .news-content h3 {
	font-size: 24px;
	text-transform: capitalize;
	margin-bottom: 20px;
}
.single-news-items.style-2 .news-content h3 a {
	background-image: linear-gradient(var(--secondaryColor), var(--secondaryColor));
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
}
.single-news-items.style-2 .news-content h3 a:hover {
	color: var(--primaryColor);
	background-size: 100% 1px;
}

.news-section {
	position: relative;
}
.news-section .burger-shape {
	position: absolute;
	top: 10%;
	left: 2%;
	opacity: 0.3;
}
@media (max-width: 1199px) {
	.news-section .burger-shape {
		display: none;
	}
}
.news-section .fry-shape {
	position: absolute;
	bottom: 10%;
	right: 2%;
}
@media (max-width: 1199px) {
	.news-section .fry-shape {
		display: none;
	}
}

.blog-wrapper h1, .blog-wrapper h2, .blog-wrapper h3, .blog-wrapper h4, .blog-wrapper h5, .blog-wrapper h6 {
	font-weight: 700;
	/* padding-bottom: 30px; */
	/* padding-top: 15px; */
}
.blog-wrapper .single-blog-post {
	margin-bottom: 40px;
	position: relative;
}
.blog-wrapper .single-blog-post .video__button {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
	margin-bottom: 0;
}
.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
	position: relative;
	background: transparent;
	border: none;
}
.blog-wrapper .single-blog-post.post-details .post-content {
	border: none;
}
.blog-wrapper .single-blog-post.post-details .post-content img {
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 14px;
}
.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
	width: 100%;
	height: 100%;
}
.blog-wrapper .single-blog-post.post-details .post-content h1 {
	font-size: 34px;
	line-height: 1.4;
	word-wrap: break-word;
}
.blog-wrapper .single-blog-post.post-details .post-content h1, .blog-wrapper .single-blog-post.post-details .post-content h2, .blog-wrapper .single-blog-post.post-details .post-content h3, .blog-wrapper .single-blog-post.post-details .post-content h4, .blog-wrapper .single-blog-post.post-details .post-content h5, .blog-wrapper .single-blog-post.post-details .post-content h6 {
	margin-top: 10px;
	word-wrap: break-word;
}
.blog-wrapper .single-blog-post.post-details .post-content table {
	margin-top: 20px;
}
@media (max-width: 767px) {
	.blog-wrapper .single-blog-post.post-details .post-content h1 {
		font-size: 28px;
	}
	.blog-wrapper .single-blog-post.post-details .post-content h3 {
		font-size: 20px;
	}
}
.blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
	background-color: var(--primaryColor);
	color: var(--whiteColor);
	font-size: 30px;
	line-height: 1.4;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 600;
	padding: 60px;
	text-align: center;
	margin: 40px 0px;
	position: relative;
	z-index: 1;
	border-radius: 10px;
}
.blog-wrapper .single-blog-post.post-details blockquote a, .blog-wrapper .single-blog-post.post-details .wp-block-quote a {
	color: var(--whiteColor);
}
.blog-wrapper .single-blog-post.post-details blockquote a:hover, .blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
	color: var(--textColor);
}
@media (max-width: 767px) {
	.blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
		padding: 30px 15px;
		font-size: 22px;
		line-height: 1.5;
	}
}
.blog-wrapper .single-blog-post.post-details blockquote::before, .blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
	right: 30px;
	font-size: 110px;
	line-height: 1;
	font-family: fontawesome!important;
	position: absolute;
	content: "\f10d";
	bottom: -20px;
	color: var(--whiteColor);
	z-index: -1;
	opacity: 0.1;
	font-weight: 900;
}
.blog-wrapper .single-blog-post.format-video .post-featured-thumb, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
	z-index: 1;
	position: relative;
}
.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	content: "";
	background-color: #282835;
	opacity: 0.3;
	z-index: -1;
}
@media (max-width: 767px) {
	.blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
		text-align: center;
		font-size: 22px;
		padding: 20px;
	}
}
@media (max-width: 585px) {
	.blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
		text-align: center;
		font-size: 20px;
		padding: 15px;
	}
}
.blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
	font-size: 70px;
	line-height: 80px;
	float: left;
	overflow: hidden;
	margin-right: 30px;
}
@media (max-width: 767px) {
	.blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
		float: none;
		margin-bottom: 10px;
		margin-right: 0;
		font-size: 50px;
		line-height: 60px;
	}
}
.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text, .blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
	overflow: hidden;
}
.blog-wrapper .single-blog-post.quote-post .quote-content h2, .blog-wrapper .single-blog-post.format-quote .quote-content h2 {
	margin-top: -2px;
	font-size: 30px;
	color: var(--whiteColor);
}
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span, .blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
	color: var(--whiteColor);
}
.blog-wrapper .single-blog-post:last-child {
	margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-featured-thumb {
	height: 461px;
	width: 100%;
	position: relative;
	margin-bottom: -2px;
	border-radius: 14px;
}
@media (max-width: 991px) {
	.blog-wrapper .single-blog-post .post-featured-thumb {
		height: 280px;
	}
}
@media (max-width: 767px) {
	.blog-wrapper .single-blog-post .post-featured-thumb {
		height: 230px;
	}
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .play-video {
	border-radius: 50%;
	width: 80px;
	height: 80px;
	line-height: 80px;
	font-size: 17px;
}
.blog-wrapper .single-blog-post .post-content {
	padding-top: 30px;
	overflow: hidden;
	box-sizing: border-box;
}
@media (max-width: 575px) {
	.blog-wrapper .single-blog-post .post-content {
		padding-top: 20px;
	}
}
@media (max-width: 991px) {
	.blog-wrapper .single-blog-post .post-content h2 {
		font-size: 36px;
	}
}
@media (max-width: 575px) {
	.blog-wrapper .single-blog-post .post-content h2 {
		font-size: 30px;
	}
}
.blog-wrapper .single-blog-post .post-content h2 a:hover {
	color: var(--primaryColor);
}
@media (max-width: 767px) {
	.blog-wrapper .single-blog-post .post-content {
		padding: 30px 10px;
	}
}
@media (max-width: 414px) {
	.blog-wrapper .single-blog-post .post-content h2 {
		font-size: 22px;
	}
}
.blog-wrapper .single-blog-post .post-content .post-cat a {
	color: var(--whiteColor);
	display: inline-block;
	background-color: var(--primaryColor);
	padding: 14px 18px 12px;
	line-height: 1;
	font-size: 16px;
	font-weight: 700;
	transition: all 0.3s ease-in-out;
	margin-bottom: 20px;
	text-transform: capitalize;
}
@media (max-width: 767px) {
	.blog-wrapper .single-blog-post .post-content .post-cat a {
		font-size: 12px;
	}
}
.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
	background-color: var(--blackColor);
}
.blog-wrapper .single-blog-post .post-content ul {
	margin-bottom: 0;
	list-style: none;
	margin-top: 0px;
}
.blog-wrapper .single-blog-post .post-content ul ol {
	margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ul ul {
	margin-bottom: 0;
	padding-left: 10px;
}
.blog-wrapper .single-blog-post .post-content ul li {
	line-height: 1.5;
	margin-top: 10px;
	list-style: none;
	color: var(--textColor);
	position: relative;
	font-size: 17px;
	padding-left: 30px;
}
.blog-wrapper .single-blog-post .post-content ul li::before {
	position: absolute;
	left: 0;
	top: 0;
	font-family: 'Font Awesome 5 Pro';
	content: "\f00c";
	color: var(--primaryColor);
	font-weight: 600;
}
.post-content .post-meta {
	margin-bottom: 10px;
}
.post-content .post-meta span {
	color: var(--textColor);
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	display: inline-block;
	margin-right: 25px;
}
@media (max-width: 767px) {
	.post-content .post-meta span {
		font-size: 15px;
	}
}
.post-content .post-meta span i {
	margin-right: 5px;
	color: var(--primaryColor);
	font-weight: 700;
}
.post-content .author-info {
	overflow: hidden;
}
.post-content .author-info .author-img {
	height: 40px;
	width: 40px;
	line-height: 40px;
	border-radius: 50%;
	background-color: #f2f2f2;
	margin-right: 15px;
	float: left;
	overflow: hidden;
	background-position: center;
	background-size: cover;
}
@media (max-width: 767px) {
	.blog-wrapper .single-blog-post .post-content .author-info .author-img {
		margin-right: 5px;
	}
}
.blog-wrapper .single-blog-post .post-content .author-info h5 {
	display: inline-block;
	line-height: 1;
	font-size: 16px;
	margin-top: 9px;
}
.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
	color: var(--primaryColor);
}
@media (max-width: 767px) {
	.blog-wrapper .single-blog-post .post-content .author-info h5 {
		font-size: 14px;
	}
}
.blog-wrapper .single-blog-post .post-content .post-link a {
	font-weight: 700;
}
.blog-wrapper .single-blog-post .post-content .post-link a:hover {
	color: var(--primaryColor);
}
@media (max-width: 767px) {
	.blog-wrapper .single-blog-post .post-content .post-link a {
		font-size: 14px;
	}
}
.blog-wrapper .single-blog-post .post-content .post-link a i {
	margin-right: 5px;
}
@media (max-width: 767px) {
	.blog-wrapper .single-blog-post .post-content .post-link a i {
		margin-right: 3px;
	}
}

@media (min-width: 991px) {
	.news-area .main-sidebar {
		margin-left: 20px;
	}
}
@media (max-width: 991px) {
	.news-area .main-sidebar {
		margin-top: 40px;
	}
}

.news-area .main-sidebar .single-sidebar-widget ul {
	padding-left: 0;
}
.news-area .main-sidebar .single-sidebar-widget ul > li {
	margin-bottom: 10px;
}
.news-area .main-sidebar .single-sidebar-widget ul > li a {
	font-size: 17px;
	font-weight: 500;
	text-transform: capitalize;
	letter-spacing: 1px;
}
.news-area .main-sidebar .single-sidebar-widget ul > li a:hover {
	color: var(--primaryColor);
}
.news-area .main-sidebar .single-sidebar-widget ul ul {
	padding-left: 20px;
}
.news-area .main-sidebar .single-sidebar-widget ul ul li {
	margin-top: 5px;
}


.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	width: 2px;
	height: 17px;
	position: absolute;
	background-color: var(--primaryColor);
}
.news-area .main-sidebar .single-sidebar-widget .wid-title h4 {
	font-size: 24px;
	font-weight: 600;
}
.news-area .main-sidebar .single-sidebar-widget .social-link a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--whiteColor);
	font-size: 14px;
	margin-right: 5px;
	margin-bottom: 5px;
}
.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
	background-color: var(--primaryColor);
	color: var(--whiteColor);
}

.search_widget form {
	width: 100%;
	position: relative;
}
.search_widget form input {
	background-color: #f8f8f8;
	font-size: 15px;
	padding: 20px;
	width: 100%;
	border: none;
	text-transform: capitalize;
	color: var(--blackColor);
}
.search_widget form button {
	position: absolute;
	right: 0;
	top: 0;
	width: 70px;
	font-size: 17px;
	height: 100%;
	background-color: var(--primaryColor);
	color: var(--whiteColor);
	text-align: center;
	transition: all 0.3s ease-in-out;
}
.search_widget form button:hover {
	background-color: var(--blackColor);
}

.popular-posts .single-post-item, .popular_posts .single-post-item {
	overflow: hidden;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #f2f2f2;
}
.popular-posts .single-post-item:last-child, .popular_posts .single-post-item:last-child {
	margin-bottom: 0;
	border: none;
	padding-bottom: 0;
}
.popular-posts .single-post-item .thumb, .popular_posts .single-post-item .thumb {
	height: 80px;
	border-radius: 6px;
	width: 100px;
	background-color: #f2f2f2;
	float: left;
	overflow: hidden;
	margin-right: 20px;
}
.popular-posts .single-post-item .post-content, .popular_posts .single-post-item .post-content {
	overflow: hidden;
}
.popular-posts .single-post-item .post-content h5, .popular_posts .single-post-item .post-content h5 {
	font-size: 17px;
	line-height: 22px;
	font-weight: 500;
	margin-bottom: 0;
	text-transform: capitalize;
}
.popular-posts .single-post-item .post-content h5 a:hover, .popular_posts .single-post-item .post-content h5 a:hover {
	color: var(--primaryColor);
}
.popular-posts .single-post-item .post-content .post-date, .popular_posts .single-post-item .post-content .post-date {
	margin-top: 5px;
	color: var(--primaryColor);
	font-weight: 600;
	font-size: 15px;
	text-transform: capitalize;
}
.popular-posts .single-post-item .post-content .post-date i, .popular_posts .single-post-item .post-content .post-date i {
	margin-right: 7px;
}

.cus_widget_categories ul li {
	display: block;
}
.cus_widget_categories ul li:last-child a {
	margin-bottom: 0;
}
.cus_widget_categories ul li a {
	position: relative;
	background: var(--whiteColor);
	padding: 17px 20px;
	line-height: 1;
	font-size: 14px;
	display: block;
	margin-bottom: 12px;
	font-weight: 500;
	transition: all 0.4s ease-in-out;
}
.cus_widget_categories ul li a:hover {
	color: var(--primaryColor);
}
.cus_widget_categories ul li a i {
	margin-right: 10px;
}
.cus_widget_categories ul li a span {
	position: absolute;
	width: 60px;
	line-height: 55px;
	height: 100%;
	content: "";
	background-color: var(--primaryColor);
	right: 0;
	top: 0;
	text-align: center;
	color: var(--whiteColor);
}

.cus_widget_categories ul li {
	display: block;
	margin-bottom: 10px;
}

.tagcloud a {
	display: inline-block;
	padding: 11px 26px;
	line-height: 1;
	font-size: 15px !important;
	font-weight: 600;
	background: var(--whiteColor);
	margin-right: 5px;
	text-transform: capitalize;
	margin-bottom: 8px;
	transition: all 0.4s ease-in-out;
}
.tagcloud a:last-child {
	margin-right: 0;
}
.tagcloud a:hover {
	background-color: var(--primaryColor);
	color: var(--whiteColor);
}


p-label {
	position: absolute;
	right: 0;
	background: var(--primaryColor);
	color: var(--whiteColor);
	padding: 10px 40px;
	z-index: -1;
	top: 0;
	font-weight: 700;
}

.page-nav-wrap ul li {
	display: inline-block;
}
.page-nav-wrap ul .page-numbers {
	display: inline-block;
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 50%;
	background: #f6f6f6;
	font-weight: 700;
	transition: all 0.3s ease-in-out;
	margin: 0 2px;
}
.page-nav-wrap ul .page-numbers.current {
	background-color: var(--primaryColor);
	color: var(--whiteColor);
}
@media (max-width: 767px) {
	.page-nav-wrap ul .page-numbers {
		margin-top: 10px;
		width: 50px;
		height: 50px;
		line-height: 50px;
		font-size: 14px;
	}
}
.page-nav-wrap ul .page-numbers i {
	margin-top: 2px;
}
.page-nav-wrap ul .page-numbers:hover {
	background-color: var(--primaryColor);
	color: var(--whiteColor);
}

.social-share a {
	margin-left: 10px;
	transition: all 0.4s ease-in-out;
}
.social-share a:hover {
	color: var(--primaryColor);
}

.tag-share-wrap {
	padding-bottom: 50px;
}
.tag-share-wrap h4 {
	margin-bottom: 25px;
}
@media (max-width: 767px) {
	.tag-share-wrap h4 {
		margin-bottom: 10px;
		font-size: 18px;
	}
}
@media (max-width: 767px) {
	.tag-share-wrap .tagcloud {
		margin-bottom: 20px;
	}
}

.comments-section-wrap {
	overflow: hidden;
}

.comments-heading h3, .related-post-wrap h3, .comment-form-wrap h3 {
	font-size: 26px;
	padding-bottom: 20px;
}
@media (max-width: 767px) {
	.comments-heading h3, .related-post-wrap h3, .comment-form-wrap h3 {
		font-size: 20px;
	}
}

.comments-item-list .single-comment-item {
	margin-top: 30px;
}
.comments-item-list .single-comment-item ul {
	margin-bottom: 15px;
}
.comments-item-list .single-comment-item .author-img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	float: left;
	overflow: hidden;
	margin-right: 30px;
}
@media (max-width: 991px) {
	.comments-item-list .single-comment-item .author-img {
		width: 80px;
		height: 80px;
		margin-right: 20px;
	}
}
@media (max-width: 767px) {
	.comments-item-list .single-comment-item .author-img {
		width: 70px;
		height: 70px;
		margin-right: 15px;
	}
}
@media (max-width: 585px) {
	.comments-item-list .single-comment-item .author-img {
		float: none;
		margin-bottom: 20px;
	}
}
.comments-item-list .single-comment-item .author-info-comment {
	overflow: auto;
	padding-bottom: 25px;
	border-bottom: 1px solid #e2e2e2;
}
.comments-item-list .single-comment-item .author-info-comment .info {
	position: relative;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
	padding: 7px 18px;
	font-size: 16px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	color: #000;
	border: 1px solid #000;
	background: transparent;
	transition: all 0.4s ease-in-out;
	box-shadow: inherit;
}
@media (max-width: 767px) {
	.comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
		font-size: 12px;
	}
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn i {
	margin-right: 5px;
	font-size: 16px;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::before, .comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::after {
	background-color: initial;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover {
	background: var(--primaryColor);
	border: 1px solid var(--primaryColor);
	color: var(--whiteColor);
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover a {
	color: var(--whiteColor) !important;
}
.comments-item-list .single-comment-item .author-info-comment .info h5 {
	margin-bottom: 5px;
}
@media (max-width: 767px) {
	.comments-item-list .single-comment-item .author-info-comment .info h5 {
		font-size: 16px;
	}
}
.comments-item-list .single-comment-item .author-info-comment span {
	color: var(--primaryColor);
	font-weight: 500;
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn {
	padding: 7px 18px;
	font-size: 14px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
@media (max-width: 767px) {
	.comments-item-list .single-comment-item .author-info-comment .theme-btn {
		font-size: 12px;
	}
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
	margin-right: 5px;
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
	color: var(--whiteColor);
}
.comments-item-list .single-comment-item .author-info-comment .comment-text {
	margin-top: 15px;
}

/* .comment-form {
background-color: var(--whiteColor);
padding: 50px;
width: 100%;
margin-top: 30px;
}
@media (max-width: 767px) {
.comment-form {
padding: 30px;
}
}
@media (max-width: 585px) {
.comment-form {
padding: 30px 15px;
}
}
.comment-form label {
margin-bottom: 4px;
}
.comment-form input, .comment-form textarea {
margin-bottom: 20px;
padding: 20px 30px;
line-height: 1;
font-size: 16px;
width: 100%;
border: none;
font-weight: 500;
text-transform: capitalize;
color: var(--blackColor);
background-color: var(--backgroundColor);
}
@media (max-width: 585px) {
.comment-form input, .comment-form textarea {
padding: 15px;
}
}
.comment-form textarea {
height: 200px;
line-height: 1.3;
border: none;
}
@media (max-width: 767px) {
.comment-form textarea {
height: 120px;
}
}
.comment-form .theme-btn {
display: inline-block;
line-height: 1;
padding: 20px 60px;
transition: all 0.3s ease-in-out;
margin-bottom: 0;
margin-top: 20px;
}
@media (max-width: 767px) {
.comment-form .theme-btn {
padding: 20px 40px;
}
}
@media (max-width: 585px) {
.comment-form .theme-btn {
padding: 15px 40px;
font-size: 14px;
}
}
.comment-form .theme-btn i {
margin-right: 10px;
} */

.comment ul {
	list-style-type: disc;
}
.comment ul ol {
	margin-bottom: 0;
}
.comment ul li {
	line-height: 1.5;
	margin-top: 10px;
	list-style-type: disc;
}
.comment ol ul {
	margin-bottom: 0;
}
.comment ol ol {
	margin-bottom: 0;
}
.comment ol li {
	line-height: 1.5;
	margin-top: 10px;
}

.site_info_widget .single-contact-info {
	overflow: auto;
	margin-bottom: 20px;
}
.site_info_widget .single-contact-info span {
	display: block;
	color: var(--primaryColor);
}
.site_info_widget .single-contact-info .icon {
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: var(--whiteColor);
	background-color: var(--primaryColor);
	float: left;
	text-align: center;
	overflow: hidden;
	font-size: 16px;
	margin-right: 20px;
}
.site_info_widget .single-contact-info:nth-child(2n) .icon {
	background-color: var(--primaryColor);
}
.site_info_widget .single-contact-info:nth-child(3n) .icon {
	background-color: var(--primaryColor);
}
.site_info_widget .social-link {
	margin-top: 35px;
}
.site_info_widget .social-link a {
	margin-right: 8px !important;
}

.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.gallery-section {
	position: relative;
}
.gallery-section .array-button {
	position: initial;
}
@media (max-width: 575px) {
	.gallery-section .array-button {
		display: none !important;
	}
}
.gallery-section .array-button .array-prev, .gallery-section .array-button .array-next {
	background-color: transparent !important;
	font-size: 60px;
	color: var(--textColor);
	position: absolute;
	top: 50%;
	left: 8%;
	transform: translate(-50%, -50%);
	box-shadow: none;
	z-index: 99;
	border: 0px;
}
@media (max-width: 1399px) {
	.gallery-section .array-button .array-prev, .gallery-section .array-button .array-next {
		font-size: 50px;
	}
}
@media (max-width: 767px) {
	.gallery-section .array-button .array-prev, .gallery-section .array-button .array-next {
		font-size: 40px;
	}
}
.gallery-section .array-button .array-next {
	left: auto;
	right: 5%;
}

.gallery-image {
	position: relative;
}
.gallery-image img {
	width: 100%;
	height: 100%;
	border-radius: 27px;
	object-fit: cover;
}
@media (max-width: 575px) {
	.gallery-image {
		height: 400px;
	}
}
.gallery-image .icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 42px;
	z-index: 9;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	transition-delay: 0s;
	transition-delay: 0s;
	z-index: 3;
	visibility: hidden;
	opacity: 0;
}
.gallery-image .icon i {
	color: var(--whiteColor);
}
.gallery-image::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.5);
	transition: 0.5s all ease;
	background-color: rgba(0, 0, 0, 0.8);
	border-radius: 27px;
}
.gallery-image:hover .icon {
	-webkit-transform: scale(1) translate(-50%, -50%);
	transform: scale(1) translate(-50%, -50%);
	transition-delay: 300ms;
	opacity: 1;
	visibility: visible;
}
.gallery-image:hover::after {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.galler-image-2 {
	position: relative;
	height: 448px;
}
.galler-image-2 img {
	width: 100%;
	height: 100%;
}
@media (max-width: 575px) {
	.galler-image-2 {
		height: 380px;
	}
}
.galler-image-2 .icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 70px;
	z-index: 9;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	transition-delay: 0s;
	transition-delay: 0s;
	z-index: 3;
	visibility: hidden;
	opacity: 0;
}
.galler-image-2 .icon i {
	color: var(--whiteColor);
}
.galler-image-2::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.5);
	transition: 0.5s all ease;
	background-color: rgba(0, 0, 0, 0.5);
}
.galler-image-2:hover .icon {
	-webkit-transform: scale(1) translate(-50%, -50%);
	transform: scale(1) translate(-50%, -50%);
	transition-delay: 300ms;
	opacity: 1;
	visibility: visible;
}
.galler-image-2:hover::after {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.booking-section {
	margin-top: -240px;
	position: relative;
}

@media (max-width: 991px) {
	.booking-content {
		text-align: center;
	}
}
.booking-content .icon-items {
	gap: 20px;
	padding-top: 15px;
}
@media (max-width: 991px) {
	.booking-content .icon-items {
		justify-content: center;
	}
}
.booking-content .icon-items .icon {
	font-size: 66px;
	color: var(--primaryColor);
}
@media (max-width: 575px) {
	.booking-content .icon-items .icon {
		font-size: 56px;
	}
}
.booking-content .icon-items .content h5 {
	color: var(--whiteColor);
	margin-bottom: 5px;
}
.booking-content .icon-items .content h3 a {
	color: var(--primaryColor);
}
.booking-content.style-2 .section-title span {
	color: var(--primaryColor);
}
.booking-content.style-2 .icon-items .content h5 {
	color: var(--blackColor);
}

.booking-contact {
	padding: 55px;
	background-color: var(--primaryColor);
	border-radius: 20px 20px 0 0;
	margin-bottom: -120px;
}
.booking-contact.style-2 {
	border-radius: 20px;
}
@media (max-width: 1199px) {
	.booking-contact {
		margin-bottom: -100px;
	}
}
@media (max-width: 991px) {
	.booking-contact {
		margin-bottom: -80px;
	}
}
@media (max-width: 575px) {
	.booking-contact {
		padding: 50px 40px;
	}
}
.booking-contact h4 {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 30px;
}
.booking-contact .booking-items .form-clt {
	position: relative;
}
.booking-contact .booking-items .form-clt:not(:last-child) {
	margin-bottom: 30px;
}
.booking-contact .booking-items .form-clt .nice-select {
	height: 66px;
	border: 1px solid var(--border2);
}
.booking-contact .booking-items .form-clt input {
	width: 100%;
	outline: none;
	border: none;
	padding: 18px 25px;
	color: var(--whiteColor);
	background-color: transparent;
	font-size: 17px;
	text-transform: capitalize;
	font-weight: 500;
	border: 1px solid var(--border2);
	border-radius: 9px;
	color-scheme: dark;
}
.booking-contact .theme-btn {
	padding-left: 0 !important;
}
@media (max-width: 575px) {
	.booking-contact .booking-items .form-clt input {
		padding: 12px 20px;
		font-size: 14px;
	}
}
.booking-contact .booking-items .form-clt input::placeholder {
	color: var(--whiteColor);
}
.booking-contact .booking-items .form-clt .icon {
	position: absolute;
	top: 44px;
	right: 25px;
}
.booking-contact .booking-items .form-clt .icon i {
	color: var(--whiteColor);
}
@media (max-width: 575px) {
	.booking-contact .booking-items .form-clt .icon i {
		font-size: 15px;
	}
}
.booking-contact .booking-items .form-clt .theme-btn {
	width: 100%;
}
@media (max-width: 575px) {
	.booking-contact .booking-items .form-clt .theme-btn {
		padding: 18px 32px;
		font-size: 14px;
	}
}

.contact-info-items {
	background-color: var(--whiteColor);
	border-radius: 8px;
	box-shadow: 0px 15px 10px 0px rgba(242, 242, 242, 0.18);
	padding: 60px 30px;
	transition: all 0.4s ease-in-out;
	position: relative;
	z-index: 1;
}
.contact-info-items::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: url("../../assets/img/shape/catagory-card-shape.jpg");
	opacity: 0;
	transition: all 0.4s ease-in-out;
	z-index: -1;
	visibility: hidden;
}
.contact-info-items .icon {
	transition: all 0.4s ease-in-out;
}
.contact-info-items .content {
	margin-top: 20px;
}
.contact-info-items .content h3 {
	font-size: 28px;
	margin-bottom: 5px;
}
.contact-info-items:hover, .contact-info-items.active {
	background-color: var(--primaryColor);
}
.contact-info-items:hover::before, .contact-info-items.active::before {
	opacity: 1;
	visibility: visible;
}
.contact-info-items:hover .icon, .contact-info-items.active .icon {
	filter: grayscale(100%) brightness(300%);
}
.contact-info-items:hover .content h3, .contact-info-items:hover .content p, .contact-info-items.active .content h3, .contact-info-items.active .content p {
	color: var(--whiteColor);
}

.contact-area .map-content-area h3 {
	margin-bottom: 15px;
	margin-top: -10px;
}
.contact-area .map-content-area .google-map {
	margin-top: 50px;
}
.contact-area .map-content-area .google-map iframe {
	width: 100%;
	height: 350px;
}
.contact-area .contact-form-items .contact-title {
	margin-bottom: 30px;
}
.contact-area .contact-form-items .contact-title h3 {
	margin-top: -10px;
}
.contact-area .contact-form-items .form-clt {
	position: relative;
}
.contact-area .contact-form-items .form-clt .icon {
	position: absolute;
	top: 45px;
	left: -15px;
}
.contact-area span.button-content-wrapper.d-flex.align-items-center {
	margin-top: 40px;
	margin-left: -34px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li.active::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.contact-area .wpcf7-not-valid-tip {
	margin-top: 0;
	position: absolute;
	font-size: 14px;
}
.form-clt-big span.wpcf7-not-valid-tip {
	margin-top: -6px;
}
@media (max-width: 575px) {
	.contact-area .contact-form-items .form-clt .icon {
		display: none;
	}
}
.contact-area .contact-form-items .form-clt .icon i {
	color: var(--blackColor);
}
.contact-area .contact-form-items .form-clt input {
	width: 100%;
	outline: none;
	border: none;
	padding: 20px 30px;
	color: var(--textColor);
	background-color: transparent;
	text-transform: capitalize;
	font-weight: 500;
	border-bottom: 1px solid var(--textColor);
}
@media (max-width: 575px) {
	.contact-area .contact-form-items .form-clt input {
		padding: 15px 20px;
	}
}
.contact-area .contact-form-items .form-clt-big textarea {
	padding: 20px 30px 110px;
	width: 100%;
	outline: none;
	border: none;
	color: var(--textColor);
	background-color: transparent;
	text-transform: capitalize;
	font-weight: 500;
	border-bottom: 1px solid var(--textColor);
	height: 167px;
}

@media (max-width: 1199px) {
	.booking-wrapper.style-responsive {
		margin-top: 40px;
	}
}
@media (max-width: 991px) {
	.booking-wrapper.style-responsive {
		margin-top: 80px;
	}
}

.footer-section {
	position: relative;
}
.footer-section .burger-shape {
	position: absolute;
	bottom: 25%;
	left: 2%;
	opacity: 0.3;
}
@media (max-width: 1199px) {
	.footer-section .burger-shape {
		display: none;
	}
}
.footer-section .fry-shape {
	position: absolute;
	top: 25%;
	right: 5%;
	opacity: 0.3;
}
@media (max-width: 1199px) {
	.footer-section .fry-shape {
		display: none;
	}
}
.footer-section .footer-shape {
	position: absolute;
	left: 0;
	top: 30%;
}
@media (max-width: 1399px) {
	.footer-section .footer-shape {
		display: none;
	}
}
.footer-section .footer-shape-2 {
	position: absolute;
	right: 0;
	top: 30%;
}
@media (max-width: 1399px) {
	.footer-section .footer-shape-2 {
		display: none;
	}
}

.footer-widgets-wrapper {
	padding: 90px 0 120px;
	position: relative;
	z-index: 9;
}
@media (max-width: 1199px) {
	.footer-widgets-wrapper {
		padding: 60px 0 90px;
	}
}
@media (max-width: 991px) {
	.footer-widgets-wrapper {
		padding: 50px 0 70px;
	}
}
.footer-widgets-wrapper .single-footer-widget {
	margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head {
	margin-bottom: 30px;
}
@media (max-width: 575px) {
	.footer-widgets-wrapper .single-footer-widget .widget-head {
		margin-bottom: 20px;
	}
}
.footer-widgets-wrapper .single-footer-widget .widget-head h4 {
	text-transform: capitalize;
	margin-top: 10px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content span {
	font-weight: 500;
	margin-top: 15px;
	display: inline-block;
}
@media (max-width: 575px) {
	.footer-widgets-wrapper .single-footer-widget .footer-content span {
		margin-top: 10px;
	}
}
.footer-widgets-wrapper .single-footer-widget .footer-content .link {
	font-size: 20px;
	font-weight: 700;
	color: var(--primaryColor);
	margin-top: 15px;
	display: inline-block;
}
@media (max-width: 575px) {
	.footer-widgets-wrapper .single-footer-widget .footer-content .link {
		margin-top: 10px;
	}
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
	margin-top: 40px;
	gap: 15px;
	position: relative;
	z-index: 9;
	list-style: none;
}
@media (max-width: 575px) {
	.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
		margin-top: 20px;
	}
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
	display: block;
	background: rgba(92, 92, 91, 0.1);
	color: var(--blackColor);
	border-radius: 50%;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	text-align: center;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
	background-color: var(--primaryColor);
	color: var(--whiteColor);
}
.footer-widgets-wrapper .single-footer-widget .list-items li {
	text-transform: capitalize;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:not(:last-child) {
	margin-bottom: 15px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a {
	font-size: 17px;
	color: var(--textColor);
	position: relative;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a::before {
	position: absolute;
	top: 8px;
	left: 0;
	width: 6px;
	height: 6px;
	content: "";
	border-radius: 50%;
	background-color: var(--primaryColor);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a:hover {
	padding-left: 20px;
	color: var(--primaryColor);
}
.footer-widgets-wrapper .single-footer-widget .list-items li a:hover::before {
	opacity: 1;
	visibility: visible;
}
.footer-widgets-wrapper .single-footer-widget .footer-address-text h6 {
	font-weight: 400;
	color: var(--textColor);
	line-height: 150%;
	font-size: 20px;
	text-transform: capitalize;
}
.footer-widgets-wrapper .single-footer-widget .footer-address-text h6 span {
	color: var(--secondaryColor);
}
.footer-widgets-wrapper .single-footer-widget .footer-address-text h5 {
	padding: 20px 0;
	text-transform: capitalize;
}
.footer-widgets-wrapper .single-footer-widget .footer-apps-items h5 {
	font-weight: 400;
	color: var(--textColor);
}
.footer-widgets-wrapper .single-footer-widget .footer-apps-items .apps-image {
	margin-top: 30px;
	gap: 10px;
}
@media (max-width: 575px) {
	.footer-widgets-wrapper .single-footer-widget .footer-apps-items .apps-image {
		margin-top: 20px;
	}
}
.footer-widgets-wrapper .single-footer-widget .footer-apps-items .support-text {
	margin-top: 40px;
}
@media (max-width: 575px) {
	.footer-widgets-wrapper .single-footer-widget .footer-apps-items .support-text {
		margin-top: 20px;
	}
}
.footer-widgets-wrapper .single-footer-widget .footer-apps-items .support-text h5 {
	font-weight: 400;
	margin-bottom: 10px;
}
.footer-widgets-wrapper .single-footer-widget .footer-apps-items .support-text h3 {
	font-size: 28px;
}
.footer-widgets-wrapper .single-footer-widget .footer-apps-items .support-text h3 a {
	color: var(--primaryColor);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .widget-head h4 {
	font-size: 24px;
	color: var(--whiteColor);
	font-weight: 500;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content p {
	color: var(--whiteColor);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon a {
	background-color: transparent;
	border: 1px solid var(--border2);
	color: var(--whiteColor);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon a:hover {
	background-color: var(--secondaryColor);
	border: 1px solid var(--secondaryColor);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-area {
	gap: 100px;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-area ul li {
	text-transform: capitalize;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-area ul li:not(:last-child) {
	margin-bottom: 15px;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-area ul li a {
	font-size: 17px;
	color: var(--whiteColor);
	position: relative;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-area ul li a::before {
	position: absolute;
	top: 8px;
	left: 0;
	width: 6px;
	height: 6px;
	content: "";
	border-radius: 50%;
	background-color: var(--secondaryColor);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-area ul li a:hover {
	padding-left: 20px;
	color: var(--secondaryColor);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-area ul li a:hover::before {
	opacity: 1;
	visibility: visible;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .link {
	font-weight: 700;
	color: var(--whiteColor);
	text-decoration: underline;
	font-size: 17px;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .number {
	color: var(--mainColor);
	font-size: 17px;
	font-weight: 700;
	display: inline-block;
	margin-top: 20px;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .info-date li {
	font-size: 16px;
	text-transform: capitalize;
	color: var(--whiteColor);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .info-date li span {
	color: var(--mainColor);
}

.footer-bottom {
	padding: 35px 0;
	background-color: var(--primaryColor);
}
@media (max-width: 767px) {
	.footer-bottom .footer-bottom-wrapper {
		flex-wrap: wrap;
		gap: 20px;
		justify-content: center !important;
	}
}
.footer-bottom .footer-bottom-wrapper p {
	text-transform: capitalize;
	color: var(--whiteColor);
	font-size: 20px;
}
.footer-bottom .footer-bottom-wrapper p a {
	color: var(--whiteColor);
}
.footer-bottom .footer-bottom-wrapper p a:hover {
	color: var(--mainColor);
}
.footer-bottom.style-2 {
	background-color: transparent;
	border-top: 1px solid var(--border2);
	position: relative;
}
.footer-bottom.style-2 .scroll-icon {
	width: 80px;
	height: 80px;
	font-size: 24px;
	line-height: 80px;
	text-align: center;
	cursor: pointer;
	position: absolute;
	left: 50%;
	top: 0;
	z-index: 9;
	transform: translate(-50%, -50%);
}
@media (max-width: 575px) {
	.footer-bottom.style-2 .scroll-icon {
		width: 50px;
		height: 50px;
		line-height: 50px;
		font-size: 18px;
	}
}
.footer-bottom.style-2 .scroll-icon i {
	color: var(--whiteColor);
}
@media (max-width: 991px) {
	.footer-bottom.style-2 .footer-bottom-wrapper {
		margin-top: 20px;
	}
}
@media (max-width: 575px) {
	.footer-bottom.style-2 .footer-bottom-wrapper p {
		text-align: center;
	}
}
.footer-bottom.style-2 .footer-bottom-wrapper ul {
	display: flex;
	align-items: center;
	gap: 20px;
}
.footer-bottom.style-2 .footer-bottom-wrapper ul li {
	font-size: 16px;
	text-transform: capitalize;
}
.footer-bottom.style-2 .footer-bottom-wrapper ul li a .text-effect {
	text-transform: capitalize;
	position: relative;
	transition: all 0.4s ease-in-out;
	color: var(--whiteColor);
	position: relative;
	overflow: hidden;
	display: block;
	height: 25px;
	line-height: normal;
}
.footer-bottom.style-2 .footer-bottom-wrapper ul li a .text-effect .effect-1 {
	display: block;
	height: 100%;
	position: relative;
	top: 0%;
	transition: 0.3s;
}
.footer-bottom.style-2 .footer-bottom-wrapper ul li a:hover .text-effect {
	color: var(--secondaryColor);
}
.footer-bottom.style-2 .footer-bottom-wrapper ul li a:hover .text-effect .effect-1 {
	top: -100%;
}/*# sourceMappingURL=main.css.map */

/*Breadcrumb Without Image*/
.breadcrumb-wrapper.bg-cover.no-image {
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #000;
}

.comments-title {
	font-size: 36px;
	padding: 15px 0px 25px 0px;
}
.breadcrumb-items {
	font-size: 20px;
	text-transform: capitalize;
	color: #fff;
}
.breadcrumb-items a {
	color: var(--primaryColor);
	transition: .5s;
	padding-right: 10px;
	margin-right: 4px;
	font-weight: 500;
}
.breadcrumb-items a:hover {
	color: var(--primaryColor);
	transition: .5s;
}
.breadcrumb-items a:after {
	position: absolute;
	color: var(--primaryColor);
	content: "\f054";
	font-family: 'Font Awesome 5 Pro';
	font-size: 16px;
	padding: 0 6px;
	margin-top: 1px;
}
.page-content input.search-submit {
	background-color: var(--primaryColor);
	border: 1px solid var(--primaryColor);
	color: #fff;
	padding: 12px 40px;
	font-size: 25px;
	text-transform: capitalize;
}
.page-content input.search-field {
	border: 1px solid var(--primaryColor);
	background-color: transparent;
	color: var(--primaryColor);
	padding: 12px 15px;
	width: 400px;
	font-size: 25px;
}
.page-content p {
	font-size: 25px;
	padding-bottom: 50px;
	padding-top: 20px;
}
.error__wrapper {
	text-align: center;
	padding: 150px;
}
.error__text h2 {
	color: var(--secondaryColor);
	padding-bottom: 10px;
}
.error__text p {
	color: var(--primaryColor);
	padding-bottom: 50px;
}
.error__btn a {
	background-color: var(--secondaryColor);
	color: #fff;
	font-size: 20px;
	padding: 20px 50px;
	border-radius: 5px;
}
.error__btn a:hover {
	background-color: var(--primaryColor);
	transition: .5s;
}
/* time {
color: var(--primaryColor);
font-weight: 500;
margin-left: 50px;
font-size: 17px;
} */
.comment-edit-link {
	color: var(--secondaryColor);
}
/* .comment-content {
margin-left: 50px;
} */
.comment-author.vcard img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 5px;
}
.fn {
	font-size: 20px;
}

.menu-footer-menu-1-container ul li {
	padding-bottom: 17px;
}
.menu-footer-menu-1-container ul li a:hover {
	padding-left: 20px;
	color: var(--primaryColor);
}
.menu-footer-menu-2-container ul li {
	padding-bottom: 17px;
}
.menu-footer-menu-2-container ul li a:hover {
	padding-left: 20px;
	color: var(--primaryColor);
}
.about-section .about-content .about-info .theme-btn-2 {
	position: relative;
	display: inline-block;
	overflow: hidden;
	vertical-align: middle;
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
	padding: 10px 50px;
	color: var(--whiteColor);
	text-align: center;
	z-index: 1;
	transition: all 500ms ease;
	background-color: var(--blackColor);
	text-transform: capitalize;
	border-radius: 19px;
	width: 65%;
}

span.button-icon.contact {
	position: absolute;
	margin-top: 0px;
	z-index: 9999;
	margin-left: 35px;
	font-size: 25px;
	color: #fff;
	display: inline-block;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.theme-btn {
	border: none;
	padding-left: 70px;
	margin-left: 1px;
}

.accordion-button::after {
	flex-shrink: 0;
	width: var(--bs-accordion-btn-icon-width);
	height: var(--bs-accordion-btn-icon-width);
	margin-left: auto;
	content: "";
	background-image: none;
	background-repeat: no-repeat;
	background-size: var(--bs-accordion-btn-icon-width);
	transition: var(--bs-accordion-btn-icon-transition);
}
.accordion-button:not(.collapsed)::after {
	background-image: none; 
	transform: var(--bs-accordion-btn-icon-transform);
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.theme-btn.bg-yellow {
	background-color: var(--mainColor);
	color: var(--blackColor);
	font-weight: 700;
	transition: .5s;
	text-transform: capitalize;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.theme-btn.bg-yellow:hover {
	background-color: #fff;
	transition: .5s;
}
.booking-items .wpcf7-response-output {
	color: #fff;
}
.about-section.section-padding {
	padding: 70px 0 120px;
}
.admin-bar #header-sticky {
	padding-top: 15px;
	padding-bottom: 15px;
}
.admin-bar #header-sticky.custom-sticky {
	padding-top: 45px;
}

/* Sidebar Widget*/

.single-sidebar-widget {
	border: 2px solid #ededed;
	box-sizing: border-box;
	padding: 30px;
	margin-bottom: 40px;
}
.wid-title {
	margin-bottom: 25px;
	padding-left: 10px;
	position: relative;
}

.post-content h1 {
	line-height: 1.4;
	font-size: 44px;
}
.post-content h1 {
	line-height: 1.4;
	font-size: 44px;
	margin-bottom: 20px;
}
.post-content h1 a:hover{
	color: var(--primaryColor);
	transition: .5s;
}

/* Mobile Menu */
.responsive-navbar .navbar-nav {
	padding-left: 0;
	overflow: hidden;
}
.responsive-navbar .navbar-nav .menu-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	line-height: 53px;
	clear: both;
	width: 100%;
}
.responsive-navbar .navbar-nav .menu-item.menu-item-has-children {
	z-index: 1;
	transition: var(--transition);
	cursor: pointer;
}
.responsive-navbar .navbar-nav .menu-item.menu-item-has-children:after {
	top: 0;
	right: 0;
	cursor: pointer;
	content: "\f078";
	color: var(--paragraphColor);
	position: absolute;
	z-index: -1;
	font-family: 'Font Awesome 5 Pro' !important;
	font-weight: 900;
	font-size: 15px;
}
.responsive-navbar .navbar-nav .menu-item.menu-item-has-children.open:after {
	content: "\f077";
}
.responsive-navbar .navbar-nav .menu-item a {
	height: 100%;
	display: block;
	padding-right: 40px;
	text-decoration: none;
	color: var(--paragraphColor);
	text-transform: capitalize;
	font-size: 15px;
}
.responsive-navbar .navbar-nav .menu-item a:hover, .responsive-navbar .navbar-nav .menu-item a.active {
	color: var(--primaryColor);
}
.responsive-navbar .navbar-nav .menu-item a::after {
	display: none;
}
.responsive-navbar .navbar-nav .menu-item .responsive-menu-items {
	height: 0;
	overflow: hidden;
}
.responsive-navbar .navbar-nav .menu-item .responsive-menu-items a {
	padding: 0 15px;
}
.responsive-navbar .navbar-nav .menu-item .responsive-menu-items a:hover {
	color: var(--primaryColor);
}
.responsive-navbar .navbar-nav .menu-item.without-icon:after {
	display: none;
}
.responsive-navbar .navbar-nav .menu-item .sub-menu {
	display: none;
	position: unset !important;
	background-color: #f8f8f8;
	margin-top: 5px;
	margin-bottom: 5px;
}
.responsive-navbar .navbar-nav .menu-item .sub-menu li {
	list-style-type: none;
	margin-bottom: 0 !important;
	border-bottom: unset;
	line-height: 36px;
}
.responsive-navbar .navbar-nav .sub-menu .menu-item a {
	font-size: 16px;
}
.responsive-navbar .navbar-nav .menu-item .sub-menu li:last-child {
	margin-bottom: 0;
}
.responsive-navbar .navbar-nav .menu-item .sub-menu li.current_page_item a {
	color: var(--primaryColor) !important;
}
.responsive-navbar .navbar-nav .menu-item .sub-menu li .sub-menu {
	background-color: var(--whiteColor);
}
.responsive-navbar .navbar-nav .menu-item.current-menu-parent.menu-item-has-children:after {
	color: var(--primaryColor);
}
.responsive-navbar .navbar-nav .menu-item.current-menu-parent a {
	color: var(--primaryColor);
}
.responsive-navbar .navbar-nav .menu-item.current-menu-parent .sub-menu li a {
	color: var(--paragraphColor);
}
.responsive-navbar .navbar-nav .menu-item.current-menu-parent .sub-menu li a:hover {
	color: #fff;
}
.responsive-navbar .navbar-nav .active:after {
	content: "\f12e";
}
.responsive-navbar .navbar-nav .active > .responsive-menu-items {
	transition: all 200ms;
	display: block;
	height: auto;
	clear: both;
	float: left;
	width: 100%;
	padding: 0;
}
.responsive-navbar .navbar-nav .active > .responsive-menu-items li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.responsive-navbar .navbar-nav .active > a {
	color: var(--primaryColor);
}
@media only screen and (max-width: 991px) {
	.responsive-navbar {
		display: block !important;
	}
}

.color-main {
	color: var(--secondaryColor);
	margin-right: 5px;
}

.sub-menu li {
	padding: 0;
}

.sub-menu li a {
	position: relative;
	z-index: 11;
	font-size: 18px;
	font-weight: 500;
	color: var(--header);
	padding: 0 25px;
	padding-bottom: 11px;
	padding-top: 11px;
	width: 100%;
	border-bottom: 1px solid #eeeeee;
}

@media (max-width: 767px) {
	.admin-bar #header-sticky {
		padding-top: 0;
		padding-bottom: 0;
	}
	.admin-bar #header-sticky.custom-sticky {
		padding-top: 0;
	}
}

.fk-test-padding .marque-section.fix.section-padding.pt-0 {
	padding-top: 20px !important;
	padding-bottom: 0;
}

.fk-test-padding span.text-slider.text-color {
	font-weight: 500;
}

@media (max-width: 991px) {
	.header-1 {
		padding: 0 0px;
	}
}

.responsive-navbar .navbar-nav .menu-item a {
	font-size: 17px;
	font-weight: 500;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4{
	font-size: 22px
}

.f-pt-o .section-padding {
	padding-top: 0;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.theme-btn.bg-yellow {
	margin-top: 20px;
}

.booking-contact .wpcf7-response-output{
	color: #fff;
}

.single-news-items a.theme-btn.style-box-shadow {
	display: none;
}

.contentBase_Sec{
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .1);
}

.contentBase_Sec h2{
    margin-bottom: 18px;
    color: #121212;
    font-size: 28px;
}

.contentBase_Sec p{
	margin-bottom: 18px;
}