.pg_accordion_container {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-top: 50px;
}

.pg_accordion_title {
	color: #001D8C;
	font-size: 24px;
	font-family: Montserrat-SemiBold, sans-serif;
	margin-bottom: 30px;
	padding-left: 15px;
}

.pg_accordion_oneElement {
	display: flex;
	flex-direction: column;
	padding: 15px 25px;
	border-radius: 30px;
	overflow: hidden;
	background: #fff;
	margin-bottom: 15px;
}

.pg_accordion_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.pg_accordion_content {
	max-height: 0;
	overflow: hidden;
	transition: 0.3s;
	height: 100%;
}

.pg_accordion_contentActive {
	max-height: 250px;
	padding: 10px 0;
}

.pg_accordion_arrow {
	border-radius: 50%;
	background: #8080801c;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s;
}

.pg_accordion_arrowActive {
	transform: rotate(180deg);
}