/* CSS Document */
.mj2-faqs-body .faqs-mj-title {
    padding-bottom: 16px;
}
.mj2-faqs-body .faqs-mj-title h2{
	font-size: 28px;
	color: #565454;
	line-height: 48px;
	font-weight: 700;
}
.mj2-faqs-body .faqs-mj-words {
	padding-bottom: 20px;
	border-bottom: 1px solid #00000012;
	margin-bottom: 32px;
}
.mj2-faqs-body .mj2-faqs-item {
	margin-bottom: 13px;
}
.mj2-faqs-body .item-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	color: #2B2D2C;
	padding: 20px 31px;
	background: #FEFFFE;
	border-radius: 2px;
	transition: all .5s;
	cursor: pointer;
}
.mj2-faqs-body .open .item-title {
	border-radius: 2px;
}
.mj2-faqs-body .item-title svg{transition:all 0.3s;flex-shrink: 0;}
.mj2-faqs-body .open .item-title svg {
	transform: rotate(180deg);
	transition: all 0.4s;
}
.mj2-faqs-body .open .item-title svg path{
	fill:#fff;
}
.mj2-faqs-body .item-des {
	background: #00000012;
	font-size: 16px;
	max-height: 0px;
	overflow: hidden;
	transition:all .4s;
}
.mj2-faqs-body .item-des p{
	padding: 25px 28px 43px 30px;
}
.mj2-faqs-body .open .item-des {
	max-height: 1000px;
	transition: all .6s;
	transition-delay: .1s;
}
@media (max-width: 767px){
.faq-mj2{width:95%;margin: 0 auto;}
}

.mj2-faqs-item h3{
	display: block;
	font-size: inherit;
	color: inherit;
	line-height: inherit;
	font-weight: inherit;
}