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

/*
SUBPAGE STRUCTURE
BLOG
TEMPLATES
*/

/*******************************************************************************************
SUBPAGE STRUCTURE - Non-critical page features
*******************************************************************************************/

.search-form {
	display: flex;
	position: relative;
	border: 1px solid var(--primary-color);
}

.search-form input {
	height: 45px;
	color: var(--alternate-color);
	padding: 10px 20px;
}

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

.search-form button {
	height: 45px;
	width: 45px;
	border: 0;
	font-size: 1.1rem;
	padding: 0 12px;
	border-radius: 0;
	cursor: pointer;
	color: var(--white-color);
	background: var(--primary-color);
}

/*******************************************************************************************
BLOG - Posts, search results, and pagination
*******************************************************************************************/

.post {
	margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid var(--gray-color-600);
}

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

.post-head h1,
.post-head h2 {
	font-size: 1.875rem;
	margin-bottom: 12px;
	padding: 0;
	border: 0;
}

.post-head,
.post-body {
	margin-bottom: 30px;
}

.post-body {
	display: block;
}

.post-head-info {
	display: flex;
	flex-wrap: wrap;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
	text-transform: uppercase;
	margin-bottom: 0;
	color: var(--gray-color);
}

.post-head-info a {
	color: var(--gray-color);
}

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

.post-head-info > div:not(:last-of-type)::after {
	content: '|';
	display: inline-block;
	margin: 0 6px 0 10px;
}

.post-head-info-authors span:not(:last-child)::after,
.post-head-info-authors a:not(:last-child)::after {
	content: ',';
}

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

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

img.alignright {
	float: right;
	margin: 0 0 30px 30px;
}

img.alignleft {
	float: left;
	margin: 0 30px 30px 0;
}

.post-bottom {
	display: flex;
	align-items: center;
}

.post-bottom a:not(:last-child) {
	margin-right: 15px;
}

.post-bottom-share {
	color: var(--alternate-color);
	font-weight: 600;
	border-color: var(--alternate-color);
}

.post-bottom-share:hover,
.post-bottom-share:focus {
	background: var(--alternate-color);
}

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

	.post-body-image {
		width: 36%;
	}

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

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

	.post-body-image ~ .post-body-excerpt {
		padding-right: 40px;
		width: 64%;
	}
}

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

.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-size: cover;
	background-repeat: no-repeat;
	background-position-x: 50%;
	background-position-y: 100%;
}

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

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

.blog-grid .post-bottom-share {
	display: none;
}

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

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

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

	.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: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.wp-pagenavi a,
.wp-pagenavi span {
	font-weight: 600;
	text-decoration: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	margin: 0;
	display: block;
	background: var(--alternate-color);
	color: var(--white-color);
	margin-right: 10px;
}

.wp-pagenavi span.current {
	color: var(--white-color);
	background-color: var(--color-alternate);
}

.wp-pagenavi a:hover,
.wp-pagenavi a:focus {
	background: var(--gray-color-400);
	color: var(--alternate-color);
}

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

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .first,
.wp-pagenavi .last {
	width: auto;
	color: var(--color-alternate);
	background: none;
	padding: 0 30px;
	border-radius: 0;
}

.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 {
	background: none;
	color: var(--color-secondary);
}

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

/* TEMPLATES > Attorney Bios */

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

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

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

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

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

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

.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-single-box {
	padding: 0;
	position: relative;
	margin-bottom: 20px;
}

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

.attorney-single-box img {
	width: 100%;
	background: var(--white-color);
	transition: all 200ms ease-out;
}

.attorney-single-box figure {
	width: 100%;
	display: block;
	position: relative;
	background: var(--primary-color);
}

.attorney-single-box figure:after {
	left: 50%;
	top: 50%;
	opacity: 0;
	color: var(--white-color);
	content: 'View Full Bio';
	display: block;
	font-weight: bold;
	position: absolute;
	transition: all 200ms ease-out;
	text-transform: uppercase;
	transform: translate(-50%, -50%);
}

.attorney-single-box:hover img,
.attorney-single-box:focus img {
	opacity: 0.2;
}

.attorney-single-box:hover figure:after,
.attorney-single-box:focus figure:after {
	opacity: 1;
}

.attorney-single-box .attorney-single-box-info {
	padding: 12px;
	text-align: center;
	transition: background 200ms ease-out;
}

.attorney-single-box .attorney-single-box-info:after {
	content: '';
	display: block;
	height: 2px;
	width: 50px;
	margin: 5px auto 0;
	background: var(--primary-color);
}

.attorney-single-box-info h2,
.attorney-single-box-info p {
	color: var(--alternate-color);
	margin: 0;
}

.attorney-single-box:hover .attorney-single-box-info,
.attorney-single-box:focus .attorney-single-box-info {
	background: var(--color-alternate);
}

