body{
	overflow-x: hidden;
	padding-bottom: constant(safe-area-inset-bottom);
	padding-bottom: env(safe-area-inset-bottom);
}
header{
	position: fixed;
	width: 100%;
	top: 0px;
	z-index: 999999;
	background-color: white;
	min-width: 320px;
}
.mobile-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background-color: #ffffff;
	border-bottom: 1px solid #EEEEEE;
	border-top: 1px solid #EEEEEE;
	height: calc(100vh - 48px);
	overflow-y: auto;
}

.mobile-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.mobile-menu ul > li {
	padding: 14px 20px 14px 16px;
	border-bottom: 1px solid #EEEEEE;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
	color: #111111;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.mobile-menu .mobile-sub-menu {
	padding: 0;
	display: block;
	padding-left: 32px;
}
.mobile-menu .mobile-sub-menu ul li{
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	color: #3D3935;
}
.mobile-menu .mobile-sub-menu ul li:last-child {
	border-bottom: none;
}
.mobile-menu .mobile-menu-icon-box {
	display: flex;
	width: 100%;
	justify-content: flex-start;
	align-items: center;
}
.mobile-menu .nav-icon {
	background-size: cover;
	background-position: center;
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-right: 8px;
}
.swiper-container {
	width: 100%;
	position: relative;
}

.swiper-wrapper {
	width: 100%;
	height: auto !important;
}

.swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto !important; /* Ensure each slide adapts to the content height */
}

.swiper-slide img {
	width: 100%;
	height: auto; /* Ensure images fit the slide */
}

.swiper-pagination-switch {
	width: calc(100% - 60px);
	height: 2px;
	display: inline-block;
	margin: 0 5px;
	background: #ccc;
	border-radius: 2px;
}

.swiper-active-switch {
	background: linear-gradient(to right, white 50%, #ccc 50%); 
}

.swiper-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 10px!important;
	bottom: auto!important;
	width: 100%;
	z-index: 10;
}