.pg_footer {
	padding: 50px 0;
	background: #f2f1ef;
}

.pg_footer svg {
	transition: 0.3s;
}

.pg_footer_box {
	display: grid;
	grid-template-columns: 1fr;
}

.pg_footer_column {
	display: flex;
	flex-direction: column;
}

.pg_footer_column section {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-height: 0;
	overflow: hidden;
	height: 100%;
}

.pg_footer_activeSection {
	margin-bottom: 20px;
	max-height: 100%!important;
}

.pg_footer_column a {
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 10px;
}

.pg_footer_column a:hover {
	text-decoration: underline;
}

.pg_footer_boxTitle {
	cursor: pointer;
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 15px;
	font-family: Montserrat-SemiBold, sans-serif;
	padding-left: 30px;
	position: relative;
}

.pg_footer_lastColumn .pg_footer_boxTitle {
	padding-left: 0!important;
}

.pg_footer_iconLine {
	display: grid;
	grid-template-columns: 40px 1fr;
	align-items: center;
	margin-bottom: 10px;
}

.pg_footer_iconLine span {
	display: flex;
	align-items: center;
}

.pg_footer_lastColumn {
	align-items: flex-start;
}

.pg_footer_speedTest {
	margin: 30px 0!important;
	display: none;
}

.pg_footer_speedTest:hover svg path,
.pg_footer_iconLine:hover svg path,
.pg_footer_socialLinks a:hover svg path {
	fill: #c50178 !important;
}

.pg_footer_socialLinks {
	display: flex;
	margin: 20px 0;
	align-items: center;
}

.pg_footer_socialLinks a:not(:last-child) {
	margin-right: 20px;
	display: inline-block;
}

.pg_footer_arrow {
	display: block;
	position: absolute;
	left: 0;
}

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

@media (min-width: 998px) {
	.pg_footer_speedTest {
		margin: 30px 0;
		display: block;
	}
	.pg_footer_column a {
		margin-bottom: 0;
	}

	.pg_footer_arrow {
		display: none;
	}

	.pg_footer_boxTitle {
		cursor: default;
		padding-left: 0;
	}

	.pg_footer_box {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}

	.pg_footer_lastColumn {
		align-items: flex-end;
	}

	.pg_footer_column section {
		max-height: 100%;
	}

	.pg_footer_column section:not(:last-child) {
		margin-bottom: 30px;
	}

}