/* ZM Highlighted Items */
.zm-hii-wrap{
	width:100%;
}
.zm-hi-items{
	--zm-hi-grow:1.28;
	--zm-hi-inactive:0.92;
	--zm-hi-mobile-grow:1.45;
	--zm-hi-mobile-inactive-height:120px;
	--zm-hi-mobile-active-height:220px;
	--zm-hi-mobile-inactive-title-margin-top:0px;
	--zm-hi-mobile-active-title-margin-top:0px;
	--zm-hi-inner-border:#E4E4E7;
	display:flex;
	width:100%;
	height:460px;
	border:1px solid #E4E4E7;
	border-radius:18px;
	background:#fff;
	overflow:hidden;
}
.zm-hii-item{
	position:relative;
	flex:var(--zm-hi-inactive) 1 0%;
	min-width:0;
	padding:40px;
	border-left:1px solid var(--zm-hi-inner-border);
	display:flex;
	align-items:stretch;
	cursor:pointer;
	transition:flex .8s cubic-bezier(.22,.61,.36,1), background-color .55s ease;
}
.zm-hii-item:first-child{
	border-left:none;
}
.zm-hii-item.is-active{
	flex:var(--zm-hi-grow) 1 0%;
}
.zm-hii-item__inner{
	width:100%;
	max-width:72%;
	min-height:100%;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
}
.zm-hii-marker-wrap{
	display:flex;
	align-items:flex-start;
}
.zm-hii-marker{
	width:64px;
	height:64px;
	border:1px solid #E4E4E7;
	border-radius:50%;
	background:transparent;
	color:#25106B;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	font-size:18px;
	font-weight:700;
	line-height:1;
	flex:0 0 auto;
	transition:all .6s cubic-bezier(.22,.61,.36,1);
}
.zm-hii-marker i,
.zm-hii-marker svg{
	width:1em;
	height:1em;
}
.zm-hii-marker-img{
	width:1em;
	height:1em;
	object-fit:contain;
	display:block;
}
.zm-hii-content{
	margin-top:auto;
}
.zm-hii-title{
	margin:0;
	font-size:22px;
	line-height:1.2;
	font-weight:600;
	color:#16074C;
	letter-spacing:-.02em;
	transition:transform .45s cubic-bezier(.22,.61,.36,1);
}
.zm-hii-description{
	display:grid;
	grid-template-rows:0fr;
	margin-top:0;
	opacity:0;
	transform:translateY(6px);
	transition:grid-template-rows .7s cubic-bezier(.22,.61,.36,1), margin-top .45s ease, opacity .45s ease, transform .45s ease;
}
.zm-hii-description__inner{
	overflow:hidden;
	min-height:0;
}
.zm-hii-description p{
	margin:0;
	font-size:16px;
	line-height:1.65;
	color:#6B7280;
}
.zm-hii-item.is-active .zm-hii-description{
	grid-template-rows:1fr;
	margin-top:18px;
	opacity:1;
	transform:translateY(0);
}
.zm-hii-item.is-active .zm-hii-marker{
	background:#25106B;
	border-color:#25106B;
	color:#fff;
}
.zm-hii-item:hover .zm-hii-title{
	transform:translateX(2px);
}

@media (max-width:1024px){
	.zm-hi-items{
		height:420px;
	}
	.zm-hii-item{
		padding:28px;
	}
	.zm-hii-item__inner{
		max-width:78%;
	}
	.zm-hii-title{
		font-size:20px;
	}
}

@media (max-width:767px){
	.zm-hi-items{
		flex-direction:column;
		height:auto !important;
		min-height:0;
	}
	.zm-hii-item{
		flex:none;
		height:var(--zm-hi-mobile-inactive-height);
		min-height:0;
		border-left:none;
		border-top:1px solid var(--zm-hi-inner-border);
		padding:22px;
		overflow:hidden;
	}
	.zm-hii-item:first-child{
		border-top:none;
	}
	.zm-hii-item.is-active{
		flex:none;
		height:var(--zm-hi-mobile-active-height);
	}
	.zm-hii-item__inner{
		max-width:100%;
	}
	.zm-hii-marker{
		width:52px;
		height:52px;
		font-size:16px;
	}
	.zm-hii-title{
		font-size:18px;
		margin-top:var(--zm-hi-mobile-inactive-title-margin-top);
	}
	.zm-hii-item.is-active .zm-hii-title{
		margin-top:var(--zm-hi-mobile-active-title-margin-top);
	}
	.zm-hii-description{
		margin-top:0;
	}
	.zm-hii-item.is-active .zm-hii-description{
		margin-top:14px;
	}
	.zm-hii-description p{
		font-size:14px;
		line-height:1.55;
	}
}
