body {
	padding-bottom: 689px;
}

.text-group {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background-color: #fff;
	padding: 10px 20px 20px 20px;
}

.text-group-btn-paragraph {
	display: flex;
	text-align: left;
	background-color: #fff;
	padding-right: 1px;
	padding-bottom: 4px;
}

/* CV accordion */
.cv-toggle {
	display: inline;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	color: #000;
	font-size: 20px;
	font-family: 'Inter';
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0px;
	text-align: left;
	margin-top: 16px;
}

.cv-toggle:hover {
	filter: brightness(0.85);
}

.cv-content {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
	margin-top: 0;
}

.cv-content.open {
	max-height: 800px;
	opacity: 1;
	margin-top: 12px;
}

.cv-content p {
	color: #000;
	font-size: 14px;
	font-family: 'Inter';
	font-weight: 400;
	line-height: 1.6;
	padding-bottom: 6px;
}