/* Subpage styling goes here. Excluded on homepage */

/*
SUBPAGE STRUCTURE
BLOG
TEMPLATES
*/

/*******************************************************************************************
SUBPAGE STRUCTURE - Non-critical page features
*******************************************************************************************/
.search-form {
	position: relative;
	display: flex;
}

.search-form input {
	height: 45px;
	padding: 20px;
	color: var(--color-body-text);
	border: 1px solid var(--color-primary);
}

.search-form input::placeholder {
	color: var(--color-body-text);
}

.search-form button {
	padding: 0 12px;
	width: 45px;
	height: 45px;
	font-size: 1.1rem;
	border-radius: 0;
}


/*******************************************************************************************
BLOG - Posts, search results, and pagination
*******************************************************************************************/
.post {
	margin-bottom: 24px;
	padding-bottom: 29px;
	border-bottom: 1px solid var(--color-gray);
}

.post:last-child {
	padding-bottom: 0;
	border: none;
}

.post-head h1,
.post-head h2 {
	margin-bottom: 15px;
	padding: 0;
	font-size: var(--font-size-h1);
	border: 0;
}

.post-head h1 a,
.post-head h2 a {
	color: inherit;
	text-decoration: none;
}

.post-head {
	margin-bottom: 26px;
}

.post-body {
	display: block;
}

.post-head-info {
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.6;
}

.post-head-info a {
	text-decoration: none;
}

.post-head-info a:hover,
.post-head-info a:focus {
	color: var(--color-near-black);
}

.post-head-info div span:not(:last-of-type):after {
	content: ',\00a0';
}

.post-head-info>div:not(:last-of-type):after {
	margin: -2px 6px 0;
	width: 5px;
	height: 5px;
	position: relative;
	display: inline-block;
	border-radius: 5px;
	background-color: var(--color-gray);
	vertical-align: middle;
	content: '';
}

.post-body-image img {
	width: 100%;
	display: block;
}

.post-body-image {
	margin-bottom: 15px;
}

.post-body-excerpt p:last-of-type {
	margin-bottom: 0;
}

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

@media screen and (min-width: 1025px) {
	.post-body {
		display: flex;
		flex-direction: row-reverse;
	}

	.post-body-image {
		margin: 0 0 0 30px;
		flex-basis: 30%;
		width: 30%;
	}

	.post-body-image img {
		width: auto;
	}

	.post-bottom {
		margin-top: 18px;
	}

	.post-body-content {
		flex: 1;
	}

	.post-body-image:only-child {
		margin: 0;
		flex-basis: 100%;
		width: 100%;
	}

	.single .post-body {
		display: block;
	}

	.single .post-body-image {
		margin: 0 0 30px;
		width: 100%;
	}

	.single .post-body-image img {
		width: auto;
	}

	.post-body-image~.post-body-excerpt {
		margin-left: 40px;
		width: 75%;
	}
}

/* BLOG > Blog Grid Style */
.blog-grid .post {
	padding-bottom: 0;
	border: 1px solid var(--color-primary);
}

.blog-grid .post-inner {
	padding: 30px;
}

.post-thumbnail-link {
	transition: opacity 200ms ease-out;
}

.post-thumbnail-link:focus,
.post-thumbnail-link:hover {
	opacity: 0.9;
}

.post-thumbnail-image {
	height: 175px;
	background-repeat: no-repeat;
	background-position-x: 50%;
	background-position-y: 100%;
	background-size: cover;
}

.blog-filters {
	margin-bottom: 40px;
}

.blog-filters-block:not(:last-of-type) {
	margin-bottom: 20px;
}

#blog-grid-pagination {
	margin-top: 50px;
}

.blog-grid .post,
.blog-filters-block {
	max-width: 380px;
}

@media screen and (min-width: 760px) {
	.blog-filters {
		margin-bottom: 60px;
		display: flex;
		justify-content: space-between;
	}

	.blog-filters-block {
		margin-bottom: 0 !important;
		width: 48%;
	}

	.blog-grid .post-inner {
		padding: 40px;
	}

	.blog-grid .post-head-info-authors {
		display: none;
	}

	.blog-grid .post {
		margin-bottom: 30px;
	}
}

