/**
 * ***************************************
 *
 * @format
 */

/* Theme Name: PaperStreet                 */
/* Theme URI: http://www.wordpressbase.com */
/* Author: PaperStreet                     */
/* Author URI: https://www.paperstreet.com */
/* Description: For PaperStreet            */
/* Text Domain: paperstreet                */
/* Version: 3.2505                         */
/*******************************************/

/*
GENERAL
MENUS
HEADER
FOOTER
FEATURES
ANIMATIONS
MODULES
PRINT
MISC
*/

/*******************************************************************************************
GENERAL - Layout and general features
*******************************************************************************************/

/* GENERAL > Utility Classes */

.no-margin-last > p:last-of-type {
	margin: 0 !important;
}

.no-transition {
	transition: none !important;
}

.hr-after {
	position: relative;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.center,
.has-text-align-center,
.align-center,
.text-center {
	text-align: center;
}

.right,
.align-right,
.text-right {
	text-align: right;
}

.body-font {
	font-family: var(--font-family-body);
}

.header-font {
	font-family: var(--font-family-heading);
}

.overflow-hidden {
	overflow: hidden;
}

.flex-container {
	display: flex;
	align-items: center;
}

.flex-align-vertical {
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex-align-horizontal {
	display: flex;
	justify-content: center;
	text-align: center;
}

.small-margin-left {
	margin-left: 10px;
}

.small-margin-right {
	margin-right: 10px;
}

.pointer-events-none {
	pointer-events: none;
}

.transition-all {
	transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.z-index-over {
	position: relative;
	z-index: 1;
}

.background-center {
	background-position: center center !important;
}

.background-y-bottom {
	background-position-y: 100%;
}

.background-y-top {
	background-position-y: 0%;
}

.background-cover {
	background-repeat: no-repeat;
	background-size: cover;
}

.background-transparent {
	background: transparent;
}

.light-text,
button.light-text,
.light-text h1,
.light-text h2,
.light-text h3,
.light-text p,
.light-text span,
.light-text li,
.light-text label {
	color: var(--color-white);
}

/* GENERAL > HTML and Structure */
.content {
	margin-bottom: 40px;
}

.content .wp-block-image {
	margin-bottom: 30px;
}

img.alignright,
.content .wp-block-image .alignright,
.content .wp-block-image.alignright {
	float: right;
	margin: 0 0 var(--gutter-size) var(--gutter-size);
}

img.alignleft,
.content .wp-block-image .alignleft,
.content .wp-block-image.alignleft {
	float: left;
	margin: 0 var(--gutter-size) var(--gutter-size) 0;
}

.content p.indent {
	margin-left: 60px;
}

.content section {
	margin-bottom: 60px;
}

.content section:last-of-type {
	margin: 0;
}

.content .search-results-container {
	margin-bottom: 80px;
}

ol,
ul {
	margin: 0 0 35px;
	padding: 0;
}

ol {
	list-style-position: outside;
	padding-left: 20px;
}

.content ul {
	margin-left: 20px;
}

ul.has-before li,
.content li {
	font-size: 0.938rem;
	color: var(--color-body-text);
	position: relative;
	list-style: disc;
}

.content ol li {
	padding-left: 5px;
	list-style: auto;
}

.content ol li a,
.content ul li a {
	display: inline-block;
	font-weight: 700;
	color: var(--color-primary);
	transition: all 0.3s;
}

.content ol li a:focus,
.content ol li a:hover,
.content ul li a:focus,
.content ul li a:hover {
	color: var(--color-black);
	text-decoration: underline;
}

.content ul ul {
	margin: 5px 0 5px 20px;
}

hr,
.hr-after::after {
	background: var(--color-secondary);
	width: 20%;
	height: 5px;
	display: block;
	border: none;
	margin: 40px 0;
	content: '';
}

figure {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 0 0 30px;
}

.italic {
	font-style: italic;
}

.non-italic,
address {
	font-style: normal;
}

section.no-underline ul {
	border: none;
}

section.no-underline ul:last-of-type {
	padding: 0;
}

.sidebar section:not(:last-child) {
	margin-bottom: 40px;
}

.sidebar-block {
	width: 100%;
}

.sidebar-block h2 {
	font-size: 1.5rem;
}

.sidebar-block ul li {
	padding: 10px 30px 10px 0;
	position: relative;
	border-top: 1px solid var(--color-gray-300);
}

.sidebar-block ul li:hover:after {
	color: var(--color-primary);
}

.sidebar-block ul li:has(a):after {
	position: absolute;
	top: 11px;
	right: 0;
	font-weight: 700;
	font-family: var(--font-family-icon);
	transition: all 0.3s;
	content: '\f061';
	pointer-events: none;
}

.sidebar-block ul li:last-of-type {
	border-bottom: 1px solid var(--color-gray-300);
}

.sidebar-block ul li,
.sidebar-block ul li a {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-black);
}

.sidebar-block button.no-button,
.sidebar-block ul li a {
	text-decoration: none;
	color: var(--color-black);
}

.sidebar-block button.no-button:hover,
.sidebar-block button.no-button:focus,
.sidebar-block ul li a:hover,
.sidebar-block ul li a:focus {
	text-decoration: none;
	color: var(--color-primary);
}

.sidebar-block ul li ul {
	margin: 0;
	padding-left: 20px;
}

.sidebar-block ul:last-of-type {
	margin: 0;
}

.sidebar .form-container {
	display: none;
}

.sidebar.is-practice .form-container h2 {
	font-size: 1.313rem;
}

@media only screen and (min-width: 768px) {
	.sidebar .form-container {
		z-index: 1;
		display: block;
		position: relative;
		margin-top: -150px;
	}

	.sidebar.is-practice .form-container {
		margin-bottom: 40px;
		margin-top: -380px;
	}
}

@media only screen and (min-width: 1025px) {
	.sidebar .form-container {
		margin-top: -250px;
	}

	.sidebar.is-practice .form-container {
		margin-top: -440px;
	}
}

/* GENERAL > Form and Inputs */
input,
select,
textarea {
	color: var(--color-body-text);
	background: none;
	border: 1px solid var(--color-black);
	font-size: 0.875rem;
	line-height: 1.1;
	font-family: var(--font-family-body), sans-serif;
	box-shadow: none;
	margin: 0;
	width: 100%;
	display: block;
	border-radius: 2px;
	padding: 9px 12px;
}

select {
	border-bottom: none;
}

input.dark-input,
select.dark-input,
textarea.dark-input {
	color: var(--color-primary);
}

textarea {
	resize: none;
	height: 120px;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: var(--color-body-text);
}

input::placeholder,
textarea::placeholder {
	color: var(--color-body-text);
}

form legend,
form label,
form p {
	color: var(--color-body-text);
	font-size: 0.875rem;
}

fieldset {
	padding: 0;
	border: none;
	margin: 0;
}

.gfield,
.form-input-group {
	display: block;
	position: relative;
	width: 100%;
	margin-bottom: 5px;
	text-align: left;
}

.form-input-group.button-container {
	margin-bottom: 0;
}

select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.select-wrapper {
	position: relative;
	width: 100%;
}

.select-wrapper::after {
	content: '\f0dc';
	font-weight: 900;
	font-family: 'Font Awesome 6 Pro';
	position: absolute;
	right: 0;
	top: 0;
	text-align: center;
	width: 45px;
	line-height: 45px;
	color: var(--color-primary);
	pointer-events: none;
	transition: all 200ms ease-out;
}

.select-wrapper.active::after {
	background: var(--color-primary);
	color: white;
}

.select-wrapper select {
	height: 45px;
	padding: 10px 50px 10px 20px;
}

.form-container {
	padding: 25px;
	background-color: var(--color-white);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
	text-align: center;
	margin-bottom: 15px;
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--color-body-text);
}

.form-container h2 strong {
	margin-top: 7px;
	font-size: 0.813rem;
	display: block;
	text-transform: uppercase;
}

.background-input input,
.background-input textarea,
.background-input select {
	background-color: var(--color-primary);
}

.background-input.select-wrapper::after,
.background-input .select-wrapper::after {
	background-color: var(--color-gray);
}

input.has-error {
	border: 1px solid #f00 !important;
	box-shadow: 0 0 2px #f00 !important;
}

.gform_submission_error,
.gfield_validation_message,
p.error-text {
	color: red;
}

.gfield_validation_message,
p.error-text {
	margin: 0;
	font-size: 0.7rem;
	-webkit-animation: fadeIn 125ms both;
	animation: fadeIn 125ms both;
}

@media screen and (min-width: 768px) {
	.form-container {
		padding: 30px;
	}

	.form-container h2 {
		font-size: 1.563rem;
	}
}

/* GENERAL > Gravity Forms Customizations */
.gfield_label {
	display: block;
	margin-bottom: 4px;
}

.gform_footer {
	padding-top: 5px;
}

.gform_footer .gform_button {
	width: 100%;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 0.75rem;
	letter-spacing: 1px;
	border-radius: 2px;
}

.gform_submission_error {
	font-size: 1rem;
}

.gform_validation_errors ol,
.gform_submission_error .gform_heading,
.ginput_counter,
span.gfield_required {
	display: none;
}

.gfield_contains_required label.gfield_label:after {
	color: red;
	content: ' *';
	line-height: 1;
	margin-left: 2px;
}

.gfield_validation_message,
p.error-text {
	color: red;
	font-weight: 700;
	margin: 0;
	font-size: 0.7rem;
	-webkit-animation: fadeIn 125ms both;
	animation: fadeIn 125ms both;
}

/* GENERAL > Swiper Customizations */
.swiper.swiper-initialized {
	visibility: visible;
}

.swiper-button-container {
	position: absolute;
	display: flex;
	justify-content: space-between;
	left: -30px;
	right: 0;
	width: calc(100% + 60px);
	top: calc(50% - 22px);
}

.swiper-button-container.buttons-bottom {
	left: 0;
	top: 100%;
	width: 100%;
}

.swiper-button-container .swiper-button-next,
.swiper-button-container .swiper-button-prev {
	position: relative !important;
	height: auto !important;
	min-width: 44px !important;
	margin-top: 0 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	display: none;
	font-family: 'Font Awesome 6 Pro' !important;
	content: '\f105' !important;
	color: var(--color-primary);
	-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;
}

.swiper-button-prev:after {
	content: '\f104' !important;
}

.swiper-button-next:hover:after,
.swiper-button-next:focus:after,
.swiper-button-prev:hover:after,
.swiper-button-prev:focus:after {
	color: var(--color-secondary) !important;
}

.swiper-outer {
	max-width: 85%;
	position: relative;
	margin: 0 auto;
}

.swiper-outer.full-width {
	max-width: none !important;
}

.swiper-autoplay-toggle {
	position: absolute;
	z-index: 1;
	bottom: 20px;
	right: 20px;
}

.swiper-pagination-bullet {
	margin: 0 3px !important;
	width: 12px;
	height: 12px;
	border-radius: 10px;
	background-color: var(--color-gray);
}

.swiper-pagination-bullet-active {
	background-color: var(--color-secondary);
}

@media screen and (min-width: 768px) {
	.sidebar .swiper-outer {
		max-width: 100%;
	}
}

@media screen and (min-width: 1025px) {
	.swiper-outer {
		max-width: calc(100% - 200px);
	}

	.swiper-button-container {
		left: -100px;
		width: calc(100% + 200px);
	}

	.swiper-outer.full-width .swiper-button-container {
		left: 0;
		width: 100%;
	}
}

/* GENERAL > Skip To Content */
#skiptocontent {
	z-index: 10;
	position: fixed;
	padding: 8px;
	display: block !important;
	transform: translateY(-40px);
	opacity: 0;
	background-color: var(--color-secondary);
	color: white;
	transition: all 200ms ease-out;
}

