.page-title-row, .section-title-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 40px 0 25px;
}
.page-title-row h1, .page-title-row h2, .section-title-row h1, .section-title-row h2 {
	margin: 0 40px 0 0;
}
.page-title-row h2, .section-title-row h2 {
	font-size: 46px;
	line-height: 1;
}

.section-title-row + hr {
	margin: 0 0 40px;
	width: 40px;
	border: 1px solid #333;
}

@media (max-width: 1023px) {
	.section-title-row h2 {
		font-size: 40px;
	}
}
@media (max-width: 767px) {
	.page-title-row, .section-title-row {
		display: block;
		margin: 40px 0 15px;
	}
	.page-title-row h1, .page-title-row h2, .section-title-row h1, .section-title-row h2 {
		margin: 0 0 10px;
	}
}
@media (max-width: 640px) {
	.section-title-row h2 {
		font-size: 34px;
	}
}
.social-share {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}
.social-share span {
	color: #a7a7aa;
}
.social-share a {
	margin-left: 10px;
	background-color: #a7a7aa;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.2s ease;
}
.social-share a:hover {
	opacity: 0.85;
	transform: scale(1.05);
}
.social-share a.linkedin {
	background-color: #1B86BC;
}
.social-share a.twitter {
	background-color: #00D3FF;
}
.social-share .svg-group svg {
	display: block;
	fill: #fff;
}