
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg-primary: #FAFAFA;
	--bg-secondary: #F5F5F5;
	--bg-card: #FFFFFF;
	--fg-primary: #111111;
	--fg-muted: #6B7280;
	--color-primary: #e0374e;
	--color-primary-light: #e0374e;
	--color-dark: #1F2937;
	--color-border: #E5E7EB;
	--color-accent: #FEF2F2;
	--radius-sm: 0.75rem;
	--radius-lg: 1.5rem;
	--font-serif: 'Manrope', system-ui, sans-serif;
	--font-sans: 'Inter', system-ui, sans-serif;
}

html {
	scroll-behavior: smooth;
}

html,
body {
    height: 100%;
    font-family: "Instrument Sans", sans-serif  !important;
    font-weight: 400;


}

a:visited, a:link, a:active {
    text-decoration: none;
}
a {
    transition: all 0.3s ease 0s;
    text-decoration: none;
    color: #EA4D62;
}


/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(40px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes heroReveal {
	from {
		opacity: 0;
		transform: translateY(30px);
		letter-spacing: 0.1em;
	}

	to {
		opacity: 1;
		transform: translateY(0);
		letter-spacing: normal;
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

@keyframes pulseGlow {

	0%,
	100% {
		box-shadow: 0 0 20px rgba(220, 38, 38, 0.15);
	}

	50% {
		box-shadow: 0 0 40px rgba(220, 38, 38, 0.3);
	}
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-4px);
	}
}

/* ========== UTILITY CLASSES ========== */
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.section-padding {
	padding: 40px 0;
	scroll-behavior: smooth;
}

@media (max-width: 767px) {
	.section-padding {
		padding: 40px 0;
	}
}




/* ========== NAVBAR ========== */
header1 {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	transition: all 0.5s ease;
}

header1.scrolled {
	background: rgba(255, 255, 255, 1);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--color-border);
	padding: 12px 0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

header1:not(.scrolled) {
	background: rgba(0, 0, 0, 0.5);
	padding: 20px 0;
}

nav1 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	z-index: 51;
	margin: 0;
}


.logo-image {
	width: 175px;
}

.logo-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	/* background: var(--color-primary); */
	color: white;
}

.logo-text {
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.5px;
	transition: color 0.3s ease;
}

header.scrolled .logo-text {
	color: var(--fg-primary);
}

header:not(.scrolled) .logo-text {
	color: white;
}

.nav-links {
	display: flex;
	gap: 32px;
	align-items: center;
}

@media (max-width: 767px) {
	.nav-links {
		display: none;
	}
}

.nav-links a {
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.3s ease;
	color: var(--color-primary);
}

header.scrolled .nav-links a {
	color: var(--fg-muted);
}

header:not(.scrolled) .nav-links a {
	color: var(--color-primary);
}

.nav-links a:hover {
	color: var(--color-primary);
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 9999px;
	background: var(--color-primary);
	color: white;
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cta-button:hover {
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.mobile-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 24px;
}

@media (max-width: 767px) {
	.mobile-toggle {
		display: block;
		color: var(--fg-primary);
	}

	header.scrolled .mobile-toggle {
		color: var(--fg-primary);
	}

	.nav-cta {
		display: block;
	}
}

/* ========== HERO SECTION ========== */
.hero {
	min-height: 20vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	margin-top: 0px;
	padding: 210px 0 100px 0;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background: url('../images/hero-restaurant.jpg') center/cover;
	z-index: 0;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			rgba(17, 17, 17, 0.9),
			rgba(17, 17, 17, 0.7),
			rgba(17, 17, 17, 0.8));
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	text-align: center;
	width: 100%;
}

.hero-content-cms {
	position: relative;
	z-index: 2;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	text-align: left;
	width: 100%;
}

.hero-content-cms .hero-title {
	font-family: var(--font-serif);
	font-size: clamp(32px, 8vw, 42px);
	font-weight: 800;
	line-height: 1.1;
	color: white;
	margin-bottom: 24px;
	animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	margin-bottom: 32px;
	animation: fadeIn 0.8s ease-out both;
}

.hero-badge::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-primary);
	animation: pulse 2s ease-in-out infinite;
}

.hero-badge span {
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	font-weight: 500;
}

.hero-title {
	font-family: var(--font-serif);
	font-size: clamp(32px, 8vw, 84px);
	font-weight: 800;
	line-height: 1.1;
	color: white;
	margin-bottom: 24px;
	animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title .highlight {
	display: block;
	color: var(--color-primary);
}

.hero-subtitle {
	max-width: 560px;
	margin: 24px auto 40px;
	font-size: clamp(16px, 2vw, 20px);
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.3s;
}

.hero-ctas {
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.5s;
	margin-bottom: 40px;
}

@media (min-width: 640px) {
	.hero-ctas {
		flex-direction: row;
	}
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 32px;
	border-radius: 9999px;
	background: var(--color-primary);
	color: white;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background: rgba(220, 38, 38, 0.9);
	box-shadow: 0 16px 32px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 32px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(20px);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
}

.storeicon {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 9999px;
	background: rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	cursor: pointer;
	animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	width: 205px !important;
	height: auto !important;
	animation-delay: 0.5s;

}

.btn-secondary:hover img {
	opacity: 0.5;
}


.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	max-width: 400px;
	margin: 0 auto;
	animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.7s;
}

@media (max-width: 640px) {
	.hero-stats {
		gap: 16px;
	}
}

.stat {
	text-align: center;
}

.stat-value {
	font-family: var(--font-serif);
	font-size: clamp(24px, 4vw, 32px);
	font-weight: 700;
	color: white;
}

.stat-label {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 4px;
}

.hero-scroll {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	animation: fadeIn 0.8s ease-out both;
	animation-delay: 0.8s;
}

.scroll-indicator {
	width: 24px;
	height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 4px;
}

.scroll-dot {
	width: 4px;
	height: 8px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.6);
	animation: bounce 2s ease-in-out infinite;
}

/* ========== PROBLEM SECTION ========== */
.problem {
	background: var(--bg-secondary);
	position: relative;
}

.section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 64px;
}

.section-badge {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 9999px;
	background: var(--color-accent);
	color: #e0374e;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 16px;
}

.section-title {
	font-family: var(--font-serif);
	font-size: clamp(28px, 5vw, 42px);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 16px;
	color: var(--fg-primary);
}

.section-title .muted {
	color: var(--fg-muted);
}

.section-subtitle {
	font-size: 18px;
	color: var(--fg-muted);
	line-height: 1.6;
	margin-top: 16px;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.section-padding .card {
	border: 1px solid var(--color-border);
	background: var(--bg-card);
	padding: 24px 24px 9px;
	border-radius: 16px;
	transition: all 0.5s ease;
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.5s;
}

.section-padding  .card p strong {
	font-weight: 700;
}


.section-padding  .card-heading {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	gap: 10px;
	align-items: center;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.card-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	color: var(--color-primary);
	transition: all 0.3s ease;
	border: 1px solid #e0374e;
}

.card:hover .card-icon {
	background: rgba(220, 38, 38, 0.1);
	transform: scale(1.1);
}

.section-padding .card-title {
	font-family: var(--font-serif);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--fg-primary);
}

.card-desc {
	font-size: 16px;
	color: var(--fg-muted);
	line-height: 1.6;
}

.card-desc a {
	font-size: 14px;
	color: var(--color-primary);
	line-height: 1.6;
	text-decoration: none;
}

.card-desc a:hover {
	font-size: 14px;
	color: var(--fg-muted);
	line-height: 1.6;
	text-decoration: none;
}