#skiptocontent:focus {
	transform: translateY(0);
	opacity: 1;
}

@media only screen and (max-width: 640px) {
	#skiptocontent {
		display: none !important;
	}
}

/*******************************************************************************************
MENUS - Non-critical menu styling
*******************************************************************************************/

/* MENUS > Mobile Menu */
#mobile-navigation {
	z-index: 100;
	position: fixed;
	top: 30px;
	background-color: var(--color-dark-alt);
	overflow: auto;
	width: 100%;
	height: calc(100vh - 30px);
}

#mobile-navigation.active {
	-webkit-animation: fadeInRight 400ms cubic-bezier(0.87, 0, 0.13, 1);
	animation: fadeInRight 400ms cubic-bezier(0.87, 0, 0.13, 1);
	display: block;
}

body.scrolled #mobile-navigation {
	top: 0;
	height: 100vh;
}

.mobile-navigation-top-inner {
	margin-bottom: 40px;
	align-items: center;
	padding: 15px var(--gutter-size);
	display: none;
}

.mobile-navigation-top-inner img {
	width: 250px;
	height: auto;
}

#mobile-navigation.active .mobile-navigation-top-inner {
	display: flex !important;
}

#mobile-navigation a {
	display: flex;
	justify-content: space-between;
	text-decoration: none;
	font-size: 1.125rem;
	font-weight: 700;
	color: white;
	padding: 10px 0;
}

