.home-faq-wrapper {
	max-width: 1000px;
	margin: auto;
}

.home-faq-wrapper .title {
	font: normal normal 600 32px/39px Montserrat;
	letter-spacing: 0px;
	color: #272863;
	margin-bottom: 32px;
	text-align: center;
}

.home-faq-wrapper .faqs {
	display: grid;
	row-gap: 25px;
	margin-bottom: 20px;
}

.home-faq-wrapper .home-faq {
	margin: auto;
	padding: 16px 20px 15px 45px;
	border: 2px solid #522A73;
	overflow: hidden;
}	

.home-faq-wrapper .header {
	display: flex;
	justify-content: space-between;
	cursor: pointer;
}

.home-faq-wrapper .header .question {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	color: #292763;
	width: 90%;
}

.home-faq-wrapper .header .icon {
	position: relative;
	top: 2px;
}

.home-faq-wrapper .header .icon .up {
	display: none;
}

.home-faq-wrapper .home-faq.active .header .up {
	display: block;
}

.home-faq-wrapper .home-faq.active .header .down {
	display: none;
}

.home-faq-wrapper .content {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 25px;
	color: #0B0B0B;
	max-width: 80%;
	height: auto;
	max-height: 0;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.home-faq-wrapper .home-faq.active .content {
	max-height: 2000px;
	opacity: 1;
	margin-top: 32px;
	margin-bottom: 25px;
}

.home-faq-wrapper .content a {
	color: #0018ED;
	text-decoration: underline;
	word-break: break-word;
}

.home-faq-wrapper .more {
	font: normal normal 700 18px/24px Montserrat;
	letter-spacing: 0px;
	color: #522A73;
	text-decoration: underline;
}

@media only screen and (max-width: 767px) {
	.home-faq-wrapper {
		display: grid;
	}

	.home-faq-wrapper .title {
		font: normal normal 600 19px/23px Montserrat;
		margin-bottom: 25px;
	}

	.home-faq-wrapper .faqs {
		row-gap: 10px;
		margin-bottom: 16px;
	}

	.home-faq-wrapper .home-faq {
		padding: 20px 30px 20px 35px;
		width: 100%;
	}	

	.home-faq-wrapper .header .question {
		font-size: 16px;
	}

	.home-faq-wrapper .content {
		font-size: 16px!important;
		line-height: 20px;
		letter-spacing: -0.3px;
		max-width: 90%;
	}

	.home-faq-wrapper .home-faq.active .content {
		margin-top: 20px;
		margin-bottom: 0;
	}

	.home-faq-wrapper .more {
		font: normal normal 700 16px/24px Montserrat;
		text-align: center;
	}
}