@media screen and (min-width: 1025px) {
	.post-thumbnail-image {
		height: 250px;
	}

	.blog-filters {
		justify-content: flex-start;
	}

	.blog-filters-block:not(:last-of-type) {
		margin-right: 30px;
	}
}

/* BLOG > Page Navigation */
.wp-pagenavi {
	display: flex;
}

.wp-pagenavi a,
.wp-pagenavi span {
	margin: 0;
	margin-right: 15px;
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	color: var(--color-body-text);
}

.wp-pagenavi span.current {
	text-decoration: underline;
	color: var(--color-secondary);
}

.wp-pagenavi a:hover,
.wp-pagenavi a:focus {
	color: var(--color-secondary);
}

.wp-pagenavi span.pages,
.wp-pagenavi span.extend {
	display: none;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .first,
.wp-pagenavi .last {
	display: inline-flex;
	align-items: center;
	width: auto;
	font-size: 1rem;
	font-weight: bold;
	color: var(--color-secondary);
	border-radius: 0;
	background: none;
}

.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .nextpostslink:focus,
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .previouspostslink:focus,
.wp-pagenavi .first:hover,
.wp-pagenavi .first:focus,
.wp-pagenavi .last:hover,
.wp-pagenavi .last:focus {
	color: var(--color-secondary);
	background: none;
}

/*******************************************************************************************
TEMPLATES - Pre-built subpages
*******************************************************************************************/

/* TEMPLATES > Attorney Bios */
.content-tabs-anchor-links .content-tabs-row {
	margin: 0;
	position: absolute;
	right: 0;
	bottom: 100%;
	left: 0;
	z-index: 1;
	background: rgba(15, 133, 119, 0.8);
}

.content-tabs-anchor-links .content-tabs-row button {
	margin: 0;
	position: relative;
	flex: 1;
	min-height: 60px;
	color: var(--color-white);
	background: none;
}

.content-tabs-anchor-links .content-tabs-row button:hover,
.content-tabs-anchor-links .content-tabs-row button:focus {
	background: var(--color-primary);
}

.content-tabs-anchor-links .content-tabs-row button:after {
	position: absolute;
	top: calc(50% - 7px);
	right: 0;
	width: 1px;
	height: 14px;
	background: var(--color-near-white);
	content: '';
}

.content-tabs-anchor-links .content-tabs-row button i {
	display: none;
}

.content-tabs-anchor-links .content-tabs-row button.active {
	color: var(--color-secondary);
	background: var(--color-near-white);
}

.content-tabs-anchor-links .content-tabs-row button:hover:after,
.content-tabs-anchor-links .content-tabs-row button:focus:after,
.content-tabs-anchor-links .content-tabs-row button.active:after {
	display: none;
}

/* TEMPLATES > Attorneys Landing */

/* Attorney Boxes */
.attorney-search-inner {
	display: block;
	outline: none;
	transition: filter 300ms ease-out, opacity 100ms ease-out;
}

.attorney-search-inner.search-running {
	filter: blur(12px);
	opacity: 0;
}

.attorney-search-inner+.attorney-search-inner {
	margin-top: 40px;
}

.attorney-search-title {
	margin-bottom: 30px;
}

.attorney-single-box {
	margin-bottom: 30px;
	padding: 0;
	position: relative;
	text-decoration: none;
}

.attorney-results .attorney-single-box {
	width: 100%;
}

.attorney-result-image-container {
	margin-bottom: 10px;
	position: relative;
	transition: all 200ms ease-out;
}

.attorney-result-image-container img {
	display: block;
}

.attorney-result-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	width: 100%;
	height: 100%;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	color: var(--color-white);
	background: rgba(158, 23, 30, 0.7);
	transition: all 200ms ease-out;
}

.attorney-single-box:hover .attorney-result-image-container,
.attorney-single-box:focus .attorney-result-image-container {
	transform: scale(1.02);
}

.attorney-single-box:hover .attorney-result-overlay,
.attorney-single-box:focus .attorney-result-overlay {
	opacity: 1;
}

.attorney-single-box .attorney-single-box-info {
	padding: 12px 0;
	text-align: center;
}

.attorney-single-box-info h2,
.attorney-single-box-info p {
	margin: 0;
}

.attorney-single-box h2 {
	font-size: 1.3rem;
}

.attorney-single-box-info p {
	font-size: 0.9rem;
}