.card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 4px;
	background: var(--color-primary);
	transition: width 0.5s ease;
}

.card:hover::after {
	width: 100%;
}

/* ========== SOLUTION SECTION ========== */
.solution {
	background: var(--bg-primary);
}

.solution-area .card {
	flex: 0 0 calc(33% - 20px);
}

.solution-area {
	background: url('../images/slider-bg1.png') center/cover;
}

.solution-area .section-title {

	color: white;
}

.solution-area  .section-subtitle{
    font-size: 18px;
    color: #ffffff !important;
    line-height: 1.6;
    margin-top: 16px;
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works {
	background: var(--fg-primary);
	color: white;
}

.how-it-works .section-header {
	color: white;
}

.how-it-works .section-badge {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.how-it-works .section-title {
	color: white;
}

.how-it-works .section-title .highlight {
	color: var(--color-primary);
}

.highlight {
	color: var(--color-primary);
}

.how-it-works .section-subtitle {
	color: rgba(255, 255, 255, 0.6);
}


/* ========== processSECTION ========== */
.process {
	background: var(--bg-secondary);
	color: var(--fg-primary);
}

.process .section-header {
	color: var(--fg-primary);
}

.process .section-badge {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.process .section-title {
	color: var(--fg-primary);
}

.process .section-title .highlight {
	color: var(--color-primary);
}

.process .section-subtitle {
	color: var(--fg-muted);
}

.process .timeline-title {
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 700;
	color: var(--fg-primary);
	margin-bottom: 12px;
}

.process .section-badge {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 9999px;
	background: var(--color-accent);
	color: #e0374e;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 16px;
}


.timeline {
	position: relative;
	margin-top: 80px;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 48.5%;
	top: 0;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	transform: translateX(-50%);
}

@media (max-width: 767px) {
	.timeline::before {
		display: none;
	}

	#how-it-works .timeline-item.reverse {
		width: 95% !important;
		gap: 0px !important;
		justify-content: center;
	}

	#how-it-works .timeline-item {
		width: 95% !important;
		gap: 0px !important;
		justify-content: center;
	}

	#how-it-works .timeline-item.reverse .timeline-content {
		justify-content: center !important;
	}

	#how-it-works .timeline-item .timeline-content {
		justify-content: center !important;
	}

	.faq-img:before {
		display: none;
	}

}

#how-it-works .timeline-item {
	display: flex;
	gap: 32px;
	margin-bottom: 0px;
	position: relative;
	flex-direction: row;
	justify-content: center;
	width: 50%;
	animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.5s;
}

#how-it-works .timeline-item.reverse {
	display: flex;
	gap: 32px;
	margin-bottom: 0px;
	position: relative;
	flex-direction: row;
	justify-content: center;
	width: 50%;
	animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.5s;
}

#how-it-works .timeline-item ul {
	padding: 0;
	margin: 0;
}

#how-it-works .timeline-item ul li {
	padding: 0;
	margin: 0 0 0 0px;
	list-style-type: none;
}


#path .timeline-item {
	display: flex;
	gap: 32px;
	margin-bottom: 0px;
	position: relative;
	flex-direction: row;
	justify-content: center;
	width: 400px;
}

#path .timeline-item ul {
	padding: 0;
	margin: 0;
}

#path .timeline-item ul li {
	padding: 0;
	margin: 0 0 0 20px;
	list-style-type: none;
}


#how-it-works .timeline-content1 {
	display: flex;
	gap: 32px;
	flex-direction: row;
	justify-content: center;
}


#how-it-works .timeline-item .timeline-content {
	display: flex;
	gap: 32px;
	flex-direction: row;
	justify-content: flex-start;
}

#how-it-works .timeline-item.reverse .timeline-content {
	display: flex;
	gap: 32px;
	flex-direction: row;
	justify-content: flex-end;
}

#how-it-works .timeline {
	display: flex;
	gap: 32px;
	flex-direction: row;
	justify-content: center;
}


#path .timeline {
	position: relative;
	margin-top: 80px;
	display: flex;
	gap: 32px;
	flex-direction: row;
	justify-content: center;
}

#path .timeline-content>div {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#path .cards-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#path .card {
	flex: 0 0 calc(33% - 20px);
}


#trust .cards-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#trust .card {
	flex: 0 0 calc(33% - 20px);
}


.cards-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.card {
	flex: 0 0 calc(25% - 20px);
}


#path .timeline-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

#path .timeline-item {
	border: 1px solid var(--color-border);
	background: var(--bg-card);
	padding: 24px;
	border-radius: 16px;
	transition: all 0.5s ease;
	position: relative;
	overflow: hidden;
}


.timeline-item.reverse {
	flex-direction: row-reverse;
}

.timeline-item.reverse .timeline-content {
	text-align: right;
}

.timeline-item.reverse .timeline-content>div {
	align-items: flex-end;
}

@media (max-width: 767px) {
	.timeline-item {
		gap: 0;
		margin-bottom: 64px;
	}

	.timeline-item.reverse {
		flex-direction: row;
	}

	.timeline-item.reverse .timeline-content {
		text-align: center;
	}

	.timeline-item.reverse .timeline-content>div {
		align-items: center;
	}
}

.timeline-content {
	flex: 1;
	text-align: left;
}

.timeline-content>div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

@media (max-width: 767px) {
	.timeline-content {
		text-align: center;
	}

	.timeline-content>div {
		align-items: center;
	}
}

.timeline-step {
	font-family: var(--font-serif);
	font-size: 56px;
	font-weight: 800;
	color: rgba(220, 38, 38, 0.3);
	margin-bottom: 8px;
}

.timeline-title {
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 700;
	color: white;
	margin-bottom: 12px;
}

.timeline-desc {
	max-width: 400px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
}

.timeline-dot {
	position: absolute;
	left: 50%;
	top: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 2px solid var(--color-primary);
	background: var(--fg-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateX(-50%);
	z-index: 10;
	box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

.timeline-dot::after {
	content: '';
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--color-primary);
}

@media (max-width: 767px) {
	.timeline-dot {
		display: none;
	}
}

@media (max-width: 767px) {
	.timeline-item {
		flex-direction: column;
	}

	.timeline-item.reverse {
		flex-direction: column;
	}
}

/* ========== PRODUCT SECTION ========== */
.product {
	background: var(--bg-primary);
}

.product-rows {
	display: flex;
	flex-direction: column;
	gap: 96px;
}

.product-row {
	display: flex;
	gap: 48px;
	align-items: center;
	animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.5s;
}

.product-row.reverse {
	flex-direction: row-reverse;
	animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.5s;
}

.product-image {
	animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.5s;
}

.product-content {
	animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.5s;
}



.product-image {
	flex: 1;
	border-radius: 24px;
	overflow: hidden;
	aspect-ratio: 4/3;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.product-image:hover img {
	transform: scale(1.05);
}

.product-content {
	flex: 1;
}

.product-title {
	font-family: var(--font-serif);
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--fg-primary);
}

.product-desc {
	font-size: 16px;
	color: var(--fg-muted);
	line-height: 1.8;
	margin-bottom: 32px;
}

.product-stats {
	display: flex;
	gap: 32px;
	margin-bottom: 32px;
}

.product-stat {
	display: flex;
	flex-direction: column;
}

.product-stat-value {
	font-family: var(--font-serif);
	font-size: 32px;
	font-weight: 700;
	color: var(--color-primary);
}

.product-stat-label {
	font-size: 14px;
	color: var(--fg-muted);
	margin-top: 4px;
}

.product-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--color-primary);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.product-link:hover {
	gap: 12px;
}