#mobile-navigation a:hover,
#mobile-navigation a:active,
#mobile-navigation a:focus {
	color: var(--color-white);
	background: transparent;
}

#mobile-navigation ul {
	margin: 0;
	padding: 0 40px;
}

#mobile-navigation ul li {
	padding: 0;
	position: relative;
	display: block;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-accordion #mobile-navigation .sub-menu li:last-of-type {
	border-bottom: none;
}

.mobile-menu-accordion #mobile-navigation .sub-menu a {
	font-size: 1rem;
	padding: 5px 0;
}

#mobile-navigation ul li::before {
	display: none;
}

#mobile-navigation .sub-menu {
	margin: 0;
	padding: 0;
	z-index: 1;
	overflow: auto;
	display: none;
	width: 100%;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

#mobile-navigation .sub-menu li {
	border: 0;
}

#mobile-navigation ul li.sub-menu-open > .sub-menu {
	display: block;
}

#mobile-navigation .menu-item-has-children > a::after {
	content: '\f0d7';
	font-family: 'Font Awesome 6 Pro';
	font-weight: 700;
}

#mobile-navigation .sub-menu-open.menu-item-has-children > a::after {
	content: '\f0d8';
}

.mobile-navigation-close {
	padding: 0;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	width: 40px;
	height: 40px;
	margin-left: auto;
	color: var(--color-black);
	background: var(--color-secondary);
	font-size: 1.25rem;
}

.mobile-navigation-close:focus,
.mobile-navigation-close:hover {
	color: var(--color-secondary);
}

.mobile-navigation-previous {
	margin-bottom: 10px;
	border: none !important;
}

@media screen and (min-width: 1025px) {
	#mobile-navigation {
		display: none;
	}

	.mobile-navigation-top-inner {
		display: none;
	}
}

/* MENUS > Mobile Menu Paged */
.mobile-menu-paged #mobile-navigation .sub-menu {
	height: 100vh;
}

.mobile-menu-paged #mobile-navigation .menu-item-has-children > a::after {
	content: '\f105';
}

.mobile-menu-paged #mobile-navigation a {
	padding-left: var(--gutter-size);
}

.mobile-menu-paged #mobile-navigation ul li.sub-menu-open > .sub-menu {
	-webkit-animation: fadeInRight 300ms ease-out;
	animation: fadeInRight 300ms ease-out;
}

.mobile-menu-paged #mobile-navigation .sub-menu {
	position: fixed;
	top: 0;
}

/* MENUS > Mega Menu */
.mega-menu {
	width: 100%;
	position: absolute;
	top: 100%;
	left: auto;
	right: 0;
	background: var(--color-primary);
	padding: 25px 75px;
}

.mega-navigation-menu {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 18px;
	margin: 0;
}

.mega-menu li {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-menu li:nth-child(4n) {
	border-right: none;
	margin: 0;
	padding-right: 0;
}

/*******************************************************************************************
HEADER - Non-critical header styling
*******************************************************************************************/

/* HEADER > Header Search Bar */
.header-search {
	position: fixed;
	top: -100px;
	left: 0;
	right: 0;
	background-color: var(--color-primary);
	padding: 18px 0;
	width: 100%;
	z-index: 3;
	transition: all 200ms ease-out;
}

.header-search.active {
	opacity: 1;
	top: 0;
}

.header-search-inner {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	float: none;
}

.search-results-post-type:not(:last-child) {
	margin-bottom: 30px;
}

.search-results-post-type ul {
	margin: 0;
}

.header-search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding: 30px var(--gutter-size);
	background: var(--color-primary);
	display: none;
	max-height: 350px;
	overflow: auto;
}

.header-search-results.active {
	display: block;
	-webkit-animation: fadeIn 200ms ease-out;
	animation: fadeIn 200ms ease-out;
}

