
.container-faq {
	margin: 0 auto;
	padding: 20px;
	width: 100%;
}

.faq .faq-item {
	border-bottom: 1px solid #e5e5e5;
}

.faq .faq-item button[aria-expanded='true'] {
	border-bottom: 1px solid rgb(8, 112, 223);
}

.faq button {
	position: relative;
	display: block;
	text-align: left;
	width: 100%;
	padding: 1em 0;
	font-size: 1.15rem;
	font-weight: 400;
	border: none;
	background: none;
	outline: none;
}

.faq button:hover, .faq button:focus {
	cursor: pointer;
	color: rgb(8, 112, 223);
}

.faq button:hover::after, .faq button:focus::after {
	cursor: pointer;
	color: rgb(8, 112, 223);
	border: 1px solid rgb(8, 112, 223);
}

.faq button .faq-title {
	padding: 1em 1.5em 1em 0;
}

.faq button .icon {
	display: inline-block;
	position: absolute;
	top: 18px;
	right: 0;
	width: 15px;
	height: 20px;
	border: 2px solid;
	border-radius: 22px;
}

.faq button .icon::before {
	display: block;
	position: absolute;
	content: '';
	top: 9px;
	left: 5px;
	width: 10px;
	height: 2px;
	background: currentColor;
}

.faq button .icon::after {
	display: block;
	position: absolute;
	content: '';
	top: 5px;
	left: 9px;
	width: 2px;
	height: 10px;
	background: currentColor;
}

.faq button[aria-expanded='true'] {
	color: rgb(8, 112, 223);
}

.faq button[aria-expanded='true'] .icon::after {
	width: 0;
}

.faq button[aria-expanded='true'] + .faq-content {
	opacity: 1;
	max-height: inherit;
	transition: all 200ms linear;
	will-change: opacity, max-height;
}

.faq .faq-content {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	will-change: opacity, max-height;
}

.faq .faq-content p {
	font-size: 1rem;
	font-weight: 300;
	margin: 2em 0;
}

.faq-image {
	width: 200px;
	margin: 0 0 20px 40px;
}

.partner {
    background: rgba(0, 0, 0, 0.2);
	width: 100%;
	height: auto;
	float: left;
	margin: 0 0 30px 0;
	position: relative;
	box-sizing: border-box;
	padding: 15px 40px 30px 40px;
	border-radius: 25px;
}