/* ========== TRUST SECTION ========== */
.trust {
	background: var(--bg-secondary);
	position: relative;
	overflow: hidden;
}

.trust::before,
.trust::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(96px);
	pointer-events: none;
}

.trust::before {
	top: -96px;
	right: -96px;
	width: 384px;
	height: 384px;
	background: rgba(220, 38, 38, 0.05);
}

.trust::after {
	bottom: -96px;
	left: -96px;
	width: 384px;
	height: 384px;
	background: rgba(220, 38, 38, 0.05);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 24px;
	margin-bottom: 32px;
}

.trust-card {
	border: 1px solid var(--color-border);
	background: var(--bg-card);
	padding: 32px;
	border-radius: 16px;
	transition: all 0.5s ease;
}

.trust-card:hover {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.trust-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: var(--color-primary);
	transition: all 0.3s ease;
	border: 1px solid #e0374e;
}

.trust-card:hover .trust-card-icon {
	background: rgba(220, 38, 38, 0.1);
	animation: pulseGlow 3s ease-in-out infinite;
}

.trust-card h3 {
	font-family: var(--font-serif);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--fg-primary);
}

.trust-card p {
	font-size: 14px;
	color: var(--fg-muted);
	line-height: 1.6;
}

.trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-top: 32px;
}

.trust-badge {
	padding: 8px 20px;
	border: 1px solid var(--color-border);
	border-radius: 9999px;
	background: var(--bg-card);
	font-size: 14px;
	font-weight: 500;
	color: var(--fg-muted);
	transition: all 0.3s ease;
}

.trust-badge:hover {
	border-color: rgba(220, 38, 38, 0.3);
	color: var(--fg-primary);
}


/* ========== FAQ SECTION ========== */
.faq {
	background: url('../images/faq-bg.png') center/cover;
	color: white;
	position: relative;
	overflow: hidden;
	padding-bottom: 80px;
}

.faq-img {
	width: 50%;
}

.faq-img img {
	max-width: 400px;
	width: 100%;
	border-radius: 20px;
	float: left;
}


.faq-img:before {
	content: "";
	position: absolute;
	bottom: -40px;
	left: 40px;
	width: 400px;
	height: 450px;
	border-radius: 20px;
	background-color: #e0374e;
	animation: bounce-y 10s infinite linear;
	z-index: -1;
}

.faq-img-one {
	width: auto;
	position: absolute;
	top: 60%;
	margin-left: 5%;
}

.faq-img-one img {
	max-height: 200px;
	width: auto;
	border-radius: 20px;
}

@media (max-width: 767px) {

.container {
    padding: 0 15px;
}
.carousel-control.right{
    right: -30px;
}
.carousel-control.left{
    left: -30px;
}

    .product-row.reverse{
        flex-direction: column;
    }

    .storeicon{
        margin: 0 5px;
    }
    .product-row{
        flex-direction: column;
        gap: 32px;
    }


	.faq-img-one {
		display: none;
	}

	.faq-img img {
		max-width: 100%;
		width: 100%;
		border-radius: 20px;
		float: right;
	}

	.faq-img {
		width: 100%;
	}

	.container {
		width: 100% !important;
	}

	li.accordion span {
		padding: 10px 20px 10px 0;
	}
}


.accordion--container {
	width: 100%;
	margin: 30px auto;
	display: block;
}

li.accordion ul {
	margin: 0;
	padding: 0;
	margin: 0 !important;
	display: none;
	color: rgb(255, 255, 255);

}

li.accordion ul .txt {
	padding: 10px 20px;
	margin: 0;
	font-size: 18px;
	color: #464545;

}

li.accordion ul .txt p {
	color: #ffffff;
	font-size: 16px;
}

li.accordion ul .txt p a {
	color: #e0374e;
}

li.accordion span {
	display: block;
	font-size: 18px;
	font-weight: 500;
	padding: 10px;
	margin-top: 5px;
	color: #ffffff;
	cursor: pointer;
	position: relative;
	text-align: left;

}

li.accordion {
	border-bottom: 1px solid #cccccc;
	list-style: none;

}

li.accordion span i {
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	height: fit-content;
	margin: auto;
	color: #ffffff;
	transition: .3s;
}

li.accordion.open span i {
	transform: rotate(540deg);
	transition: .3s;
}


/* ========== LOYALTY SECTION ========== */
.loyalty {
	background: var(--fg-primary);
	color: white;
	position: relative;
	overflow: hidden;
}

.loyalty::before,
.loyalty::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(96px);
	pointer-events: none;
}

.loyalty::before {
	top: 0;
	right: 0;
	width: 288px;
	height: 288px;
	background: rgba(220, 38, 38, 0.1);
}

.loyalty::after {
	bottom: 0;
	left: 0;
	width: 288px;
	height: 288px;
	background: rgba(220, 38, 38, 0.05);
}

.loyalty-wrapper {
	display: flex;
	gap: 64px;
	align-items: center;
	position: relative;
	z-index: 1;
}




@media (max-width: 10241px) {


}

.loyalty-content {
	flex: 1;
}

.loyalty-content .section-badge {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.loyalty-content h2 {
	font-family: var(--font-serif);
	font-size: clamp(28px, 5vw, 42px);
	font-weight: 700;
	color: white;
	line-height: 1.2;
	margin-bottom: 16px;
}

.loyalty-content h2 .highlight {
	color: var(--color-primary);
}

.loyalty-content p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
	margin-bottom: 32px;
}

.loyalty-stat {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	margin-bottom: 32px;
}

.loyalty-stat-value {
	font-family: var(--font-serif);
	font-size: 56px;
	font-weight: 800;
	color: var(--color-primary);
}

.loyalty-stat-label {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 8px;
}

.loyalty-perks {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

@media (max-width: 767px) {
	.loyalty-perks {
		grid-template-columns: 1fr;
	}
}

.perk-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 24px;
	backdrop-filter: blur(20px);
	transition: all 0.5s ease;
	animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.5s;
}

.perk-card:hover {
	background: rgba(255, 255, 255, 0.1);
}

.perk-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	color: var(--color-primary);
	transition: all 0.3s ease;
	border: 1px solid #e0374e;
}

.perk-card:hover .perk-icon {
	animation: float 4s ease-in-out infinite;
}

.perk-card h3 {
	font-family: var(--font-serif);
	font-size: 16px;
	font-weight: 700;
	color: white;
	margin-bottom: 8px;
}

.perk-card p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.5;
}

/* ========== SOCIAL PROOF SECTION ========== */
.testimonials {
	background: var(--bg-primary);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
}

.testimonial-card {
	border: 1px solid var(--color-border);
	background: var(--bg-card);
	padding: 24px;
	border-radius: 16px;
	transition: all 0.5s ease;
}

.testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.stars {
	display: flex;
	gap: 4px;
	margin-bottom: 16px;
}

.star {
	width: 16px;
	height: 16px;
	fill: var(--color-primary);
}

.quote {
	font-size: 14px;
	color: var(--fg-muted);
	line-height: 1.6;
	margin-bottom: 24px;
}

.testimonial-author {
	display: flex;
	gap: 12px;
	align-items: center;
}

.author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(220, 38, 38, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	font-family: var(--font-serif);
	font-size: 14px;
	font-weight: 700;
}

.author-info h4 {
	font-size: 14px;
	font-weight: 600;
	color: var(--fg-primary);
	margin-bottom: 2px;
}

.author-info p {
	font-size: 12px;
	color: var(--fg-muted);
}

/* ========== CTA SECTION ========== */
.cta {
	background: var(--bg-secondary);
	position: relative;
	overflow: hidden;
}

.cta::before,
.cta::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(96px);
	pointer-events: none;
}