.header-search-results h3,
.header-search-results a,
.header-search-results p {
	color: white;
}

.header-search-results h3 {
	margin-bottom: 8px;
}

.header-search-results a {
	text-decoration: none;
}

.header-search-results a:hover,
.header-search-results a:focus {
	text-decoration: underline;
}

.header-search-form {
	position: relative;
	flex: 1;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

#header-search-input {
	margin: 0;
	height: 45px;
	border: 0 none;
	font-size: 1.3rem;
	color: white;
	border-bottom: 1px solid var(--color-white);
	background: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}

.header-search button {
	padding: 0 20px;
	height: 45px;
	white-space: pre;
}

.header-search-submit {
	margin: 0 1%;
}

#header-search-open {
	font-size: 1.1rem;
	display: inline-block;
	line-height: 40px;
	width: 40px;
	height: 40px;
	padding: 0;
	text-align: center;
	margin: 0 0 5px 30px;
}

/*******************************************************************************************
FOOTER - Page bottom
*******************************************************************************************/
.footer {
	padding: 30px 0;
	position: relative;
	color: var(--color-white);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.footer.active {
	background-image: url('./images/footer-bg.webp');
}

.footer a {
	color: inherit;
	text-decoration: none;
}

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

.footer-info {
	width: 100%;
	text-align: center;
}

.footer-form {
	margin-bottom: 25px;
}

.footer-logo {
	width: 310px;
	display: block;
	margin: 0 auto 25px auto;
}

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

.footer-address {
	margin-bottom: 28px;
}

.footer-address-info {
	font-size: 1rem;
	line-height: 1.7;
}

.footer-address-info .button.no-button {
	font-size: 1rem;
	color: var(--color-secondary);
}

.footer-address-info .button.no-button:focus,
.footer-address-info .button.no-button:hover {
	text-decoration: none;
}

.footer-address-info address p {
	margin-bottom: 0;
}

.footer-address-image {
	margin: 0 auto 20px;
	width: 225px;
	height: 136px;
}

.footer-address-image img {
	width: 100%;
	display: block;
}

.footer-buttons {
	margin-bottom: 25px;
	padding-top: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-buttons .button.outline {
	margin-right: 10px;
	padding: 10px 22px;
	font-size: 0.688rem;
	color: var(--color-white);
	border-color: var(--color-white);
}

.footer-buttons .button.outline:focus,
.footer-buttons .button.outline:hover {
	color: var(--color-black);
	background-color: var(--color-white);
}

.footer-social {
	display: flex;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 1rem;
	color: var(--color-primary);
	background-color: var(--color-white);
	text-decoration: none;
	transition: all 0.3s;
}

.footer-social a + a {
	margin-left: 8px;
}

.footer-social a:focus,
.footer-social a:hover {
	color: var(--color-white);
	background-color: var(--color-primary);
}

.footer-copyright {
	font-size: 0.688rem;
}

.footer-copyright a {
	text-decoration: underline;
}

.footer-copyright a:hover,
.footer-copyright a:focus {
	text-decoration: none;
}

.footer-copyright p {
	margin-bottom: 0;
}

.footer-copyright ul {
	margin: 0 0 20px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-copyright li:last-of-type {
	width: 100%;
}

.footer-copyright li:not(:last-child):after {
	content: '|';
	margin: 0 5px;
}

.footer-copyright li:nth-last-child(2):after {
	display: none;
}

.footer-address address + a {
	display: block;
}

body.page-template-template-contact .footer {
	text-align: center;
}

@media screen and (min-width: 830px) {
	body:not(.page-template-template-contact) .footer {
		padding: 79px 0;
	}

	body.page-template-template-contact .footer {
		text-align: left;
	}

	.footer-inner {
		display: flex;
		flex-direction: row-reverse;
	}

	.footer-form {
		width: 373px;
		margin-bottom: 0;
	}

	.footer-info {
		flex: 1;
		text-align: left;
		margin-right: 40px;
	}

	.footer-logo {
		width: 380px;
		margin-left: 0;
		margin-bottom: 40px;
	}

	.footer-address {
		display: flex;
		margin-bottom: 28px;
	}

	.footer-address address {
		line-height: 1.64;
	}

	.footer-address-image {
		margin: 6px 26px 0 0;
		flex: 0 0 auto;
		width: 175px;
	}

	.footer-buttons {
		justify-content: inherit;
	}

	.footer-buttons .button.outline {
		margin-right: 20px;
	}

	.footer-copyright p {
		margin-bottom: 0;
	}

	.footer-copyright ul {
		margin-bottom: 0;
		justify-content: flex-start;
	}

	.footer-copyright li:last-of-type {
		width: auto;
	}

	.footer-copyright li:nth-last-child(2):after {
		display: inline;
	}
}

@media screen and (min-width: 1025px) {
	.footer-info {
		margin-right: 80px;
	}

	.footer-address-image {
		width: 225px;
	}

	.footer-info {
		display: -webkit-flex;
		display: -moz-flex;
		display: -o-flex;
		display: flex;
		justify-content: space-between;
		flex-direction: column;
	}
}

/*******************************************************************************************
FEATURES - Pre-built small sections
*******************************************************************************************/

/* FEATURES > Content Tables */
table.has-fixed-layout {
	width: 100%;
	table-layout: fixed;
}

.content table {
	border-collapse: collapse;
}

table th,
table td {
	border: 1px solid var(--color-light-gray);
	padding: 5px;
	text-align: left;
}

/* FEATURES > Breadcrumbs */
.breadcrumbs-container {
	display: none;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.breadcrumbs-single {
	position: relative;
	text-decoration: none;
	padding-right: 8px;
	margin-right: 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--color-black);
}

.breadcrumbs-single:last-of-type {
	color: var(--color-primary);
	text-decoration: underline;
}

.breadcrumbs-single:focus,
.breadcrumbs-single:hover {
	text-decoration: underline;
}

.breadcrumbs-single::after {
	position: absolute;
	top: 2px;
	right: -3px;
	font-size: 10px;
	font-weight: 400;
	content: '\f105';
	font-family: 'Font Awesome 6 Pro';
}

.breadcrumbs-single:last-of-type {
	padding-right: 0;
	margin-right: 0;
}

.breadcrumbs-single:last-of-type::after {
	display: none;
}

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

/* FEATURES > Accordion */
.accordion-item {
	border-bottom: 1px solid var(--color-gray);
}

.accordion-item > h3 {
	margin-bottom: 0;
}

.accordion-item-title {
	margin: 0;
	padding: 20px;
	position: relative;
	display: flex;
	grid-gap: 15px;
	gap: 15px;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-size: 1rem;
	font-weight: 600;
	line-height: 30px;
	text-align: center;
	color: var(--color-primary);
	background: var(--color-light-gray);
	transition: background 200ms ease-out;
	cursor: pointer;
}

.accordion-item-title:after {
	width: 30px;
	height: 30px;
	font-family: var(--font-family-icon);
	font-size: 1.2rem;
	line-height: 30px;
	text-align: center;
	color: var(--color-secondary);
	content: '\2b';
}

.accordion-item-title span {
	flex: 1;
	text-align: left;
}

.accordion-item.active:focus {
	outline: none;
}

.accordion-item-title:hover,
.accordion-item-title:focus {
	color: var(--color-primary);
	background: none;
}

.accordion-item-title:focus:not(:focus-visible) {
	outline: none;
}

.accordion-item.active .accordion-item-title:after {
	content: '\f068';
}

.accordion-item-content {
	display: none;
}

.accordion-item.active .accordion-item-content {
	display: block;
	-webkit-animation: fadein 200ms both;
	animation: fadeIn 200ms both;
}

.accordion-item-content > *:first-child {
	margin-top: 20px;
}

.accordion-item-content > *:last-child {
	margin-bottom: 35px;
}

/* FEATURES > Quotes */
blockquote,
.quote-single {
	margin: 0 0 40px;
	padding-top: 20px;
	padding-left: 80px;
	position: relative;
	font-style: italic;
	border-left: 5px solid var(--color-primary);
}

blockquote p,
.quote-single p {
	margin: 0;
}

blockquote:before,
.quote-single:before {
	position: absolute;
	top: 1%;
	left: 3%;
	opacity: 1;
	font-family: var(--font-family-icon);
	font-size: 2.7rem;
	font-style: normal;
	color: var(--color-primary);
	content: '\f10d';
}

/* FEATURES > CTA Block */
.cta-single {
	padding: 40px;
	background: var(--color-light-gray);
	border: 1px solid var(--color-primary);
	text-align: center;
	margin-bottom: 40px;
}

.cta-single span {
	display: block;
	text-transform: uppercase;
	font-size: 1.3rem;
	line-height: 1.2;
	margin-bottom: 12px;
}

.cta-single a {
	font-size: 2rem;
	line-height: 1.2;
}

/* FEATURES > Slideout at Page Bottom */
.bottom-slideout {
	display: block !important;
	position: fixed;
	background: var(--color-white);
	box-shadow: 0 0 20px var(--color-black);
	padding: 30px;
	right: 0;
	bottom: 0;
	max-width: 400px;
	opacity: 0;
	z-index: 1;
	transform: translateX(100%);
	transition: all 200ms ease-out;
}

.bottom-slideout.active {
	transform: translateX(0);
	opacity: 1;
}

/* FEATURES > Reviews */
.reviews-container {
	background: var(--color-light-gray);
	padding: 50px 0;
}

.reviews-star-icon {
	color: var(--color-alternate);
	font-size: 1.1rem;
}

.reviews-single-source::before {
	content: '\2014';
	margin-right: 2px;
}

.reviews-star-icon i {
	margin: 0 2px;
}

.reviews-single {
	float: none;
	text-align: center;
}

.reviews-single em {
	font-style: italic;
	margin: 10px 0;
	display: block;
}

/* FEATURES > Video Gallery */
.videos-single {
	position: relative;
	width: 100%;
	min-height: 225px;
	margin-bottom: 120px;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	text-align: center;
	background-size: cover;
	background-repeat: no-repeat;
	-ms-background-position-x: 100%;
	background-position-x: 100%;
	text-decoration: none;
}

.videos-single:hover::before,
.videos-single:focus::before {
	opacity: 0.6;
}

.videos-single::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--color-black);
	opacity: 0;
	transition: opacity 200ms ease-out;
}

.videos-single h2 {
	position: absolute;
	top: 100%;
	width: 100%;
	min-height: 75px;
	max-height: 75px;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: var(--color-secondary);
	color: white;
	font-size: 1.1rem;
	padding: 10px 20px;
	margin: 0;
	transition: background-color 200ms ease-out;
}

.videos-single:hover h2,
.videos-single:focus h2 {
	background-color: var(--color-primary);
}

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

	.videos-single {
		margin: 0;
	}
}