@media screen and (min-width: 650px) {
	.attorney-results {
		display: grid;
		grid-row-gap: 20px;
		grid-column-gap: 20px;
		grid-template-columns: repeat(2, 1fr);
	}

	.attorney-single-box {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 900px) {
	.attorney-results {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Attorney Rows */
.attorney-single-row {
	margin-bottom: 40px;
	display: flex;
	flex-direction: column;
	text-align: center;
	transition: all 0.25s;
	position: relative;
}

.attorney-row-link {
	margin: 0 auto;
	justify-content: center;
	max-width: 200px;
	transition: opacity 200ms ease-out;
	background-color: var(--color-gray);
}

.attorney-row-link>img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.attorney-row-link:focus,
.attorney-row-link:hover {
	opacity: 0.9;
}

.attorney-row-link.flex-container {
	align-items: flex-end;
	max-height: 200px;
}

.attorney-row-info-main {
	padding-top: 20px;
	border-top: 2px solid var(--color-gray);
}

.attorney-row-info-main h2 {
	font-size: 1.563rem;
	font-weight: 600;
	transition: color 200ms ease-out;
}

.attorney-row-additional span,
.attorney-row-info-main-contact span {
	display: block;
}

.attorney-single-row i {
	color: var(--color-primary);
}

.attorney-row-info-main-contact {
	font-size: 0.875rem;
	margin-top: 15px;
}

.attorney-row-additional {
	margin-top: 10px;
	font-size: 0.875rem;
}

.attorney-row-info-main-position {
	margin-bottom: 20px;
	font-size: 1rem;
	font-weight: bold;
	color: var(--color-gray-200);
	line-height: 1.2;
	text-transform: uppercase;
}


@media screen and (min-width: 768px) {
	.attorney-results-type-row {
		display: grid;
		grid-row-gap: 20px;
		grid-column-gap: 20px;
		grid-template-columns: repeat(2, 1fr);
	}

	.attorney-single-row {
		margin-bottom: 0;
	}

}

@media screen and (min-width: 1025px) {
	.attorney-single-row {
		margin-bottom: 30px;
		flex-direction: row;
		text-align: left;
		border-bottom: 2px solid var(--color-gray);
	}

	.attorney-row-info-main-position,
	.attorney-row-link {
		margin: 0;
	}

	.attorney-row-info {
		padding: 0 25px 20px 25px;
		flex: 1;
	}

	.attorney-row-info-inner {
		transition: transform 200ms ease-out;
	}

	.attorney-row-info-main {
		padding: 0;
		display: flex;
		flex: 1;
		flex-direction: column;
		justify-content: flex-end;
		border: none;
	}

	.attorney-row-additional {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}

	.attorney-single-row:hover i,
	.attorney-single-row:hover .attorney-row-additional,
	.attorney-single-row:hover .attorney-row-additional a,
	.attorney-single-row:hover .attorney-row-info-main-contact a,
	.attorney-single-row:hover .attorney-row-info-main h2 a,
	.attorney-single-row:hover .attorney-row-info-main-position {
		color: var(--color-white);
	}

	.attorney-single-row:hover {
		background-color: var(--color-primary);
	}

	.attorney-single-row:hover .attorney-row-info-inner,
	.attorney-single-row:focus-within .attorney-row-info-inner {
		transform: translateY(12px);
	}

	.attorney-row-arrow {
		position: absolute;
		bottom: 6px;
		right: 18px;
		font-size: 1.1rem;
		color: var(--color-primary);
		transition: color 200ms ease-out, transform 200ms ease-out;
	}

	.attorney-single-row:hover .attorney-row-arrow {
		color: var(--color-white);
		transform: translateX(3px);
	}

}

/* Attorney Pops */
.attorney-results.attorney-results-type-pop {
	display: block;
}

.attorney-result-pop {
	padding: 30px;
	position: absolute;
	top: calc(100% - 115px);
	right: 0;
	z-index: 1;
	display: none;
	height: 200px;
	background: var(--color-primary);
}

.attorney-result-pop-row {
	padding: 20px 0;
	font-size: 1.1rem;
	border-bottom: 1px solid var(--color-gray);
}

.attorney-result-pop-cell {
	margin-bottom: 5px;
	flex: 1;
}

.attorney-result-pop-name {
	position: relative;
	flex-basis: 30%;
	width: 30%;
}

.attorney-result-pop-info {
	margin-left: 40px;
}

.attorney-result-pop-info p {
	margin-bottom: 0;
}

.attorney-result-pop-row i {
	color: var(--color-secondary);
	-webkit-transition: color 200ms ease-out;
	-moz-transition: color 200ms ease-out;
	-ms-transition: color 200ms ease-out;
	-o-transition: color 200ms ease-out;
	transition: color 200ms ease-out;
}

.attorney-result-pop-cell a {
	text-decoration: none;
}

.attorney-result-pop-cell>a {
	color: var(--color-primary);
}

.attorney-result-pop-name:hover>a,
.attorney-result-pop-cell a:hover,
.attorney-result-pop-cell a:focus {
	text-decoration: underline;
	color: var(--color-alternate);
}

.attorney-result-pop-info>a {
	margin-bottom: 5px;
	font-size: 1.2rem;
}

.attorney-result-pop-info a {
	color: var(--color-white);
}

.attorney-result-pop-inner {
	display: flex;
	align-items: center;
}

.attorney-result-pop .attorney-result-pop-image img {
	max-width: 130px;
}

.attorney-result-pop-image {
	display: flex;
	flex-direction: column;
	background: var(--color-gray);
}

.attorney-result-pop:before {
	position: absolute;
	top: calc(50% - 15px);
	right: calc(100% - 1px);
	width: 0;
	height: 0;
	border-color: transparent var(--color-primary) transparent transparent;
	border-style: solid;
	border-width: 15px 14px 15px 0;
	content: '';
}

.attorney-result-pop-vcard {
	margin-left: auto;
	flex-grow: 0;
}

.attorney-result-pop-vcard a:hover i,
.attorney-result-pop-vcard a:focus i {
	color: var(--color-alternate);
}

.attorney-result-pop-name-link {
	margin-bottom: 8px;
	display: block;
	font-size: 1.3rem;
}

@media screen and (min-width: 900px) {
	.attorney-result-pop-cell {
		margin-bottom: 0;
	}

	.attorney-result-pop-name-link {
		margin-bottom: 0;
		font-size: inherit;
	}

	.attorney-result-pop-row {
		display: flex;
		width: 100%;
	}

	.attorney-result-pop-name:focus-within .attorney-result-pop,
	.attorney-result-pop-name:hover .attorney-result-pop {
		display: block;
		-webkit-animation: fadeinleftslight 200ms ease-out;
		animation: fadeInLeftSlight 200ms ease-out;
	}
}

/* TEMPLATES > Attorney Search */
.attorney-search-bar {
	margin-bottom: 40px;
	text-align: center;
	border-top: 1px solid var(--color-light-gray);
	border-bottom: 1px solid var(--color-light-gray);
}

.attorney-search-container-inner {
	padding-top: 40px;
	padding-bottom: 40px;
}

.attorney-search-bar-string span {
	font-weight: 600;
}

.attorney-search-bar-string span:not(:last-of-type):after {
	margin-right: 5px;
	content: ',';
}

.attorney-search-letters {
	margin-bottom: 40px;
}

.attorney-search-letters-single {
	padding: 0;
	display: inline-block;
	width: 30px;
	height: 30px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	color: var(--color-secondary);
	background: none;
}

#attorney-search-clear {
	display: none;
}

.search-results-displayed #attorney-search-clear {
	display: inline-block;
}

span.attorney-search-letters-single {
	color: var(--color-gray);
}

@media screen and (min-width: 700px) {
	.attorney-search-form .form-input-row {
		display: flex;
	}

	.form-input-group:first-of-type {
		margin-right: 15px;
	}
}

@media screen and (min-width: 1025px) {
	.attorney-search-letters {
		display: flex;
		justify-content: space-between;
	}
}

/* TEMPLATES > Practices Landing */
.practice-box {
	margin-bottom: 20px;
	padding: 25px;
	display: block;
	text-align: left;
	line-height: 1.4;
	position: relative;
	text-decoration: none;
	color: var(--color-white);
	background: var(--color-primary);
	transition: background 200ms ease-out;
}

.practice-box:last-of-type {
	margin-bottom: 0;
}

.practice-box:before {
	top: 0;
	left: 0;
	width: 0;
	content: '';
	height: 100%;
	display: block;
	position: absolute;
	transition: width 500ms ease-out;
	background-color: var(--color-secondary);
}

.practice-box:hover:before,
.practice-box:focus:before {
	width: 100%;
}

.practice-box span {
	margin: 0;
	align-self: center;
	width: 100%;
	display: flex;
	font-weight: 600;
	font-size: 1.5rem;
	align-items: center;
	position: relative;
	font-family: var(--font-family-heading), sans-serif;
	justify-content: space-between;
	text-transform: uppercase;
}

.practice-box:focus span,
.practice-box:hover span {
	color: var(--color-white);
}

@media screen and (min-width: 768px) {
	.practice-box-list {
		display: grid;
		grid-row-gap: 20px;
		grid-column-gap: 20px;
		grid-template-columns: repeat(2, 1fr);
	}

	.practice-box {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 1025px) {
	.practice-box {
		/* text-align: center; */
	}
}

/* TEMPLATES > Video Gallery */
.videos-filter {
	margin-bottom: 50px;
}

@media screen and (min-width: 1025px) {
	.videos-filter {
		max-width: 450px;
	}
}

/* TEMPLATES > Contact */
.office-block {
	margin-bottom: 30px;
}

.office-block-image {
	width: 100%;
	height: 300px;
	background-repeat: no-repeat;
	background-position-x: 50%;
	background-size: cover;
}

.office-block-info {
	padding: 30px;
	position: relative;
	background: var(--color-light-gray);
}

.office-block-info p {
	margin: 0;
}

.office-contact {
	margin-top: 30px;
}

.office-contact p {
	font-weight: 700;
}

.office-block-info-inner {
	width: 100%;
}

.office-contact-map {
	position: absolute;
	right: 0;
	bottom: 0;
}

@media screen and (min-width: 1025px) {
	.office-block {
		display: flex;
	}

	.office-block-image {
		display: flex;
		flex-basis: 250px;
		width: 250px;
		height: 250px;
	}

	.office-block-info {
		display: flex;
		flex: 1;
		flex-wrap: wrap;
		align-items: center;
	}
}

/* TEMPLATES > Contact Full */
.page-template-template-contact-full main {
	padding: 100px 0 40px;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
}

.contact-full-container {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.contact-full-inner {
	width: 100%;
	background: var(--color-primary);
}

.contact-full-content {
	margin-bottom: 0;
	color: var(--color-white);
	padding: var(--gutter-size);
}

.contact-full-content h1,
.contact-full-content h2 {
	color: var(--color-alternate);
}

.contact-full-content a {
	color: inherit;
}

.contact-full-sidebar {
	padding: 0;
}

.contact-full-sidebar object {
	display: flex;
}

.contact-full-sidebar iframe {
	width: 100%;
}

.contact-full-sidebar .form-container {
	padding: 0;
}

.contact-full-content-phones p {
	margin-bottom: 5px;
}

.contact-full-content-phones p:last-of-type {
	margin-bottom: 0;
}

.contact-full-content-phones {
	margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
	.contact-full-inner {
		display: flex;
	}

	.contact-full-content.content {
		width: 61%;
	}

	.contact-full-content.content address p:last-of-type {
		margin-bottom: 0;
	}

	.contact-full-sidebar.sidebar {
		width: 50%;
		padding-left: 0;
	}
}

@media screen and (min-width: 1025px) {
	.page-template-template-contact-full main {
		padding: 0;
		height: 100vh;
	}

	.contact-full-inner {
		padding: 20px;
	}

	.contact-full-container {
		padding-top: 100px;
		align-items: center;
		height: calc(100vh - 80px);
		max-width: 900px;
		margin: 0 auto;
	}

	.page-template-template-contact.no-banner main {
		padding: 0;
		background-size: cover;
		background-repeat: no-repeat;
	}
}

@media screen and (max-height: 750px) and (min-width: 1025px) {

	.page-template-template-contact-full main,
	.contact-full-container {
		height: 100%;
	}

	.contact-full-container {
		/* padding: 0; */
	}

	.page-template-template-contact-full main {
		padding: 120px 0 80px;
	}
}

/* TEMPLATES > Attorney Bios */
.content-tabs-row {
	margin-bottom: 30px;
	display: none;
	flex-wrap: wrap;
}

.content-tabs-row-inner {
	display: flex;
}

.content-tabs-row .content-tab-activate {
	margin-right: 10px;
}

.content-tab-activate {
	flex: 1;
	border-radius: 0;
}

.content-tab-activate.active {
	background: var(--color-primary);
	pointer-events: none;
}

.content-tab {
	margin-bottom: 50px;
	display: none;
}

.content-tab p strong {
	color: var(--color-primary);
}

.content-tab p:first-of-type {
	margin-bottom: 0;
}

.content .content-tab ul {
	padding-left: 10px;
	border-left: 0;
}

.content-tab.active {
	-webkit-animation: fadein 200ms ease-out;
	animation: fadeIn 200ms ease-out;
}

.content-tab.active,
.content-tabs-anchor-links .content-tab {
	display: block;
}

.content-tabs-anchor-links .mobile-tab {
	display: none;
}

.content-tabs-select {
	margin: 0 auto 30px;
	display: none;
}

.content-tabs-anchor-links .content-tabs-select {
	display: block;
}

.mobile-tab {
	margin-bottom: 20px;
	padding: 20px 30px;
	position: relative;
	width: 100%;
	text-align: left;
}

.mobile-tab:after {
	position: absolute;
	right: 15px;
	font-family: var(--font-family-icon);
	content: '\f0d7';
}

@media screen and (min-width: 1025px) {
	.content-tabs {
		display: flex;
		flex-wrap: wrap;
	}

	.content-tabs-row {
		display: block;
	}

	.mobile-tab,
	.content-tabs-anchor-links .content-tabs-select {
		display: none;
	}
}

/* TEMPLATES > Long-Form */
.banner-xl {
	padding: 50px 0;
	background-color: rgb(20, 23, 47);
	background-image: linear-gradient(180deg, rgba(20, 23, 47, 1) 46%, rgba(36, 42, 88, 1) 100%);
}

.banner-xl-content p:last-child {
	margin: 0;
}

.banner-xl-image {
	text-align: center;
}

.banner-xl-title {
	font-size: 3.5rem;
	line-height: 1.4;
}

.banner-xl-image img {
	margin: 0 auto;
	max-width: 70%;
}

@media screen and (min-width: 1100px) {
	.banner-xl-inner {
		display: flex;
		align-items: center;
	}

	.banner-xl-image img {
		max-width: 100%;
	}

	.banner-xl-content {
		padding-left: 60px;
		flex: 1;
	}
}

.top-table-contents {
	padding: 50px 0;
	background: #e5e8f6;
}

.top-table-contents-button {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.2rem;
	text-align: center;
	text-decoration: none !important;
}

.top-table-contents-icon-container {
	margin-bottom: 15px;
}

.top-table-contents-inner {
	display: grid;
	grid-row-gap: 20px;
	grid-column-gap: 20px;
	grid-template-columns: repeat(2, 1fr);
}

.top-table-contents-button-icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: var(--color-secondary);
	transition: all 200ms ease-out;
}

.top-table-contents-button i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: var(--color-white);
}

.top-table-contents-button-icon:hover,
.top-table-contents-button-icon:focus {
	background: var(--color-alternate);
	transform: scale(1.03);
}

.is-sticky .top-table-contents {
	padding: 20px 0;
}

.is-sticky .top-table-contents-button-icon {
	width: 30px;
	height: 30px;
}

.is-sticky .top-table-contents-button i {
	font-size: 1rem;
}

.is-sticky .top-table-contents-icon-container {
	margin: 0 12px 0 0;
}

.is-sticky .top-table-contents-title {
	display: none;
}

.is-sticky .top-table-contents-button {
	margin: 0 auto 0 0;
	flex-direction: row;
}

.single-chapter-banner-title h2 {
	margin: 0;
	font-size: 2.4rem;
}

.single-chapter-banner-image {
	margin-bottom: 20px;
}

.single-chapter:nth-child(2n) {
	background: var(--color-light-gray);
}

.single-chapter-banner {
	background: var(--color-primary);
}

.single-chapter-content,
.single-chapter-banner {
	padding: 30px 0;
}

@media screen and (min-width: 900px) {
	.single-chapter-banner-inner {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		justify-content: center;
	}

	.single-chapter-banner-image {
		margin-bottom: 0;
		padding-left: 5vw;
	}

	.single-chapter-banner-title h2 {
		margin: 0;
		font-size: 3.2rem;
	}
}

@media screen and (min-width: 1025px) {
	.top-table-contents-inner {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* TEMPLATES > Confirmation */
.confirm-contact {
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
}

.confirm-contact a:not(:last-child) {
	margin-right: 20px;
}

.confirm-social {
	margin-bottom: 60px;
}

/* TEMPLATES > Reviews */
.review-social {
	margin: 40px 0;
}

.review-social .social-links {
	justify-content: flex-start;
	max-width: none;
}

.review-social .social-links a {
	margin: 0 15px 0 0;
	width: 50px;
	height: 50px;
	font-size: 1.7rem;
	border: 1px solid var(--color-primary);
	background: var(--color-near-white);
	transition: all 200ms ease-out;
}

.review-social .social-links a:focus,
.review-social .social-links a:hover {
	opacity: 0.85;
	background: var(--color-light-gray);
}

.review-stars i {
	font-size: 2rem;
	color: var(--color-secondary);
}

/* TEMPLATES > Testimonials */
.content-testimonial-single:not(:last-child) {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--color-gray);
}

.content-testimonial-stars {
	font-size: 1.5rem;
}

.content-testimonial-source {
	display: block;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.content-testimonial-source:before {
	margin-right: 6px;
	display: inline-block;
	content: '-';
}


/* TEMPLATES > Action */
.action {
	margin-top: -56px;
	position: relative;
}

.action-holder {
	padding: 28px 20px 35px;
	font-weight: 600;
	color: var(--color-white);
	background-color: var(--color-primary);
	text-align: center;
	line-height: 1.81;
	letter-spacing: 0.019rem;
}

.action-holder p:last-of-type {
	margin-bottom: 0;
}

@media screen and (min-width: 768px) {
	.action-holder {
		padding: 56px 61px 54px;
	}
}

@media screen and (min-width: 1025px) {
	.action {
		margin-top: -76px;
	}
}

/* TEMPLATES > Intro */
.intro {
	margin-bottom: 33px;
	padding-top: 43px;
}

.intro-holder {
	position: relative;
}

.intro-left h2 {
	margin-bottom: 16px;
	padding-right: 75px;
	max-width: 335px;
	line-height: 1.1;
}

.intro-text p:last-child {
	margin-bottom: 0;
}

.intro-right {
	position: absolute;
	top: 9px;
	right: 0;
	width: 67px;
}

.intro-right img {
	width: 100%;
}

@media screen and (min-width: 520px) {
	.intro-left h2 {
		max-width: 440px;
	}
}

@media screen and (min-width: 650px) {

	.intro-left h2 {
		max-width: 650px;
		padding-right: 90px;
	}
}

@media screen and (min-width: 768px) {
	.intro {
		margin-bottom: 88px;
		padding-top: 79px;
	}

	.intro-holder {
		display: flex;
	}

	.intro-left {
		padding-right: 30px;
	}

	.intro-left h2 {
		margin-bottom: 19px;
		padding-right: 0;
		font-size: var(--font-size-h1);
		max-width: 100%;
	}

	.intro-right {
		position: inherit;
		top: auto;
		right: auto;
		width: 286px;
		flex: 0 0 auto;
	}
}

@media screen and (min-width: 1025px) {
	.intro-left {
		padding-right: 55px;
	}
}

/* TEMPLATES > Image-text */
.image-text {
	margin-bottom: 34px;
}

.image-text-left {
	margin-bottom: 19px;
}

.image-text-left img {
	display: block;
	width: 100%;
}

.image-text-right h2 {
	margin-bottom: 15px;
	line-height: 1.1;
}

.image-text-right p strong {
	font-weight: 600;
}


.image-text-right p:last-child,
.image-text-right ul:last-child {
	margin-bottom: 0;
}

@media screen and (min-width: 768px) {
	.image-text {
		margin-bottom: 70px;
	}

	.image-text-holder {
		display: flex;
	}

	.image-text-left {
		margin-top: 7px;
		margin-bottom: 0;
		width: 326px;
		flex: 0 0 auto;
	}

	.image-text-right {
		padding-left: 30px;
	}

	.image-text-right h2 {
		margin-bottom: 17px;
		font-size: var(--font-size-h1);

	}
}

@media screen and (min-width: 1025px) {
	.image-text-right {
		padding-left: 61px;
	}

	.image-text-right {
		padding-left: 61px;
	}

	.image-text-right:only-child {
		padding-left: 0;
	}
}

/* TEMPLATES > Formation */
.formation {
	padding-top: 43px;
	padding-bottom: 40px;
	position: relative;
	color: var(--color-white);
	background-image: url('../images/g&l.svg');
	background-repeat: no-repeat;
	background-position: top 10px center;
	background-size: 334px 176px;
	background-color: var(--color-primary);
	text-align: center;
	overflow: hidden;
}

.formation .column {
	position: relative;
	z-index: 1;
}

.formation h2 {
	margin-bottom: 9px;
	color: inherit;
	text-transform: uppercase;
}

.formation p:last-child {
	margin-bottom: 0;
}

.formation-logo {
	position: absolute;
	top: 24px;
	left: 50%;
	width: 337px;
	transform: translateX(-50%);
	opacity: 0.08;
	pointer-events: none;
}

.formation-logo img {
	width: 100%;
	display: block;
}

@media screen and (min-width: 768px) {
	.formation {
		padding-top: 90px;
		padding-bottom: 104px;
		background-position: top center;
		background-size: 100% 100%;
	}

	.formation h2 {
		margin: 0 auto 20px;
		max-width: 780px;
		font-size: var(--font-size-h1);
	}

	.formation-logo {
		top: 0;
		width: 1093px;
	}
}

/* TEMPLATES > Contract */
.contract {
	margin-bottom: 0;
	padding: 65px 0;
}

.contract-text {
	margin-bottom: 48px;
}

.contract-text h2 {
	margin-bottom: 15px;
}

.contract-text p:last-child {
	margin-bottom: 0;
}

.contract-left {
	margin-bottom: 20px;
}

.contract-left img {
	display: block;
	width: 100%;
	max-height: 200px;
	object-fit: cover;
}

.contract-right p {
	margin-bottom: 19px;
}

.contract-right ul {
	margin-bottom: 38px;
}

.additional-right ul:last-child,
.contract-right ul:last-child {
	margin-bottom: 0;
}

@media screen and (min-width: 768px) {
	.contract {
		padding-top: 72px;
	}

	.contract-text {
		margin-bottom: 48px;
	}

	.contract-text h2 {
		margin-bottom: 15px;
		font-size: var(--font-size-h1);
	}

	.contract-holder {
		display: flex;
	}

	.contract-left {
		margin-top: 10px;
		margin-bottom: 0;
		order: 2;
		width: 340px;
		flex: 0 0 auto;
	}

	.contract-left img {
		max-height: none;
		object-fit: unset;
	}

	.contract-right {
		padding-right: 30px;
		order: 1;
	}

	.contract-right ul {
		margin-bottom: 38px;
	}
}

@media screen and (min-width: 1025px) {
	.contract-left {
		width: 470px;
	}

	.contract-right {
		padding-right: 60px;
	}
}

/* TEMPLATES > Practice section colored background (additional, contract when ACF) */
.practice-section-bg {
	padding-top: 22px;
	padding-bottom: 60px;
	position: relative;
	background-color: var(--color-gray-100);
	overflow: hidden;
}

.practice-section-bg>.row-narrow {
	position: relative;
	z-index: 1;
}

@media screen and (min-width: 768px) {
	.practice-section-bg {
		padding-top: 65px;
		padding-bottom: 65px;
		background-image: url('../images/logo-big.svg');
		background-repeat: no-repeat;
		background-position: top center;
	}
}

/* TEMPLATES > Additional */
.additional-holder {
	position: relative;
	z-index: 1;
}

.additional h2 {
	margin-bottom: 9px;
	font-size: var(--font-size-h1);
}

.additional p {
	margin-bottom: 21px;
}

@media screen and (min-width: 768px) {
	.additional-holder {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
	}

	.additional h2 {
		margin-bottom: 9px;
		font-size: var(--font-size-h1);
	}

	.additional-left {
		padding-right: 30px;
	}

	.additional-right {
		margin-top: 7px;
	}
}