.cta::before {
	top: 0;
	left: 25%;
	width: 256px;
	height: 256px;
	background: rgba(220, 38, 38, 0.05);
}

.cta::after {
	bottom: 0;
	right: 25%;
	width: 256px;
	height: 256px;
	background: rgba(220, 38, 38, 0.05);
}

.cta-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 960px;
	margin: 0 auto;
}

.cta h2 {
	font-family: var(--font-serif);
	font-size: clamp(32px, 6vw, 42px);
	font-weight: 800;
	line-height: 1.2;
	color: var(--fg-primary);
	margin-bottom: 24px;
}

.cta p {
	font-size: 18px;
	color: var(--fg-muted);
	line-height: 1.6;
	margin-bottom: 40px;
}

.cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

@media (min-width: 640px) {
	.cta-buttons {
		flex-direction: row;
	}
}

.btn-large {
	padding: 16px 40px;
	font-size: 16px;
	border-radius: 9999px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn-large.primary {
	background: var(--color-primary);
	color: white;
	animation: pulseGlow 3s ease-in-out infinite;
}

.btn-large.primary:hover {
	background: rgba(220, 38, 38, 0.9);
	box-shadow: 0 16px 32px rgba(220, 38, 38, 0.3);
}

.btn-large.secondary {
	background: var(--bg-card);
	color: var(--fg-primary);
	border: 1px solid var(--color-border);
}

.btn-large.secondary:hover {
	border-color: rgba(220, 38, 38, 0.3);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.cta-trust {
	font-size: 14px;
	color: var(--fg-muted);
	margin-top: 24px;
}

/* ========== FOOTER ========== */
footer {
	background: var(--fg-primary);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: white;
}

.footer-top {
	display: flex;
	gap: 64px;
	flex-wrap: wrap;
	margin-bottom: 10px;
	margin-top: 64px;
}



.footer-brand {
	max-width: 280px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	text-decoration: none;
}

.footer-logo-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.footer-logo-text {
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 700;
	color: white;
}

.footer-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.6;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 32px;
	flex: 1;
}

@media (max-width: 640px) {
	.footer-links {
		grid-template-columns: repeat(2, 1fr);
	}
}

.footer-section h4 {
	font-size: 14px;
	font-weight: 600;
	color: white;
	margin-bottom: 16px;
}

.footer-section ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
}

.footer-section a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	position: relative;
	display: inline-block;
	transition: color 0.3s ease;
}

.footer-section a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--color-primary);
	transition: width 0.3s ease;
}

.footer-section a:hover {
	color: white;
}

.footer-section a:hover::after {
	width: 100%;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	width: 100%;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
}

@media (min-width: 640px) {
	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
		text-align: center;
	}
}

.footer-copy {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
	display: flex;
	gap: 24px;
}

.footer-socials a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-socials a:hover {
	color: white;
}

