.faq-howto-category{
	display: flex;
	flex-direction: column;
	justify-content: end;
	gap: 40px;
	position: relative;
	min-height: 256px;
	padding: 40px;
	border-radius: 24px;
	background-color: #090909;
	border: 1px solid #1F1F1F;
	overflow: hidden;
}
.faq-howto-category *{
	z-index: 1;
}
.faq-howto-category .faq-howto-category-image img{
	display: block;
	width: 100%;
	max-width: 72px;
	height: auto;
}
.faq-howto-category .faq-howto-category-content{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.faq-howto-category .faq-howto-category-content h4{
	color: var(--white-color);
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	margin: 0;
}
.faq-howto-category .faq-howto-category-content h5{
	color: var(--e-global-color-8258f1f);
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	margin: 0;
}
.faq-howto-category:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #131313 0%, rgba(19, 19, 19, 0) 100%);
	transform: translateY( -100% );
	transition: all .3s;
}
.faq-howto-category:hover:before{
	transform: translateY( 0 );
}
.faq-howto-category a{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all .3s;
	background-position: top 40px right 40px;
	background-repeat: no-repeat;
}
.faq-howto-category:hover a{
	opacity: 1;
}

@media only screen and (max-width: 1366px) {
	.faq-howto-category{
		min-height: auto;
		padding: 24px;
		border-radius: 16px;
	}
	.faq-howto-category .faq-howto-category-image img{
		max-width: 64px;
	}
	.faq-howto-category .faq-howto-category-content h4{
		font-size: 20px;
		line-height: 28px;
	}
	.faq-howto-category .faq-howto-category-content h5{
		font-size: 14px;
	}
}

@media only screen and (max-width: 480px) {
	.faq-howto-category{
		flex-direction: row;
		justify-content: left;
		gap: 24px;
		padding: 24px;
	}
	.faq-howto-category:before{
		display: none;
	}
	.faq-howto-category .faq-howto-category-image img{
		max-width: 48px;
	}
	.faq-howto-category .faq-howto-category-content{
		gap: 4px;
	}
	.faq-howto-category .faq-howto-category-content h4{
		font-size: 16px;
		line-height: 24px;
	}
	.faq-howto-category .faq-howto-category-content h5{
		font-size: 12px;
		line-height: 16px;
	}
}