@media screen and (min-width: 1025px) {
	.videos-container {
		grid-template-columns: repeat(3, 1fr);
		margin-bottom: 50px;
	}
}

/* FEATURES > YouTube Player */
.youtube-player {
	position: relative;
	padding-bottom: 56.13%;
	/* Use 75% for 4:3 videos */
	height: 0;
	max-width: 100%;
	background: var(--color-black);
	margin: 20px 0 32px;
}

.youtube-player-inner {
	width: 100%;
	height: 100%;
	content: '';
	overflow: hidden;
	position: absolute;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}

.youtube-player-inner::after,
.videos-single::after {
	font-family: 'Font Awesome 6 Pro';
	position: absolute;
	bottom: 18px;
	right: 18px;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-weight: 700;
	font-size: 1rem;
	color: var(--color-white);
	background-color: var(--color-primary);
	border-radius: 50%;
	transition: all 0.3s;
	content: '\f04b';
}

.youtube-player-inner:hover::after,
.youtube-player-inner:focus::after,
.videos-single:hover::after,
.videos-single:focus::after {
	transform: scale(1.1);
	color: var(--color-primary);
	opacity: 1;
	background-color: var(--color-white);
}

.youtube-player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
}

.youtube-player img {
	bottom: 0;
	display: block;
	left: 0;
	margin: auto;
	max-width: 100%;
	width: 100%;
	position: absolute;
	right: 0;
	top: 0;
	border: none;
	height: auto;
	cursor: pointer;
	transition: all 200ms ease-out;
}