/* ========== VISIBILITY ANIMATIONS ========== */
.animate-fade-in-up {
	animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-fade-in-left {
	animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-fade-in-right {
	animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-scale-in {
	animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.delay-100 {
	animation-delay: 0.1s;
}

.delay-200 {
	animation-delay: 0.2s;
}

.delay-300 {
	animation-delay: 0.3s;
}

.delay-400 {
	animation-delay: 0.4s;
}

.delay-500 {
	animation-delay: 0.5s;
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}


/* ============ Full Page Slider ================= */
.creative-fullpage--slider {
	background-color: #000000;
	z-index: 2;
	width: 100%;
	position: relative;
	flex-direction: column;
	height: 100vh;
	font-size: 16px;
	display: flex;
	clip-path: none !important;
}

.creative-fullpage--slider .slider-inner {
	background: #000;
	height: 100vh;
	position: relative;
}

.creative-fullpage--slider .swiper-slide {
	position: relative;
	display: flex;
	justify-content: center;
	text-align: left;
	flex-direction: column;
	overflow: hidden;
}

.creative-fullpage--slider .swiper-slide .slider-inner img {
	object-fit: cover;
	width: 100%;
	height: 100vh;
}

.creative-fullpage--slider .swiper-slide .slider-inner video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
	position: absolute;
	top: 22%;
	width: 100%;
	z-index: 1;
	text-align: center;
}

.creative-fullpage--slider .swiper-slide .slider-inner::after {
	content: "";
	position: absolute;
	width: 101%;
	height: 100%;
	top: 0;
	left: -1px;
	background-color: transparent;
	background-image: radial-gradient(at center right, #FFFFFF00 50%, #00000096 100%);
}

.swiper-slide .slider-inner .swiper-content .title-area .tag {
	color: #ffffff;
	font-weight: 900;
	font-size: 24px;
	margin-bottom: 10px;
	margin-top: 0px;
}

.swiper-slide .slider-inner .swiper-content .title-area .title {
	margin-top: 50px;
	color: #fff;
	font-size: 60px;
	font-family: "Inter", sans-serif;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 50px;
	margin-left: -12px;
	text-decoration: none;
}

.swiper-slide .slider-inner .swiper-content p.disc {
	font-size: 20px;
	width: 100%;
	margin-top: 15px;
	margin: 20px 0px 40px 0px;
	font-weight: 400;
	line-height: 32px;
	color: #FFFFFFB0;
}

.creative-btn--wrap .creative-slide--btn {
	color: #ffffff;
	margin-left: 18px;
	font-size: 1.4em;
	transition: margin-left 300ms cubic-bezier(0.49, 0, 0.01, 1);
	font-weight: 400;
	display: inline-flex;
	position: relative;
	white-space: nowrap;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	user-select: none;
	outline: none;
	outline-color: transparent;
	box-shadow: none;
	will-change: transform;
	backface-visibility: hidden;
}

.creative-btn--circle .circle {
	position: absolute;
	right: calc(100% - 10px);
	top: 0;
	bottom: 0;
	margin: auto;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	clip-path: circle(25% at 50% 50%);
	transition: clip-path 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle .circle-fill {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 100%;
	background-color: #ffffff;
	will-change: transform;
	transform: scale(0);
	z-index: 1;
	transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1), background-color 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle-icon {
	transform: translate(-100%, 0%);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	z-index: 2;
	transition: all 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle-icon .icon-arrow {
	width: 20px;
	height: 20px;
	stroke: none;
	fill: #000;
}

.creative-btn--circle .circle-outline {
	fill: transparent;
	width: 10px;
	stroke: #ffffff;
}

.creative-btn--wrap .creative-slide--btn .creative-btn--label {
	margin-left: 4pt;
	transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--wrap .creative-slide--btn .creative-btn__border {
	position: absolute;
	left: 4pt;
	right: 0;
	bottom: 0;
	height: 1px;
	background: currentColor;
	transform-origin: right;
	transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--wrap .creative-slide--btn:hover .creative-btn--label {
	transform: translateX(18px);
}

.creative-btn--wrap .creative-slide--btn:hover .creative-btn__border {
	transform: scale(0, 1);
}

.creative-btn--wrap .creative-slide--btn:hover {
	margin-left: 38px !important;
}

.creative-btn--wrap .creative-slide--btn:hover .circle {
	clip-path: circle(50% at 50% 50%);
}

.creative-btn--wrap .creative-slide--btn:hover .circle-fill {
	transform: scale(1, 1);
}

.creative-btn--wrap .creative-slide--btn:hover .circle-icon {
	transform: translate(0%, 0%);
	opacity: 1;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-next,
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
	bottom: 50%;
	top: unset;
	transform: scale(1);
	transition: all 0.4s;
	background-color: #FFFFFF00;
	backdrop-filter: blur(20px);
	height: 85px;
	width: 85px;
	line-height: 85px;
	border-radius: 50%;
	transition: all 0.4s;
	color: white;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-next {
	right: 50px;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
	left: 50px;
}

.swiper-container-h .slider-pagination-area {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: unset;
	right: unset;
	bottom: 80px;
	left: 50% !important;
	transform: translateX(-50%);
	width: 500px;
	z-index: 1;
}

.swiper-container-h .slider-pagination-area .slide-range {
	font-size: 16px;
	font-weight: 500;
	margin: 0 15px;
	color: #ffffff;
	line-height: 0;
	position: absolute;
	font-size: 20px;
}

.swiper-container-h .slider-pagination-area .slide-range.one {
	left: -50px;
}

.swiper-container-h .slider-pagination-area .slide-range.three {
	right: -50px;
}

.swiper-container-h .slider-pagination-area .swiper-pagination {
	bottom: 0 !important;
	width: 500px !important;
}

.swiper-container-h .slider-pagination-area .swiper-pagination .swiper-pagination-progressbar-fill {
	background: #ffffff;
}

.swiper-container-h .swiper-button-next:hover,
.swiper-container-h .swiper-button-prev:hover {
	background: #FFFFFF0D;
}


/* ====================== Responsive Ipad =============================== */
@media (max-width: 991px) {
	.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
		width: 100%;
		text-align: center;
		left: 0;
	}

	.creative-fullpage--slider .swiper-container-h .swiper-button-next,
	.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
		height: 50px;
		width: 50px;
		line-height: 50px;
	}

	.swiper-container-h .slider-pagination-area {
		width: 200px !important;
	}

	.swiper-container-h .swiper-button-next::after,
	.swiper-container-h .swiper-button-prev::after {
		font-size: 30px;
	}

	.creative-fullpage--slider .swiper-container-h .swiper-button-next,
	.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
		background: #ffffff3b;
	}

	.swiper-container-h .slider-pagination-area .swiper-pagination {
		bottom: 0 !important;
		width: 200px !important;
	}
}

/* ====================== Responsive Iphone =============================== */
@media screen and (max-width: 767px) {
	.swiper-slide .slider-inner .swiper-content .title-area .title {
		font-size: 30px;
		line-height: 1.5;
	}

	.swiper-slide .slider-inner .swiper-content .title-area .tag {
		margin-bottom: 0px;
	}

	.swiper-slide .slider-inner .swiper-content p.disc {
		margin: 20px auto 20px auto;
		font-size: 16px;
		width: 95%;
	}

	.swiper-container-h .slider-pagination-area {
		display: none;
	}

	.swiper-slide .slider-inner .swiper-content p.disc br {
		display: none;
	}

	.creative-fullpage--slider .swiper-container-h .swiper-button-next {
		right: 15px;
	}

	.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
		left: 15px;
	}


}

/* ====================== cms page css =============================== */

#cms1 .card {
	flex: 0 0 calc(100% - 20px);
}

#cms2 .card {
	flex: 0 0 calc(50% - 20px);
}

#cms3 .card {
	flex: 0 0 calc(33% - 20px);
}

#cms4 .card {
	flex: 0 0 calc(25% - 20px);
}


.cmspage ol li, .cmspage ul li {
    font-size: 16px;
	margin-bottom: 15px;
}

.contact-area {
	display: flex;
	gap: 48px;
	align-items: center;
	animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.5s;
	flex-direction: row;
	align-items: flex-start;
}

.contact-info {
	overflow: hidden;
	display: flex;
	gap: 10px;
	flex-direction: column;
	width: 50%;
	font-size: 16px;
	font-weight: 400 !important;
	line-height: 24px;
	margin-bottom: 20px;
	text-align: left;
}

.contact-info h2 {
	font-size: 24px;
	font-weight: 600 !important;
	line-height: 30px;
	margin-bottom: 20px;
	text-align: left;
}

.contact-info h3 {
	font-size: 18px;
	font-weight: 600 !important;
	line-height: 24px;
	margin-bottom: 5px;
	text-align: left;
}

.contact-info p {
	font-size: 16px;
	font-weight: 400 !important;
	line-height: 24px;
	margin-bottom: 20px;
	text-align: left;
}

.contact-info p a:visited,
.contact-info p a:link,
.contact-info p a:active {
	text-decoration: none;
}

.contact-info p a {
	transition: all 0.3s ease 0s;
	text-decoration: none;
	color: #EA4D62;
}

.contact-info h3 {
	font-size: 18px;
	font-weight: 600 !important;
	line-height: 24px;
	margin-bottom: 5px;
	text-align: left;
}

.contactform {
	animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.5s;
	display: flex;
	gap: 10px;
	flex-direction: column;
	width: 50%;
}

.contactform h2 {
	font-size: 24px;
	font-weight: 600 !important;
	line-height: 30px;
	margin-bottom: 20px;
	text-align: left;
}

.contactform h3 {
	font-size: 18px;
	font-weight: 600 !important;
	line-height: 24px;
	margin-bottom: 5px;
	text-align: left;
}

.contactform p {
	font-size: 16px;
	font-weight: 400 !important;
	line-height: 24px;
	margin-bottom: 20px;
	text-align: left;
}

.contactform p a:visited,
.contactform p a:link,
.contactform p a:active {
	text-decoration: none;
}

.contactform p a {
	transition: all 0.3s ease 0s;
	text-decoration: none;
	color: #EA4D62;
}


.contactform input[type=text],
.contactform input[type=email],
.contactform input[type=number],
.contactform select,
.contactform textarea {
	width: 100%;
	padding: 12px;
	height: 40px;
	border: 1px solid #ccc;
	border-radius: 25px;
	box-sizing: border-box;
	margin-top: 10px;
	margin-bottom: 10px;
	resize: vertical;
	background-color: rgba(255, 255, 255, 0.2);
	color: #000;
}

.contactform input[type=text]:focus,
.contactform input[type=email]:focus,
.contactform input[type=number]:focus,
.contactform select:focus,
.contactform textarea:focus {
	border: 1px solid #ccc;
	outline: none;
}

.contactform input[type=submit] {
	background-color: #E0374E;
	color: #ffffff;
	padding: 12px 40px;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
}

.contactform input[type=submit]:hover {
	background-color: #F21735;
	color: #ffffff;
}

.breadcrumb {
	padding: 0 0;
	color: #ffffff;
	margin: 0px;
	width: 600px;
	background: none;
}

.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: end;
	color: #ffffff;
}

.breadcrumb ol li a {
	color: #F21735;
	text-decoration: none;
}

.breadcrumb li:not(:last-child)::after {
	display: inline-block;
	margin: 0 0.25rem;
	content: "→";
	color: #ffffff;
}


.faq-inner .accordion--container {
	width: 70%;
	margin: 0px auto;
	display: block;
}

.faq-inner .content {
	position: relative;
	z-index: 1;
}

.faq-inner li.accordion ul {
	margin: 0;
	padding: 0;
	margin: 0 !important;
	display: none;
	color: rgb(0, 0, 0);

}

.faq-inner li.accordion ul .txt {
	padding: 10px 20px;
	margin: 0;
	font-size: 18px;
	color: #464545;

}

.faq-inner li.accordion ul .txt p {
	color: #000000;
	font-size: 16px;
}

.faq-inner li.accordion span {
	display: block;
	font-size: 18px;
	font-weight: 500;
	padding: 10px;
	margin-top: 5px;
	color: #000000;
	cursor: pointer;
	position: relative;
	text-align: left;

}

.faq-inner li.accordion {
	border-bottom: 1px solid #cccccc;
	list-style: none;

}