.attorney-single-box h2 {
	font-size: 1.5rem;
	margin-bottom: 5px;
}

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

@media screen and (min-width: 650px) {
	.attorney-results {
		display: flex;
		justify-content: center;
		margin-right: -15px;
		margin-left: -15px;
	}

	.attorney-single-box {
		margin-bottom: 30px;
		margin-left: 15px;
		margin-right: 15px;
		width: calc(50% - 30px);
	}
}

@media screen and (min-width: 900px) {
	.attorney-single-box {
		width: calc(33.33% - 30px);
	}
}

/* Attorney Rows */

.attorney-single-row {
	display: flex;
	text-align: center;
	flex-direction: column;
	margin-bottom: 40px;
}

.attorney-row-link {
	justify-content: center;
	margin: 0 auto;
	max-width: 280px;
	transition: opacity 200ms ease-out;
}

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

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

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

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

.attorney-row-additional {
	margin-top: 6px;
}

.attorney-row-info-main-position {
	font-size: 1.2rem;
	margin-bottom: 20px;
}

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

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

@media screen and (min-width: 900px) {
	.attorney-results.attorney-results-type-row {
		display: block;
	}

	.attorney-single-row {
		flex-direction: row;
		border-bottom: 2px solid var(--gray-color-400);
		text-align: left;
		margin-bottom: 30px;
	}

	.attorney-row-info-main-position,
	.attorney-single-row:last-of-type,
	.attorney-row-additional,
	.attorney-row-link {
		margin: 0;
	}

	.attorney-row-info {
		display: flex;
		flex: 1;
		padding: 0 0 40px 5vw;
	}

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

	.attorney-row-info-main-contact {
		margin-top: 40px;
	}

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

/* Attorney Pops */

.attorney-results.attorney-results-type-pop {
	display: block;
}

.attorney-result-pop {
	display: none;
}

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

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

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

.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(--alternate-color);
}

.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 {
	font-size: 1.2rem;
	margin-bottom: 5px;
}

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

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

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

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

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

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

.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 {
	font-size: 1.3rem;
	display: block;
	margin-bottom: 8px;
}