@media screen and (min-width: 768px) {
	.youtube-player {
		margin-bottom: 50px;
	}
}

/* FEATURES > Social Link Lists */
.social-links {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
	max-width: 160px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	width: 35px;
	line-height: 35px;
	height: 35px;
	text-decoration: none;
}

.social-links a img {
	width: calc(100% - 8px);
	height: calc(100% - 8px);
}

.social-links a:hover,
.social-links a:focus {
	color: var(--color-black);
}

/* FEATURES > Case Results */
.slider-results-single {
	border: 1px solid var(--color-secondary);
	padding: 30px;
}

.slider-results-single:last-of-type {
	margin: 0;
}

.slider-results-single h3 {
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 25px;
}

/*******************************************************************************************
ANIMATIONS - Ready-to-go animation classes
*******************************************************************************************/
.animated {
	animation-duration: 1000ms;
	animation-fill-mode: both;
}

.animated.fast {
	animation-duration: 600ms;
}

.animated.slow {
	animation-duration: 2000ms;
}

.animated.fadeIn {
	animation-name: fadeIn;
}

.animated.fadeInUp {
	animation-name: fadeInUp;
}

.animated.fadeInUpSlight {
	animation-name: fadeInUpSlight;
}

.animated.fadeInRight {
	animation-name: fadeInRight;
}

.animated.fadeInRightSlight {
	animation-name: fadeInRightSlight;
}

.animated.fadeInDown {
	animation-name: fadeInDown;
}

.animated.fadeInDownSlight {
	animation-name: fadeInDownSlight;
}

.animated.fadeInLeft {
	animation-name: fadeInLeft;
}

.animated.fadeInLeftSlight {
	animation-name: fadeInLeftSlight;
}

.animated.slideInUp {
	animation-name: slideInUp;
}

.animated.slideInRight {
	animation-name: slideInRight;
}

.animated.slideInDown {
	animation-name: slideInDown;
}