.faq-inner li.accordion span i {
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	height: fit-content;
	margin: auto;
	color: #000000;
	transition: .3s;
}

.faq-inner li.accordion.open span i {
	transform: rotate(540deg);
	transition: .3s;
}

.faq-inner .faq-img {
	width: 65%;
}

.faq-inner .faq-img img {
	max-width: 400px;
	width: 100%;
	border-radius: 20px;
	float: left;
}


.faq-inner .faq-img:before {
	content: "";
	position: absolute;
	bottom: -40px;
	left: 40px;
	width: 400px;
	height: 450px;
	border-radius: 20px;
	background-color: #e0374e;
	animation: bounce-y 10s infinite linear;
	z-index: -1;
}


.blog-wrapper {
	display: flex;
	gap: 25px;
	align-items: flex-start;
	position: relative;
	z-index: 1;
}

.blog-list {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	position: relative;
	z-index: 1;
	flex-direction: row;
	margin-top: 20px;
}

.blog-list .picture {
	width: 30%;
}

.blog-list .picture img {
	width: 80px;
	height: auto;
	border-radius: 10px;
}

.blog-list .description {
	width: 70%;
}

.blog-list .description h2 {
	font-size: 14px !important;
	margin: 0px 0 10px 0 !important;
	font-weight: 700;
	text-align: left;
	float: left;
	width: 100%;
	color: #000;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-list .description span {
	color: #666666;
	font-size: 12px !important;
}

.blog-wrapper input[type=text],
.blog-wrapper input[type=email],
.blog-wrapper input[type=number],
.blog-wrapper select,
.blog-wrapper textarea {
	width: 100%;
	padding: 12px;
	height: 40px;
	border: 1px solid #ccc;
	border-radius: 25px;
	box-sizing: border-box;
	margin-top: 10px;
	margin-bottom: 10px;
	resize: vertical;
	background-color: rgba(255, 255, 255, 0.2);
	color: #000;
}

.blog-content {
	width: 75%;
	display: block;
	gap: 15px;
	align-items: flex-start;
	position: relative;
	z-index: 1;
	flex-direction: row;
}

.blog-content-details {
	width: 75%;
	display: flex;
	gap: 15px;
	align-items: flex-start;
	position: relative;
	z-index: 1;
	flex-direction: column;
}

.blog-content-details .blogbox {
	float: left;
	background: #fff;
	text-align: center;
	border-radius: 10px;
	width: 98%;
	border: 0px solid #fff;
	overflow: hidden;
	margin: 1%;
}

.blog-content-details .datearea {
	font-size: 16px !important;
	font-weight: 700;
	color: #fff;
	position: absolute;
	/* top: 29px; */
	margin-left: 86%;
	padding: 8px 15px;
	border-radius: 5px;
	border-top-right-radius: 0;
	background: linear-gradient(to bottom, #96143C 0%, #FC004F 100%);
	text-align: center;
	transition: all 300ms ease;
	margin-top: -21px;
}


.blog-sidebar {
	width: 25%;
}

.blog-sidebar .title {
	font-weight: 600;
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 0;
}

.blog-sidebar .left-border {
	width: 35px;
	height: 6px;
	border-radius: 6px;
	display: inline-block;
	background: #e55368;
}

.blog-bg {
	background-image: url(/assets/img/blog-bg.png);
	background-position: left top;
	background-repeat: no-repeat;
}

.blogbox {
	float: left;
	background: #fff;
	text-align: center;
	border-radius: 10px;
	width: 31%;
	border: 0px solid #fff;
	overflow: hidden;
	margin: 1% 1% 4% 1%;
}

.blogbox img {
	width: 100%;
	height: auto;
}


.blogbox:hover {
	background: #ffffff;
	background: linear-gradient(10deg, rgba(255, 255, 255, 1) 0%, rgba(252, 220, 225, 1) 100%);
}

.blogboxcontent {
	float: left;
	text-align: left;
	padding: 20px;
	width: 100%;
}

.blogbox p {
	font-size: 16px !important;
	margin: 0px 0 20px !important;
	font-weight: 400;
	text-align: left;
	float: left;
	width: 100%;
	color: #fff;
}

.blogbox h4 {
	font-size: 24px !important;
	margin: 10px 0 10px !important;
	font-weight: 700;
	text-align: left;
	float: left;
	width: 100%;
	color: #000;
	display: -webkit-box;
	/* Required for WebKit clamping */
	-webkit-line-clamp: 2;
	/* Limits the text to 3 lines */
	-webkit-box-orient: vertical;
	/* Stacks the content vertically */
	overflow: hidden;
	line-height: 34px;
}

.blogbox p {
	font-size: 16px !important;
	margin: 10px 0 10px !important;
	font-weight: 400;
	text-align: left;
	float: left;
	width: 100%;
	color: #666666;
	display: -webkit-box;
	/* Required for WebKit clamping */
	-webkit-line-clamp: 4;
	/* Limits the text to 3 lines */
	-webkit-box-orient: vertical;
	/* Stacks the content vertically */
	overflow: hidden;
}

.category {
	font-size: 18px !important;
	margin: 10px 0 10px !important;
	padding-bottom: 5px;
	font-weight: 700;
	text-align: left;
	float: left;
	width: 100%;
	max-width: 100px;
	color: #E1354E;
	border-bottom: 2px solid #E1354E;
}

.comment {
	font-size: 14px !important;
	margin: 10px 20px 0 0 !important;
	padding-bottom: 5px;
	font-weight: 400;
	text-align: left;
	float: left;
	width: auto;
	color: #666666;
}

.user {
	font-size: 14px !important;
	margin: 10px 20px 0 0 !important;
	padding-bottom: 5px;
	font-weight: 400;
	text-align: left;
	float: left;
	width: auto;
	color: #666666;
}

.dat11e {
	width: 50px;
	height: 70px;
	border: 1px solid red;
	position: absolute;
	right: 10px;
}

.datearea {
	font-size: 16px !important;
	font-weight: 700;
	color: #fff;
	position: absolute;
	/* top: 29px; */
	margin-left: 18%;
	padding: 8px 15px;
	border-radius: 5px;
	border-top-right-radius: 0;
	background: linear-gradient(to bottom, #96143C 0%, #FC004F 100%);
	text-align: center;
	transition: all 300ms ease;
	margin-top: -21px;
}

.datearea .date {
	font-size: 16px !important;
	font-weight: 700;
	color: #fff;
}

.datearea .month {
	font-size: 16px !important;
	font-weight: 700;
	color: #fff;
}

.datearea:before {
	content: "";
	position: absolute;
	top: 0;
	right: -17px;
	width: 0;
	height: 0;
	border-bottom: 21px solid #D9D9D9;
	border-right: 17px solid transparent;
}

.videobox img {
	border-radius: 20px;
	mix-blend-mode: luminosity;
}

.tagline {
	display: flex;
	flex-wrap: wrap;
}

.tagline a {
	font-weight: 500;
	font-size: 14px;
	text-transform: capitalize;
	background: #ffe9f7;
	color: #e55368;
	border-radius: 4px;
	padding: 6px 16px;
	display: inline-block;
	margin-right: 6px;
	margin-bottom: 6px;
	transition: all 0.4s ease;
	text-decoration: none;
}

.tagline a:hover {
	background: #FC004F;
	color: #ffffff;
	text-decoration: none;
}


#pagination {
	margin: 0;
	padding: 0;
	text-align: center
}

#pagination li {
	display: inline
}

#pagination li a {
	display: inline-block;
	text-decoration: none;
	padding: 8px 10px;
	color: #363636
}