@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 {
	text-align: center;
	margin-bottom: 40px;
	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 {
	display: inline-block;
	width: 30px;
	height: 30px;
	text-align: center;
	padding: 0;
	background: none;
	color: var(--color-secondary);
	text-decoration: none;
	font-weight: 600;
}

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

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

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

@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 {
	display: block;
	padding: 25px;
	background: var(--alternate-color);
	color: var(--white-color);
	text-align: center;
	margin-bottom: 20px;
	text-decoration: none;
	transition: background 200ms ease-out;
}

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

.practice-box:hover,
.practice-box:focus {
	background: var(--color-alternate);
}

.practice-box span {
	margin: 0;
	font-size: 1.3rem;
	-ms-align-self: center;
	align-self: center;
	width: 100%;
}

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

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

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

/* TEMPLATES > Video Gallery */

.videos-filter {
	margin-bottom: 50px;
}

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

/* TEMPLATES > Contact */
.office-block:not(:last-child) {
	margin-bottom: 30px;
}

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

.office-block-info {
	background: var(--color-light-gray);
	position: relative;
	margin-bottom: 20px;
}

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

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

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

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

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

.page-template-template-contact .sidebar {
	background: transparent;
}

.page-template-template-contact .sidebar .card-form {
	margin-top: 0;
	margin-bottom: 0;
}

.page-template-template-contact .footer {
	padding-top: 40px;
	padding-bottom: 40px;
}

.page-template-template-contact .footer .info {
	width: 100%;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.page-template-template-contact .footer .info ul {
	margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
	.page-template-template-contact .sidebar,
	.page-template-template-contact .content {
		width: 50%;
	}

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

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

	.page-template-template-contact main {
		padding-bottom: 20px;
	}
}

/* TEMPLATES > Attorney Bios */

.content-tabs-row {
	display: none;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

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

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

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

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

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

.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 {
	width: 100%;
	text-align: left;
	padding: 20px 30px;
	margin-bottom: 20px;
	position: relative;
}

.mobile-tab::after {
	content: '\f0d7';
	font-family: 'Font Awesome 6 Pro';
	right: 15px;
	position: absolute;
}

@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 {
	background: rgb(20, 23, 47);
	background: linear-gradient(180deg, rgba(20, 23, 47, 1) 46%, rgba(36, 42, 88, 1) 100%);
	padding: 40px 0;
}

.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 {
	max-width: 70%;
	margin: 0 auto;
}

@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 {
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	text-decoration: none !important;
	margin: 0 auto;
}

.top-table-contents-button {
	font-size: 1.2rem;
}

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

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

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

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

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

.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 {
	flex-direction: row;
	margin: 0 auto 0 0;
}

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

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

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

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

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

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

	.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 {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-bottom: 10px;
}

.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 {
	max-width: none;
	justify-content: flex-start;
}

.review-social .social-links a {
	font-size: 2.4rem;
	border: 1px solid var(--alternate-color);
	background: var(--white-color);
	width: 60px;
	height: 60px;
	margin: 0 15px 0 0;
	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) {
	border-bottom: 1px solid var(--gray-color-400);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.content-testimonial-single p {
	margin-bottom: 10px;
}

.content-testimonial-stars {
	font-size: 1rem;
	color: var(--primary-color);
}

.content-testimonial-source {
	display: block;
	font-weight: bold;
}

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

/* Banner Start */
.banner {
	margin-bottom: 49px;
	padding-top: 162px;
	position: relative;
	display: flex;
	align-items: flex-end;
}

.banner .holder {
	position: relative;
	z-index: 2;
	align-items: center;
	width: var(--width-100);
}

.banner .banner-man-image {
	width: var(--width-100);
}

.banner .banner-man-image img {
	margin: 0 auto;
	max-width: 290px;
}

.banner .banner-content {
	padding-top: 35px;
	padding-bottom: 0;
	width: var(--width-100);
	text-align: center;
}

.banner .h1 {
	margin-bottom: 5px;
	text-transform: uppercase;
	color: var(--heading-color);
}

.banner .banner-sub-title {
	margin-bottom: 12px;
	padding-bottom: 22px;
	display: block;
	font-size: 15px;
	font-weight: 700;
	line-height: var(--heading-font-family);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--primary-color);
	border-bottom: 1px solid var(--gray-color-400);
}

.banner .banner-info {
	margin-bottom: 28px;
}

.banner .banner-info > li {
	margin-bottom: 6px;
}

.banner .banner-info > li > a {
	padding-left: 34px;
	position: relative;
	font-size: 18px;
	font-weight: 500;
	color: var(--heading-color);
	transition: var(--base-duration);
}

.banner .banner-info > li > a i {
	position: absolute;
	top: 8px;
	left: 0;
}

.banner .banner-info > li > a:hover,
.banner .banner-info > li > a:focus {
	color: var(--primary-color);
}

.banner .banner-social-media {
	display: flex;
	justify-content: center;
}

.banner .banner-social-media > li {
	margin-right: 10px;
}

.banner .banner-social-media > li:last-child {
	margin-right: 0;
}

.banner .banner-social-media > li > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 16px;
	color: var(--heading-color);
	border: 1px solid var(--gray-color-300);
	transition: var(--base-duration);
}

.banner .banner-social-media > li > a:hover,
.banner .banner-social-media > li > a:focus {
	color: var(--heading-color);
	border: 1px solid var(--white-color);
	background-color: var(--white-color);
}

.banner .banner-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: var(--width-100);
	height: 605px;
}

.banner .banner-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}

.banner .banner-bg img {
	width: var(--width-100);
	height: var(--height-100);
	object-fit: cover;
}

.banner.banner-inner {
	margin-bottom: 0;
	align-items: center;
	min-height: 375px;
}

.banner.banner-inner:after {
	height: var(--height-100);
	background: linear-gradient(to bottom, rgba(26, 24, 24, 1) 0%, rgba(0, 0, 0, 0.58) 100%);
}

.banner.banner-inner .banner-content {
	margin: 0 auto;
	padding-top: 0;
	position: relative;
	z-index: 2;
	width: var(--width-100);
}

.banner.banner-inner .h1 {
	font-size: 38px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
}

.banner.banner-inner .banner-bg {
	height: var(--height-100);
}

@media only screen and (min-width: 768px) {
	.banner {
		margin-bottom: 0;
		padding-top: 0;
		min-height: 682px;
	}

	.banner:after {
		height: var(--height-100);
	}

	.banner .banner-man-image {
		padding-right: 20px;
		width: 45%;
	}

	.banner .banner-man-image img {
		margin: 0;
		max-width: var(--width-100);
	}

	.banner .banner-content {
		padding-top: 0;
		padding-bottom: 0;
		width: 55%;
		text-align: left;
	}

	.banner .h1 {
		color: var(--white-color);
	}

	.banner .banner-sub-title {
		margin-bottom: 20px;
		padding-bottom: 0;
		font-size: 25px;
		border-bottom: 0;
	}

	.banner .banner-info > li > a {
		color: var(--white-color);
	}

	.banner .banner-social-media {
		justify-content: unset;
	}

	.banner .banner-social-media > li > a {
		color: var(--white-color);
		border: 1px solid var(--gray-color-300);
	}

	.banner .banner-bg {
		height: var(--height-100);
	}

	.banner.banner-inner {
		min-height: 432px;
	}

	.banner.banner-inner .banner-content {
		padding-top: 85px;
	}

	.banner.banner-inner .h1 {
		font-size: 47px;
	}
}