.animated.slideInLeft {
	animation-name: slideInLeft;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInUpSlight {
	from {
		opacity: 0;
		transform: translate3d(0, 10%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInRightSlight {
	from {
		opacity: 0;
		transform: translate3d(10%, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInDownSlight {
	from {
		opacity: 0;
		transform: translate3d(0, -10%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInLeftSlight {
	from {
		opacity: 0;
		transform: translate3d(-10%, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInUp {
	from {
		visibility: visible;
		transform: translate3d(0, 100%, 0);
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInRight {
	from {
		visibility: visible;
		transform: translate3d(100%, 0, 0);
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInDown {
	from {
		visibility: visible;
		transform: translate3d(0, -100%, 0);
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInLeft {
	from {
		visibility: visible;
		transform: translate3d(-100%, 0, 0);
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes menuSlideRight {
	from {
		margin-left: -10px;
		opacity: 0;
	}
	to {
		margin-left: 0;
		opacity: 1;
	}
}

@keyframes menuSlideDown {
	from {
		margin-top: -10px;
		opacity: 0;
	}
	to {
		margin-top: 0;
		opacity: 1;
	}
}

/*******************************************************************************************
MODULES - General styling for repeatable blocks
*******************************************************************************************/
.module {
	padding: 80px 0;
}

main .column .module .column {
	padding-left: 0;
	padding-right: 0;
}

.module-dark {
	background: var(--color-primary);
}

h2.module-title {
	margin-bottom: 60px;
}

.modules-showcase .module-title {
	display: block;
}

.box-icon {
	margin: 0;
}

.box-icon:before {
	margin: 0 auto;
	display: block;
	width: 50px;
	font-family: var(--font-family-icon);
	font-size: 2rem;
	font-weight: 700;
	line-height: 50px;
	text-align: center;
	color: var(--color-primary);
	content: '\f073';
}

.content-selector {
	cursor: pointer;
	transition: background 200ms ease-out;
}

.content-selector:hover,
.content-selector:focus {
	background: var(--color-gray);
}

.modules-skip {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding-top: 10px;
}

.modules-skip button {
	margin: 0 5px 5px 0;
	padding: 10px;
}

/*******************************************************************************************
PRINT - Specific styles for when pages are printed
*******************************************************************************************/
@media print {
	.header {
		top: 0;
		border: none;
		height: auto;
		position: static;
	}

	.header-mobile-buttons {
		display: none;
	}
}

/*******************************************************************************************
MISC - Miscellaneous and new code
*******************************************************************************************/

#theme-switcha {
	border: 1px solid var(--color-secondary);
	margin-bottom: 30px;
	color: var(--color-primary);
}

@media screen and (min-width: 1025px) {
	.make-sticky {
		position: sticky;
		top: var(--header-height);
		z-index: 1;
	}
}

/* CLIENT */
.clients {
	margin-top: 30px;
	text-align: center;
	margin-bottom: 30px;
	position: relative;
}

.clients h2 {
	font-size: var(--font-size-h1);
}

.clients h2 strong {
	margin-top: 15px;
}

.clients-pagination {
	padding-top: 15px;
	position: inherit;
}

.clients-read-more {
	font-weight: 700;
	padding-top: 17px;
	font-size: 1.25rem;
	line-height: 1.4;
}

.clients-read-more a:not(.button) {
	text-align: center;
	display: inline-block;
}

.clients.is-border {
	margin-bottom: 70px;
}

.clients.is-border:after {
	position: absolute;
	bottom: -30px;
	left: 20px;
	width: calc(100% - 40px);
	height: 1px;
	background-color: var(--color-purple);
	content: '';
	pointer-events: none;
}

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

	.clients h2 {
		margin-bottom: 43px;
		font-size: 2.5rem;
	}

	.clients-holder {
		display: grid;
		grid-template-columns: repeat(3, 3fr);
		grid-column-gap: 20px;
	}

	.clients-read-more {
		padding-top: 62px;
	}

	.clients-read-more a:not(.button) {
		margin-left: 5px;
	}

	.clients.is-border:after {
		bottom: -48px;
	}
}

@media screen and (min-width: 1025px) {
	.clients-holder {
		grid-column-gap: 50px;
	}

	.clients.is-border:after {
		left: 50%;
		width: 1043px;
		transform: translateX(-50%);
	}
}

/* block client */
.block-client {
	width: 100%;
	display: block;
	text-decoration: none;
	color: var(--color-body-text);
}

.js-clients-slider .block-client,
.client-stories-container .block-client {
	max-width: 314px;
	margin: 0 auto;
}

.block-client-image {
	width: 100%;
	display: block;
	position: relative;
	text-decoration: none;
}

.block-client-image:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: 82%;
	background-color: #e6f4f4;
}

.block-client-image.grey:before {
	background-color: #e9ebe7;
}

.block-client-image.yellow:before {
	background-color: #fbbc02;
	opacity: 0.2;
}

.block-client-image img {
	position: relative;
	width: 100%;
	display: block;
}

.story .block-client-image {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
}

.story .block-client-image img {
	width: auto;
}

.block-client-play {
	position: absolute;
	bottom: 18px;
	right: 18px;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 1rem;
	color: var(--color-white);
	background-color: var(--color-primary);
	transition: all 0.3s;
	border-radius: 50%;
}

.home-clients .block-client-play {
	width: 55px;
	height: 55px;
	font-size: 0.95rem;
}

/* .home-clients .block-client-play,
.story .block-client-play {
	color: var(--color-white);
	background-color: var(--color-primary);
} */

.block-client-text {
	padding-top: 20px;
	text-align: center;
}

.block-client-text strong {
	margin-bottom: 8px;
	display: block;
	font-size: 0.688rem;
	font-weight: 800;
	color: var(--color-primary);
	letter-spacing: 0.125rem;
	text-transform: uppercase;
}

.block-client-text h4 {
	margin-bottom: 15px;
	font-weight: 700;
}

.block-client-text p {
	margin-bottom: 23px;
}

.block-client-text .button.no-button {
	text-decoration: none;
}

.block-client:focus,
.block-client:hover {
	color: var(--color-black);
}

.block-client-image:hover .block-client-play,
.block-client-image:focus .block-client-play {
	color: var(--color-primary);
	background-color: var(--color-white);
}

/* .story .block-client-image:hover .block-client-play,
.story .block-client-image:focus .block-client-play {
	color: var(--color-primary);
	background-color: var(--color-white);
} */

.client-stories-container {
	display: grid;
	grid-gap: 20px;
	gap: 20px;
}

@media screen and (min-width: 768px) {
	.block-client-text {
		text-align: left;
	}

	.block-client.inner {
		display: flex;
		align-items: center;
	}

	.block-client.inner .block-client-image {
		width: 219px;
		height: 219px;
		flex: 0 0 auto;
	}

	.block-client.inner .block-client-play {
		font-size: 1rem;
		width: 37px;
		height: 37px;
	}

	.block-client.inner .block-client-text {
		margin-left: 50px;
		padding-top: 13px;
	}

	.block-client.inner .block-client-text h4 {
		margin-bottom: 5px;
		font-size: 1.5rem;
	}

	.block-client.inner .block-client-text p {
		margin-bottom: 15px;
	}

	.client-stories-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

/* BLOCK QUOTE */
.block-quote {
	padding: 34px 20px 40px 85px;
	position: relative;
	background-color: var(--color-green-10);
	overflow: hidden;
	min-height: 240px;
}

.block-quote:before {
	position: absolute;
	top: 18px;
	left: 14px;
	font-size: 8.5rem;
	color: var(--color-primary);
	line-height: 1;
	content: '“';
}

.block-quote p {
	margin-bottom: 13px;
}

.block-quote-row {
	display: flex;
	align-items: center;
}

.block-quote-image {
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
}

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

.block-quote-row span {
	margin-left: 10px;
	display: block;
}

.block-quote.yellow {
	background-color: rgba(251, 188, 2, 0.2);
}

.block-quote.blue {
	background-color: var(--color-sky-blue);
}

@media screen and (min-width: 768px) {
	.block-quote {
		line-height: 1.55;
		min-height: 194px;
	}
}

@media screen and (min-width: 1025px) {
	.block-quote {
		padding: 40px 35px 37px 100px;
		font-size: 1rem;
	}

	.block-quote:before {
		top: 25px;
		left: 32px;
	}
}

/* RESULT */
.results {
	padding-top: 38px;
	text-align: center;
	padding-bottom: 44px;
	color: var(--color-white);
	background-color: var(--color-primary);
}

.results h2 .subtitle {
	color: var(--color-white);
}

.results-item {
	margin: 0 auto 10px;
	padding-bottom: 20px;
	max-width: 186px;
	font-size: 2.5rem;
	font-weight: 700;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.results-item:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
	border-right: 0;
	border-bottom: 0;
}

.results-item strong {
	display: block;
	font-weight: 600;
	font-size: 1rem;
	text-transform: uppercase;
}

.results-inner {
	padding-top: 38px;
	padding-bottom: 44px;
	background-color: var(--color-primary);
}

.results.inner {
	margin: 0 -20px;
	padding-top: 0;
	padding-bottom: 0;
	width: calc(100% + 40px);
	background-color: transparent;
}

@media screen and (min-width: 768px) {
	.results {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.results-holder {
		display: flex;
	}

	.results-item {
		margin: 0;
		padding: 0 10px 5px;
		max-width: 100%;
		flex: 1 auto;
		border-right: 1px solid rgba(255, 255, 255, 0.5);
		border-bottom: 0;
	}

	.results.inner {
		margin: 0;
		width: 100%;
	}

	.results-inner {
		padding-top: 35px;
		padding-bottom: 35px;
	}
}

/* CARD-RECOVER */
.block-media-title {
	margin-bottom: 13px;
	display: flex;
	flex-direction: column;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-black);
	text-decoration: none;
	line-height: 1.25;
	transition: all 0.3s;
}

/* .block-media-title:hover,
.block-media-title:focus {
    color: var(--color-primary);
} */

.block-media-image {
	display: block;
	position: relative;
}

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

.block-media-play {
	position: absolute;
	right: 15px;
	bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 1rem;
	color: var(--color-primary);
	border-radius: 40px;
	background-color: var(--color-white);
	text-decoration: none;
	transition: all 0.3s;
}

.block-media-image:focus .block-media-play,
.block-media-image:hover .block-media-play {
	color: var(--color-white);
	background-color: var(--color-primary);
}

.block-media-text {
	padding-top: 15px;
	line-height: 1.55;
}

.block-media-text p {
	margin-bottom: 13px;
}

@media screen and (min-width: 768px) {
	.block-media-title {
		min-height: 60px;
	}

	.block-media-text p {
		margin-bottom: 30px;
	}
}

/* TESTIMONIAL */
.testimonials {
	padding-top: 34px;
	padding-bottom: 37px;
	text-align: center;
	background-color: var(--color-gray-100);
	position: relative;
}

.single-practices .testimonials .column {
	padding: 0;
}

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

.testimonials h2 strong {
	margin-bottom: 9px;
}

.testimonials .button {
	width: 100%;
	margin-top: 15px;
}

.testimonials-slider {
	position: relative;
}

.testimonials-slider .swiper-slide {
	height: auto;
	background: #fff;
}

.testimonials .testimonials-arrow-prev {
	left: -20px;
}

.testimonials .testimonials-arrow-next {
	right: -20px;
}

.testimonials.inner {
	padding-top: 0;
	padding-bottom: 35px;
	background-color: var(--color-white);
}

.testimonials.inner .swiper-slide,
.testimonials.inner .block-testimonial {
	background-color: var(--color-gray-100);
}

.testimonials.is-border:after {
	position: absolute;
	bottom: 5px;
	left: 20px;
	width: calc(100% - 40px);
	height: 1px;
	background-color: var(--color-purple);
	content: '';
	pointer-events: none;
}

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

	.testimonials h2 {
		margin-bottom: 38px;
	}

	.testimonials .button {
		width: auto;
		margin-top: 37px;
	}

	.testimonials.inner {
		padding-top: 39px;
	}

	.testimonials.is-border {
		margin-bottom: 56px;
	}

	.testimonials.is-border:after {
		bottom: -33px;
	}

	.single-practices .testimonials .column {
		padding: 0 var(--gutter-size);
	}
}

@media screen and (min-width: 1200px) {
	.testimonials .testimonials-arrow-prev {
		left: -74px;
	}

	.testimonials .testimonials-arrow-next {
		right: -74px;
	}

	.testimonials.is-border:after {
		left: 50%;
		width: 1043px;
		transform: translateX(-50%);
	}
}

/* BLOCK TESTIMONIAL */
.block-testimonial {
	padding: 23px 40px 30px;
	text-align: left;
	background-color: var(--color-white);
}

.block-testimonial-row {
	display: flex;
	justify-content: space-between;
}

.block-testimonial-holder {
	margin-right: 15px;
	margin-bottom: 5px;
	display: flex;
}

.block-testimonial-image {
	margin-top: 2px;
	width: 41px;
	height: 42px;
	flex: 0 0 auto;
}

.block-testimonial-image span {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	width: 41px;
	height: 42px;
	font-weight: 700;
	font-size: 1.2rem;
	background-color: var(--color-primary);
	border-radius: 50%;
	color: #fff;
}

.block-testimonial-name {
	margin-left: 11px;
	font-size: 1.25rem;
	line-height: 1.38;
}

.block-testimonial-name span {
	display: block;
	font-size: 0.813rem;
	color: var(--color-green);
}

.block-testimonial-icon {
	margin-top: 7px;
}

.block-testimonial ul {
	margin-bottom: 8px;
	display: flex;
}

.block-testimonial li {
	margin-right: 4px;
	font-size: 1.125rem;
	color: var(--color-primary);
}

.block-testimonial li:last-of-type {
	margin-right: 0;
}

.block-testimonial p {
	line-height: 1.55;
}

.block-testimonial p:last-of-type {
	margin-bottom: 0;
}

@media screen and (min-width: 768px) {
	.block-testimonial {
		padding: 40px 40px 45px;
	}
}