/* Active and Hoverable Pagination */
#pagination li a {
	border-radius: 50%;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
	width: 40px;
	height: 40px;

}

#pagination li a.active {
	background-color: #e55368;
	color: #fff
}

#pagination li a:hover:not(.active) {
	background-color: #ddd;
}

/* border-pagination */
.b-pagination-outer {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	overflow: hidden;
	display: flex
}

#border-pagination {
	margin: 0 auto;
	padding: 0;
	text-align: center
}

#border-pagination li {
	display: inline;

}

#border-pagination li a {
	display: block;
	text-decoration: none;
	color: #000;
	padding: 5px 10px;
	border: 1px solid #ddd;
	float: left;

}

#border-pagination li a {
	-webkit-transition: background-color 0.4s;
	transition: background-color 0.4s
}

#border-pagination li a.active {
	background-color: #4caf50;
	color: #fff;
}

#border-pagination li a:hover:not(.active) {
	background: #ddd;
}


/**********************************/
/************ Team CSS ************/
/**********************************/

#cms4 .team {
	flex: 0 0 calc(25% - 20px);
}


.team {
	position: relative;
	margin: 0;
	width: 100%;
	text-align: center;
	max-width: 25%;
	margin-bottom: 30px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	overflow: hidden;
}

.team .team-img {
	position: relative;
	font-size: 0;
	color: #353535;
}

.team .team-img img {
	width: 100%;
	height: auto;
	mix-blend-mode: luminosity;
	border-radius: 10px;
	transition: all 0.4s ease;
}

.team:hover .team-img img {
	mix-blend-mode: normal;
}

.team .team-social {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 20px;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .5);
	transition: all .3s;
	font-size: 0;
	z-index: 1;
	opacity: 0;
}

.team:hover .team-social {
	opacity: 1;
}

.team .team-social a {
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 5px;
	padding: 11px 0 10px 0;
	font-size: 16px;
	font-weight: 300;
	line-height: 16px;
	text-align: center;
	color: #ffffff;
	transition: all .5s;
	margin-top: 100px;
}

.team .team-social a.social-tw {
	background: #00acee;
}

.team .team-social a.social-fb {
	background: #3b5998;
}

.team .team-social a.social-li {
	background: #0e76a8;
}

.team .team-social a.social-in {
	background: #3f729b;
}

.team .team-social a.social-yt {
	background: #c4302b;
}

.team .team-social a:last-child {
	margin-right: 0;
}

.team:hover .team-social a {
	margin-top: 0;
}

.team .team-social a:hover {
	color: #222222;
	background: #ffffff;
}

.team .team-content {
	padding: 20px;
}

.team .team-content h2 {
	margin: 0 0 5px 0;
	color: #353535;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 2px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.team .team-content h3 {
	margin: 0 0 15px 0;
	color: #353535;
	font-size: 14px;
	font-weight: 300;
}

.team .team-content p {
	margin: 0 0 15px 0;
	color: #353535;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.team .team-skill {
	width: 100%;
}

.team .skill-name {
	text-align: left;
}

.team .skill-name p {
	display: inline-block;
	color: #353535;
	font-size: 14px;
	font-weight: 600;
	margin: 0;
}

.team .skill-name p:last-child {
	float: right;
}

.team .progress {
	position: relative;
	width: 100%;
	height: 5px;
	margin-bottom: 10px;
	background: #dddddd;
}

.team .progress:last-child {
	margin: 0;
}

.team .progress-bar {
	position: absolute;
	width: 0%;
	height: 5px;
	top: 0;
	left: 0;
	background: #454545;
	transition: all .7s;
	z-index: 1;
}

.team:hover .progress-bar.w-70 {
	width: 70%;
}

.team:hover .progress-bar.w-80 {
	width: 80%;
}

.team:hover .progress-bar.w-90 {
	width: 90%;
}

.cmscontainer {
	text-align: left;
}

.cmscontainer-inner {
	text-align: left;
}

.cmscontainer-inner ol li,
.cmscontainer-inner ul li {
	text-align: left;
	margin: 0 0 15px 25px;
}

.cmscontainer-inner p {
	text-align: left;
	margin: 0 0 15px 0;
}

.cmscontainer-inner h4 {
	text-align: left;
	font-size: 18px;
	margin: 0 0 10px 0;
}

.cmscontainer-inner a {
	color: #e0374e;
	text-decoration: none;
}

.cmscontainer .section-header {
	text-align: left;
	max-width: 100%;
	margin: 0 auto 64px;
}


/**********************************/
/************ Registration css added ************/
/**********************************/

/* ========== HERO SECTION ========== */
#registration .hero {
	min-height: 20vh;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	position: relative;
	overflow: hidden;
	margin-top: 0px;
	padding: 210px 0 100px 0;
	flex-direction: row;
}


#registration .container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: row;
}

#registration .hero-bg {
	position: absolute;
	inset: 0;
	background: url('../images/hero-restaurant.jpg') center/cover;
	z-index: 0;
}

#registration .hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			rgba(17, 17, 17, 0.9),
			rgba(17, 17, 17, 0.7),
			rgba(17, 17, 17, 0.8));
	z-index: 1;
}

#registration .hero-content {
	position: relative;
	z-index: 2;
	max-width: auto;
	margin: 0;
	padding: 0 24px;
	text-align: left;
	width: 50%;
	float: left;
}

.reg-form-area {
	margin-top: 30px;
	padding: 30px;
	z-index: 2;
	max-width: 500px;
	/* background-color: rgba(0, 0, 0, 0.4); */
	border-radius: 15px;
	float: right;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.user_details {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.reg-form-area h3 {
	font-family: var(--font-serif);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.1;
	color: white;
	margin-bottom: 10px;
	animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reg-form-area .top {
	font-family: var(--font-serif);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.1;
	color: white;
	margin-bottom: 24px;
	animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reg-form-area .top a {
	transition: all .3s ease 0s;
	text-decoration: none;
	color: #fff;
}

.reg-form-area .top a:hover {
	transition: all .3s ease 0s;
	text-decoration: underline;
	color: #fff;
}

.reg-form-area .form-div {
	margin: 0 0 12px 0;
}


.reg-form-area input[type=text],
.reg-form-area input[type=email],
.reg-form-area input[type=number],
.reg-form-area select,
.reg-form-area textarea {
	width: 100%;
	padding: 12px;
	height: 40px;
	border: 1px solid #ccc;
	border-radius: 25px;
	box-sizing: border-box;
	resize: vertical;
	background-color: rgba(0, 0, 0, 0.2);
	color: #ffffff;
}


.reg-form-box input[type=submit] {
	background-color: #ea4d62;
	border: none;
	color: #fff;
	padding: 7px 30px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 23px;
	margin: 25px 0 0 0;
	cursor: pointer;
	border-radius: 25px;
	float: right;
	-webkit-box-shadow: 0px 0px 12px -3px rgb(0 0 0 / 22%);
	-moz-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, .22);
	box-shadow: 0 0 12px -3px #00000038;
	width: 100%;
}

.reg-form-box input[type=submit]:hover {
	background-color: #1c1a1b;
	color: #fff;
}

#registration .hero-content-cms {
	position: relative;
	z-index: 2;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	text-align: left;
	width: 100%;
}

#registration .hero-content-cms .hero-title {
	font-family: var(--font-serif);
	font-size: clamp(32px, 8vw, 42px);
	font-weight: 800;
	line-height: 1.1;
	color: white;
	margin-bottom: 24px;
	animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#registration .hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	margin-bottom: 32px;
	animation: fadeIn 0.8s ease-out both;
}

#registration .hero-badge::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-primary);
	animation: pulse 2s ease-in-out infinite;
}

#registration .hero-badge span {
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	font-weight: 500;
}

#registration .hero-title {
	font-family: var(--font-serif);
	font-size: clamp(32px, 8vw, 48px);
	font-weight: 800;
	line-height: 1.1;
	color: white;
	margin-bottom: 24px;
	animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#registration h2 {
	font-family: var(--font-serif);
	font-size: clamp(32px, 8vw, 24px);
	font-weight: 800;
	line-height: 1.1;
	color: white;
	margin-bottom: 24px;
	animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#registration .hero-title .highlight {
	display: block;
	color: var(--color-primary);
}

#registration .hero-subtitle {
	max-width: 560px;
	margin: 24px 0 40px;
	font-size: clamp(16px, 2vw, 20px);
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.3s;
}

#registration .hero-ctas {
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.5s;
	margin-bottom: 40px;
}



.storeicon {
        margin: 0 8px;
    }


/**********************************/
/************ Responsive css added ************/
/**********************************/
@media screen and (max-width: 767px) {

#cms3 .card {
    flex: 0 0 calc(100% - 20px);
}
#cms2 .card {
    flex: 0 0 calc(100% - 20px);
}

.loyalty-wrapper {
    display: block;
}

		        .footer-top {
    margin-top: 30px !important;
}

.faq{
    padding-bottom: 30px !important;
}

	.container {
    padding: 0 15px;
}

	.creative-fullpage--slider .swiper-container-h .swiper-button-next,
	.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
		bottom: 60%;
	}

	li.accordion span {
		font-size: 15px;
	}

	.faq-inner .accordion--container {
		width: 100%;
	}

	.faq-inner li.accordion span {
		padding: 10px 34px 10px 10px;
	}

	.contact-area {
		flex-direction: column;
	}

	.contact-info {
		width: 100%;
	}

	.contactform {
		width: 100%;
	}

	.blog-wrapper {
		flex-direction: column;
	}

	.blog-content {
		width: 100%;
		display: flex;
		flex-direction: column;
	}

	.blogbox {
		float: left;
		background: #fff;
		text-align: center;
		border-radius: 10px;
		width: 100%;
		border: 0px solid #fff;
		overflow: hidden;
		margin: 1% 1% 4% 1%;
	}

	.datearea {
		margin-left: 73%;
	}

	.blog-sidebar {
		width: 100%;
	}

	.blog-content-details {
		width: 100%;
	}

	.blog-content-details .datearea {
		margin-left: 71%;
	}

	.hero {
		padding: 115px 0 26px 0;
	}

	.cta-button {
		text-align: center;
	}

	/**********************************/

.tabs {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0px auto;
}

.accordion-thumb {
    margin: 0;
    padding: 0.8rem 0;
    display: block;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 25px 10px 0px !important;
    /* margin-top: 5px; */
    color: #ffffff;
    cursor: pointer;
    position: relative;
    text-align: left;
    line-height: 20px;
    vertical-align: top;
}
.accordion-thumb::after {
    content: "";
    display: inline-block;
    height: 7px;
    width: 7px;
    margin-right: -2rem;
    vertical-align: top;
    border-right: 1px solid;
    border-bottom: 1px solid;
    transform: rotate(-135deg);
    position: absolute;
            right: -4px;
    top: 13px;
	margin-top: 7px;
}

.accordion-item.is-active .accordion-thumb::after {
    transform: rotate(45deg);
    float: right;
    margin-top: 0;
}


}

.accordion {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
  border-top: 0px solid #e5e5e5;
}

.accordion-item {
  border-bottom: 1px solid #e5e5e5;
  	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

/* Thumb */
.accordion-thumb {
  margin: 0;
  padding: 0.8rem 0;
     display: block;
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
    margin-top: 5px;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    text-align: left;
}
.accordion-thumb::after {
  content: "";
  display: inline-block;
  height: 7px;
  width: 7px;
  margin-right: 1rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(-135deg);
  float: right;
}

/* Panel */
.accordion-panel {
  margin: 0;
  padding-bottom: 0.8rem !important;
  display: none;
  color: #ffffff;
    font-size: 14px;
	padding: 10px;
}
.accordion-panel {
  padding-bottom: 0.8rem !important;
      margin-bottom: 10px !important;
}

/* Active */
.accordion-item.is-active .accordion-thumb::after {
  transform: rotate(45deg);
   float: right;
}


@media (min-width: 900px) and (max-width: 1024px) {
.menu-items  {
    order: 2;
    display: flex;
    float: right;
    margin-top: 0px;
}
}


@media (min-width: 768px) and (max-width: 1024px) {

.navbar-container {
        display: flex !important;
        padding: 0px 20px !important;
}


	.footer-brand {
    max-width: 200px;
}

	    .logo {
        position: relative;
        top: 0px;
    }
	.navbar-container .hamburger-lines  {
        top: 19px;
    }

.creative-fullpage--slider .swiper-slide .slider-inner img1 {
    margin: 0 5px;
}	

.creative-fullpage--slider .swiper-slide .slider-inner img1 {
    object-fit: cover;
    width: 100%;
    height: 57vh;
}

.creative-fullpage--slider .slider-inner1 {
    background: #000;
    height: 59vh;
    position: relative;
}
.hero-overlay1 {
    max-height: 59vh;
}

header:not(.scrolled) {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 20px;
}
.navbar .menu-items1 {
        z-index: 99999 !important;
        order: 2;
        position: fixed;
        width: 100%;
    }


.faq-img:before {
    content: "";
    position: absolute;
        bottom: 56px;
    left: 19px;
    width: 351px;
    height: 402px;
    border-radius: 20px;
    background-color: #e0374e;
    animation: bounce-y 10s infinite linear;
    z-index: -1;
}

.faq-img img{
    max-width: 349px;
    width: 100%;
    border-radius: 20px;
    float: left;
}
.accordion-thumb::after {
    content: "";
    display: inline-block;
    height: 7px;
    width: 7px;
    margin-right: -2rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    border-right: 1px solid;
    border-bottom: 1px solid;
    transform: rotate(-135deg);
    float: right;
    margin-top: 3px;
}
.card {
    flex: 0 0 calc(50% - 20px) !important;
}

.creative-fullpage--slider1  {
    height: 59vh;
}

.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content1  {
   top: 33%;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-next1, 
.creative-fullpage--slider .swiper-container-h .swiper-button-prev1 {
   bottom: 36%;
}

.creative-fullpage--slider .slider-inner1  {
    background: #000;
    height:59vh !important;
    position: relative;
}

.cards-grid {
        flex-direction: row;
        gap: 24px;
    }
.card {
    flex: 0 0 calc(50% - 20px);
}

.container{
    max-width: 1280px;
    width: 100%;
            padding: 0 24px;
}
.carousel-control.right {
    right: -60px;
}
.carousel-control.left {
    left: -60px;
}

.product-row.reverse {
    flex-direction: row-reverse !important;
}
#path .card {
    flex: 0 0 calc(50% - 20px);
}
    #trust .cards-grid {
        flex-direction: row;
        gap: 24px;
    }
	#trust .card {
    flex: 0 0 calc(50% - 20px);
}
.loyalty-wrapper {
        flex-direction: row;
        gap: 32px;
    }
.footer-links {
        display: grid;
        grid-template-columns: repeat;
        gap: 9px;
        flex: 1;
    }
    .nav-cta{
        display: block !important;
        width: 173px;
        margin: 0px auto;
        text-align: center;    
    }
	.footer-top {
        flex-direction: row;
        gap: 32px;
    }
	.accordion-thumb {
    padding: 0.8rem 30px 0.8rem 0 !important;
}

}