/**
 * ***************************************
 *
 * @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: 60px;
}

.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-text a {
	font-weight: 600;
	position: relative;
}

.content-text a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	z-index: -1;
	background-color: var(--color-primary);
	transition: all 200ms ease-out;
}

.content-text a:hover:after {
	height: 100%;
}

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

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

ul.has-before li,
.content li {
	padding: 0 0 0 20px;
	position: relative;
}

.content ol li {
	padding-left: 0;
}

.content ul li::before,
ul.has-before li::before {
	top: 13px;
	width: 5px;
	height: 5px;
	position: absolute;
	left: 0;
	content: '';
	background-color: var(--color-black);
}

ul.has-before li:before,
.content ul li:before,
.sidebar-block ul li:before {
	font-family: var(--font-family-icon);
}

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

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

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

figure {
	margin: 0;
}

.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%;
	font-weight: 500;
	padding: 40px 36px;
	font-size: 1.063rem;
	background-color: var(--color-secondary);
}

.sidebar-block h2 {
	font-size: var(--font-size-h3);
}

.sidebar-block ul li {
	position: relative;
	padding: 0 18px 8px 0;
	border-bottom: 1px solid var(--color-gray);
}

.sidebar-block ul li:not(:last-child) {
	margin-bottom: 8px;
}

.sidebar-block ul li:before {
	position: absolute;
	top: 0;
	right: 0;
	font-weight: bold;
	content: '\f061';
}

.sidebar-block ul li,
.sidebar-block ul li a {
	display: block;
}

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

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

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

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

@media screen and (min-width: 768px) {
	.content ul li::before,
	ul.has-before li::before {
		top: 15px;
	}
}

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

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--color-black);
}

select {
	border-bottom: none;
}

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

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

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

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

form legend,
form label,
form p {
	font-size: 0.875rem;
}

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

label {
	transition: all 200ms ease-out;
}

input:not([type='checkbox']):not([type='radio']) ~ label,
textarea ~ label,
select ~ label {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	line-height: 1.2;
	pointer-events: none;
	padding: 17px 13px;
	font-weight: 500;
}

input ~ label i,
textarea ~ label i,
select ~ label i {
	margin-right: 11px;
}

input:focus:not([type='checkbox']):not([type='radio']) ~ label,
textarea:focus ~ label,
input.active:not([type='checkbox']):not([type='radio']) ~ label,
textarea.active ~ label,
select.active ~ label {
	padding: 8px 13px 5px;
	font-size: 0.6rem;
}

textarea:focus ~ label,
textarea.active ~ label {
	opacity: 0;
}

input[type='checkbox'] ~ label,
input[type='radio'] ~ label {
	font-size: 0.85rem;
	padding: 0;
}

.gchoice {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	grid-gap: 10px;
	gap: 10px;
}

.gchoice input {
	width: auto;
}

br:has(+ .gchoice_other_control) {
	display: none;
}

.gchoice .gchoice_other_control {
	line-height: 22px;
	padding: 0 8px;
	border-width: 1px;
}

.gchoice .gchoice_other_control[disabled] {
	display: none;
}

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

.gfield textarea,
.gfield input {
	padding-top: 19px;
	padding-bottom: 7px;
}

.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: #000;
	pointer-events: none;
	transition: all 200ms ease-out;
}

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

.select-wrapper select {
	height: 45px;
	line-height: 45px;
	padding: 0 50px 0 20px;
	border: 2px solid var(--color-black);
}

.form-container {
	width: 100%;
}

.form-container h2 {
	text-align: center;
	font-size: 1.875rem;
}

.background-input input:focus:not([type='checkbox']) ~ label,
.background-input textarea:focus ~ label,
.background-input input.active ~ label,
.background-input textarea.active ~ label,
.background-input select.active ~ label {
	color: var(--color-primary);
}

.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;
}

/* GENERAL > Gravity Forms Customizations */
.gform_footer {
}

.gform_footer .gform_button {
	width: 100%;
	border-radius: 5px;
	text-transform: uppercase;
}

.gform_submission_error {
	font-size: 1rem;
}

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

.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 {
	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;
}

@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: 0;
	background-color: var(--color-black);
	overflow: auto;
}

#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;
}

#mobile-navigation {
	width: 100%;
	height: 100vh;
}

.mobile-navigation-top-inner {
	align-items: flex-start;
	padding: 20px 15px;
	background: var(--color-black);
	justify-content: flex-end;
	display: none;
}

.mobile-navigation-top-inner img {
	max-width: 70%;
	height: auto;
}

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

#mobile-navigation #menu-main-navigation {
	padding: 30px 40px 40px;
}

#mobile-navigation > ul {
	padding: 0 35px;
}

#mobile-navigation ul {
	margin: 0;
}

#mobile-navigation ul li a {
	color: var(--color-white);
	font-size: 1.25rem;
	display: flex;
	font-weight: 600;
	align-items: center;
	justify-content: space-between;
	padding: 16px 15px;
}

#mobile-navigation ul li {
	padding: 0;
	position: relative;
	display: block;
	width: 100%;
	border-bottom: 1px solid color-mix(in srgb, var(--color-gray) 30%, transparent);
}

#mobile-navigation ul li:first-child {
	border-top: 1px solid color-mix(in srgb, var(--color-gray) 30%, transparent);
}

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

.mobile-menu-accordion #mobile-navigation .sub-menu a {
	padding: 10px 15px;
	font-size: 1rem;
	color: var(--color-white);
	line-height: 1.2;
}

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

#mobile-navigation .sub-menu {
	margin: 0;
	background-color: var(--color-black);
	z-index: 1;
	overflow: auto;
	display: none;
	padding-top: 20px;
	padding-bottom: 20px;
	width: 100%;
	-webkit-animation-fill-mode: both;
	border-top: 1px solid color-mix(in srgb, var(--color-gray) 30%, transparent);
	animation-fill-mode: both;
}

#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;
	color: var(--color-primary);
	font-size: 1.25rem;
}

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

.mobile-navigation-close {
	width: 45px;
	min-width: 45px;
	padding: 0;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	background: var(--color-primary);
	color: var(--color-black);
	font-size: 1.063rem;
	margin-left: 20px;
}

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

.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 {
	z-index: 1;
	position: relative;
	width: 100%;
}

.footer-logo {
	display: block;
	width: 248px;
	margin-bottom: 20px;
}

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

.footer-link {
	margin-bottom: 10px;
}

.footer-link i {
	position: absolute;
	top: 8px;
	left: 0;
	font-size: 0.875rem;
}

.footer-link a:after {
	width: 0;
	position: absolute;
	bottom: 0;
	left: -5px;
	content: '';
	height: 100%;
	z-index: -1;
	background: var(--color-primary);
	transition: all 0.6s;
}

.footer-link a:hover:after {
	width: calc(100% + 10px);
}

.footer-link a {
	font-size: 1.125rem;
	position: relative;
	padding-left: 25px;
	display: inline-block;
}

.footer-left {
	width: 248px;
	margin: 0 auto 30px;
}

.footer-address {
	width: 100%;
}

.footer-address i {
	position: absolute;
	top: 4px;
	left: 0;
	font-size: 0.875rem;
}

.footer-address address {
	width: 100%;
	position: relative;
	padding-left: 25px;
	font-size: 1.125rem;
	line-height: 1.45;
	margin-bottom: 15px;
}

.footer-address address::before {
	content: '\f041';
	position: absolute;
	top: 4px;
	left: 0;
	font-size: 0.875rem;
	font-family: 'Font Awesome 6 Pro';
	font-weight: 900;
}

.footer-upper {
	width: 100%;
	padding-bottom: 50px;
}

.footer-lower-disclaimer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	font-size: 0.875rem;
	font-weight: 500;
	text-align: center;
	max-width: 334px;
	margin: 0 auto;
}

.footer-lower-disclaimer li {
	position: relative;
	line-height: 2;
}

.footer-lower-disclaimer li:after {
	content: '|';
	margin: 0 4px;
}

.footer-lower-disclaimer li:first-child {
	width: 100%;
	padding-right: 0;
}

.footer-lower-disclaimer li:first-child:after,
.footer-lower-disclaimer li:last-child:after {
	display: none;
}

.footer-lower span {
	position: relative;
	font-size: 0.7rem;
	text-transform: uppercase;
}

.footer-lower {
	width: 100%;
	padding: 30px 0;
	border-top: 2px solid var(--color-black);
}

.footer-social li {
	margin-left: 10px;
}

.footer-social li:first-child {
	margin-left: 0;
}

.footer-social li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 1.125rem;
	color: var(--color-black);
	border: 1px solid var(--color-black);
	border-radius: 7px;
}

.footer-lower-disclaimer li a:after {
	height: 2px;
	content: '';
	position: absolute;
	bottom: 1px;
	right: 0;
	width: 100%;
	background: var(--color-primary);
	transition: all 0.6s;
}

.footer-lower-disclaimer li a:hover:after {
	width: 0;
}

.footer-lower-disclaimer li a {
	position: relative;
	display: inline-block;
}

.footer-social li a:hover {
	color: var(--color-white);
	background: var(--color-black);
}

.footer-social {
	display: inline-flex;
	margin: 0 0 10px;
	justify-content: center;
	width: 100%;
}

@media screen and (min-width: 540px) {
	.footer-lower-disclaimer {
		max-width: none;
	}
}

@media screen and (min-width: 768px) {
	.footer-upper {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}

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

	.footer-left {
		width: 46%;
		margin: 0;
	}

	.footer-right {
		width: 362px;
	}

	.footer-right h2 {
		text-align: left;
	}

	.footer-lower-inner {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.footer-lower-disclaimer {
		flex: 1;
		justify-content: flex-start;
		max-width: 700px;
		margin: 0;
		text-align: left;
	}

	.footer-lower-disclaimer li:first-child,
	.footer-lower-disclaimer li:last-child {
		width: auto;
	}

	.footer-social {
		width: auto;
		order: 1;
		margin-bottom: 0;
		margin-left: 10px;
		justify-content: flex-start;
	}
}

@media screen and (min-width: 1025px) {
	.footer-logo {
		width: 298px;
		margin-bottom: 25px;
	}

	.footer-address {
		display: flex;
		flex-wrap: wrap;
	}

	.footer-address address {
		width: 50%;
	}
}

/* @media screen and (min-width: 1100px) {
	.footer-lower-disclaimer {
		max-width: none;
	}

	.footer-lower-disclaimer li:first-child {
		margin-right: 5px;
	}
} */

/*******************************************************************************************
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: 35px;
}

.breadcrumbs-single {
	position: relative;
	text-decoration: none;
	/* padding-right: 20px;
	margin-right: 20px; */
}

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

.breadcrumbs-single + i {
	line-height: 35px;
	margin: 0 20px;
}

/* .breadcrumbs-single::after {
	position: absolute;
	right: -4px;
	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-alt);
}

.accordion-item:first-child {
	border-top: 1px solid var(--color-gray-alt);
}

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

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

.accordion-item-title:after {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.875rem;
	line-height: 30px;
	text-align: center;
	color: var(--color-body-text);
	content: '+';
	border-radius: 50%;
	background-color: var(--color-primary);
}

.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-body-text);
	background: transparent;
}

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

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

.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;
	background: var(--color-white);
	border-radius: 10px;
	padding: 25px;
	display: block;
	border: 1px solid var(--color-border);
}

blockquote:before,
.quote-single:before {
	content: '';
	width: 75px;
	height: 64px;
	z-index: 1;
	display: block;
	margin-bottom: 15px;
	background: url('./images/quote.svg') no-repeat center center;
	background-size: 75px;
}

@media screen and (min-width: 1025px) {
	blockquote,
	.quote-single {
		padding: 50px;
	}

	blockquote:before,
	.quote-single:before {
		width: 95px;
		height: 74px;
		background-size: 95px;
		margin-bottom: 25px;
	}
}

@media screen and (min-width: 1200px) {
	blockquote,
	.quote-single {
		padding: 75px 80px 80px;
	}
}

/* FEATURES > Quote Rext */
.quote-text {
	background: var(--color-secondary);
	padding: 25px;
}

.quote-text-title strong {
	font-weight: 600;
	position: relative;
	z-index: 1;
	display: inline-block;
}

.quote-text-title strong:after {
	position: absolute;
	top: 5px;
	content: '';
	z-index: -1;
	left: -10px;
	width: 0;
	height: calc(100% - 10px);
	background: url('./images/hover-bg.svg') left center no-repeat;
	background-size: 100% 100%;
	animation: title-reveal 1200ms linear forwards;
	animation-delay: 0.2s;
}

.quote-text-title {
	font-size: 1.625rem;
}

@keyframes title-reveal {
	0% {
		width: 0;
	}

	100% {
		width: calc(100% + 20px);
	}
}

@media screen and (min-width: 1025px) {
	.quote-text {
		padding: 50px;
	}
}

@media screen and (min-width: 1200px) {
	.quote-text {
		padding: 80px;
	}
}

/* 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.23%;
	/* Use 75% for 4:3 videos */
	height: 0;
	max-width: 100%;
	background: var(--color-black);
	margin: 20px 0 50px;
}

.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 {
	content: '\f144';
	font-family: 'Font Awesome 6 Pro';
	font-size: 3.5rem;
	opacity: 0.8;
	display: inline-block;
	margin: 0 auto;
	transition: all 150ms ease-out;
	color: var(--color-alternate);
	pointer-events: none;
	z-index: 1;
}

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

.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;
}

/* FEATURES > Social Link Lists */
.social-links {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	grid-gap: 10px;
	gap: 10px;
}

.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::before,
.social-links a::after {
	display: none;
}

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

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

/* 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;
	}
}

/* USPS BLOCKS */
.usps {
	width: 100%;
	position: relative;
}

.usps-block h5 {
	font-size: 1.25rem;
	font-weight: 600;
}

.usps-block {
	border-radius: 20px;
	width: 100%;
	padding: 30px 20px 100px;
	min-height: 263px;
	position: relative;
	margin-bottom: 16px;
	border: 2px solid var(--color-primary);
}

.usps-link:after {
	content: '+';
}

.usps-link {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	font-size: 1.875rem;
	background: var(--color-primary);
	text-decoration: none;
	color: var(--color-black);
	border-radius: 50%;
	width: 42px;
	height: 42px;
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
	transition: all 300ms ease-out;
}

.usps-block.is-active .usps-link {
	background: var(--color-white);
	color: var(--color-black);
}

.usps-block.is-active .usps-link:after {
	content: '-';
}

.usps-block .usps-panel {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
	font-size: 1rem;
}

.usps-block.is-active .usps-panel {
	max-height: 500px; /* Adjust this value based on your content height */
	opacity: 1;
}

.usps-block.is-active {
	background: var(--color-primary);
}

@media screen and (min-width: 768px) {
	.usps {
		display: grid;
		grid-gap: 32px;
		align-items: flex-start;
		grid-template-columns: repeat(2, 1fr);
	}

	.usps-block {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 1025px) {
	.usps {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media screen and (min-width: 1441px) {
	.usps-link {
		bottom: 40px;
	}

	.usps-block {
		padding: 30px 20px 100px;
		min-height: 320px;
	}

	.usps-block h5 {
		padding: 0 40px;
	}
}

/* INTRO SECTION */
.intro {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid var(--color-black);
	padding-top: 30px;
}

.intro-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.intro-image {
	width: calc(100% + 60px);
	margin: 0 -30px 30px;
	overflow: hidden;
	position: relative;
}

.intro-content {
	width: 100%;
}

.intro-content strong {
	font-weight: 500;
}

.intro-bottom strong {
	font-weight: 600;
}

.intro-bottom {
	padding-top: 30px;
	text-align: center;
	width: 100%;
}

@media screen and (min-width: 768px) {
	.intro-image {
		width: 40%;
		margin: 0;
		border-radius: 10px;
	}

	.intro-content {
		width: 60%;
		padding-left: 30px;
	}
}

@media screen and (min-width: 1025px) {
	.intro-image {
		width: 30%;
	}

	.intro {
		border-top: 2px solid var(--color-black);
		padding-top: 40px;
	}

	.intro-content {
		width: 70%;
		padding-left: 55px;
	}
}

/* EXPERTS SECTION */
.experts {
	width: 100%;
	position: relative;
	text-align: center;
}

/* .experts-image svg {
	width: 100%;
	display: block;
}

.experts-image .path-1 {
	transition-delay: 0.4s;
}

.experts-image .path-2 {
	transition-delay: 0.8s;
}

.experts-image .path-3 {
	transition-delay: 1.2s;
}

.experts-image .path-4 {
	transition-delay: 1.6s;
}

.experts-image .path-5 {
	transition-delay: 2s;
}

.experts-image path {
	opacity: 0;
	transition: all 0.8s ease-in-out;
}

.experts-image.animated path {
	opacity: 1;
} */

.experts .button {
	text-transform: uppercase;
}

.experts-image {
	/* width: 290px; */
	margin: 0 auto 30px;
	overflow: hidden;
	position: relative;
	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;
}

.experts-content {
	width: 100%;
}

.experts-title:after {
	content: '\f061';
	font-size: 1.875rem;
	margin-top: 12px;
	display: block;
	transform: rotate(90deg);
	font-family: var(--font-family-icon), sans-serif;
}

.animate-circle canvas {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 105%;
	height: 105%;
	pointer-events: none;
}

.experts-image .inner-circle {
	position: absolute;
	width: 75%;
	height: 75%;
}

.experts-image .circle-text {
	position: absolute;
	transform: translate(-50%, -50%);
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
	white-space: nowrap;
}

.circle-text.text-1 {
	top: 9.4%;
	left: 20.6%;
}

.circle-text.text-2 {
	top: 9.4%;
	left: 80.6%;
}

.circle-text.text-3 {
	top: 63%;
	left: 98%;
}

.circle-text.text-4 {
	top: 98%;
	left: 50%;
}

.circle-text.text-5 {
	top: 63%;
	left: 2%;
}

@media screen and (min-width: 500px) {
	.experts-image .circle-text {
		font-size: 18px;
	}
}

@media screen and (min-width: 768px) {
	.experts-title:after {
		content: '\f061';
		margin-left: 12px;
		transform: none;
		display: inline-block;
	}

	.experts {
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
		text-align: left;
	}

	.experts-image {
		width: 46.5%;
		margin: 0;
		border-radius: 10px;
	}

	.experts-content {
		width: 53.5%;
		padding-top: 120px;
	}

	.experts-image .circle-text {
		font-size: 13px;
	}
}

@media screen and (min-width: 1025px) {
	.experts-image .circle-text {
		font-size: 18px;
	}
}

/* KNOWLEDGE */
.knowledge {
	width: 100%;
	position: relative;
}

.knowledge h3,
.knowledge-content h2 {
	margin-bottom: 8px;
}

.knowledge h3 strong:after {
	content: '';
	width: 0;
	transition: all 2s ease-in-out;
	height: 5px;
	position: absolute;
	bottom: -5px;
	left: 0;
	background: var(--color-primary);
}

.knowledge h3.animated strong:after {
	width: 100%;
}

.knowledge h3 strong {
	position: relative;
	font-weight: 600;
	display: inline-block;
}

.knowledge-content {
	max-width: 800px;
	text-align: center;
	margin: 0 auto;
}

.knowledge-item {
	width: 100%;
	margin-bottom: 30px;
	text-align: center;
}

.knowledge-content + .knowledge-list {
	margin-top: 30px;
}

@media screen and (min-width: 768px) {
	.knowledge-item {
		text-align: left;
		margin-bottom: 0;
	}

	.knowledge-list {
		display: grid;
		grid-gap: 30px;
		grid-template-columns: repeat(2, 1fr);
	}

	.knowledge-content + .knowledge-list {
		margin-top: 60px;
	}
}

@media screen and (min-width: 1025px) {
	.knowledge-list {
		grid-gap: 80px 60px;
	}

	.knowledge-content + .knowledge-list {
		margin-top: 80px;
	}
}

/* SERVICES SECTION */
.services {
	width: 100%;
	position: relative;
}

.services-title h2 {
	font-size: 2.25rem;
	margin-bottom: 28px;
	text-align: center;
}

@media screen and (min-width: 768px) {
	.services-title h2 {
		text-align: left;
	}

	.services-list {
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 1025px) {
	.services-title h2 {
		font-size: var(--font-size-h1);
	}

	.services-list {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media screen and (min-width: 1441px) {
	.services-list {
		grid-gap: 30px;
	}
}

/* SERVICE BLOCk */
.service-block {
	width: 100%;
	display: block;
	overflow: hidden;
	position: relative;
	border-radius: 10px;
	margin-bottom: 20px;
	border: 2px solid var(--color-primary);
}

.service-block:hover,
.service-block:focus {
	background: var(--color-primary);
}

.service-block-title:after {
	content: '\f061';
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--color-primary);
	position: absolute;
	top: 50%;
	transition: all 0.3s;
	right: 20px;
	transform: translateY(-50%);
	font-size: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-black);
	text-align: center;
	font-family: var(--font-family-icon), sans-serif;
}

.service-block-title {
	/* position: absolute; */
	position: relative;
	bottom: 0;
	left: 0;
	width: 100%;
	color: #000;
	font-size: 1.063rem;
	z-index: 3;
	transition: all 0.3s;
	line-height: 1.2;
	font-weight: 600;
	padding: 30px 70px 30px 15px;
}

/* .service-block-img img {
	width: 100%;
} */

.service-block-img {
	width: 100%;
	position: relative;
	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;
	padding: 80px 0 60px;
}

.service-block-img img {
	width: auto;
}

/* .service-block-img:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%);
} */

/* .service-block:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 3;
	transition: all 0.3s;
	background: var(--color-primary);
} */

.service-block:hover .service-block-title:after {
	background: var(--color-white);
}

.service-block:hover .service-block-title {
	color: var(--color-black);
}

.service-block:hover:before {
	opacity: 1;
}

@media screen and (min-width: 768px) {
	.service-block {
		margin-bottom: 0;
	}
}

/* WORK SECTION */
.work {
	width: 100%;
	z-index: 3;
	position: relative;
}

.work h2 {
	font-size: 2.188rem;
}

.work.animated h3 strong:after {
	width: 100%;
}

.work h3 strong:after {
	content: '';
	width: 0;
	transition: all 2s ease-in-out;
	height: 5px;
	position: absolute;
	bottom: 3px;
	left: 0;
	z-index: -1;
	background: var(--color-primary);
}

.work h3 strong {
	font-weight: 600;
	position: relative;
	display: inline-block;
}

.work h3 {
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 1.5;
	margin-bottom: 40px;
}

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

.work-item:nth-child(1) .card-work {
	border-top: 1px solid var(--color-gray-alt);
}

.work-item .card-work {
	border-bottom: 1px solid var(--color-gray-alt);
}

.work-image {
	position: relative;
	overflow: hidden;
	width: calc(100% + 60px);
	margin: 0 -30px 30px;
}

.work-content {
	margin-bottom: 30px;
}

.work.work-alt h3 {
	font-weight: 600;
}

@media screen and (min-width: 768px) {
	.work-image {
		width: 47.5%;
		border-radius: 10px;
		margin: 70px 0 0;
	}

	.work-content {
		width: 48%;
	}

	.work-inner {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		flex-direction: row-reverse;
		width: 100%;
		justify-content: space-between;
	}
}

@media screen and (min-width: 1025px) {
	.work-list {
		display: flex;
		flex-wrap: wrap;
		width: calc(100% + 30px);
		margin: 0 -15px;
	}

	.work h3 {
		font-size: 1.625rem;
		margin-bottom: 60px;
	}

	.work.work-alt .work-list .work-item {
		width: 100%;
		padding: 0;
	}

	.work.work-alt .work-list {
		display: block;
		max-width: 720px;
		margin: 40px auto 0;
	}

	.work-item:nth-child(2) .card-work {
		border-top: 1px solid var(--color-gray-alt);
	}

	.work.work-alt .work-item:nth-child(2) .card-work {
		border-top: 0;
	}

	.work-item {
		width: 50%;
		padding: 0 30px;
	}

	.work-content {
		margin-bottom: 45px;
	}

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

@media screen and (min-width: 1280px) {
	.work-list {
		width: calc(100% + 40px);
		margin: 0 -20px;
	}

	.work-item {
		padding: 0 20px;
	}
}

/* TEXT-BLOCK */
.text-block {
	width: 100%;
	position: relative;
	margin: auto;
	z-index: 4;
	max-width: 860px;
}

.text-block strong {
	font-weight: 600;
}

.text-block h3 strong:after {
	content: '';
	width: 0;
	transition: all 2s ease-in-out;
	height: 5px;
	position: absolute;
	bottom: -5px;
	left: 0;
	background: var(--color-primary);
}

.text-block.animated h3 strong:after {
	width: 100%;
}

.text-block h3 strong {
	position: relative;
	display: inline-block;
}

.text-block p {
	max-width: 805px;
	margin-left: auto;
	margin-right: auto;
}

.text-block h3 {
	line-height: 1.5;
}

@media screen and (min-width: 1025px) {
	.text-block h3 {
		padding-bottom: 15px;
	}
}

/* INFO */
.info {
	width: 100%;
	position: relative;
	z-index: 4;
}

.info-inner p {
	margin-bottom: 15px;
}

.info-inner p strong {
	font-weight: 600;
}

.info-inner {
	width: 100%;
}

.info-list {
	margin: -12px 0 0;
}

.info-list li {
	display: block;
	border-bottom: 1px solid var(--color-gray);
}

.info-list li a:after {
	content: '\f061';
	position: absolute;
	top: 50%;
	font-weight: 700;
	transform: translateY(-50%);
	right: 0;
	font-family: var(--font-family-icon), sans-serif;
}

.info-list li a:hover {
	font-weight: 700;
}

.info-list li a {
	display: block;
	font-size: 1.063rem;
	line-height: 1.4;
	font-weight: 500;
	padding: 11px 20px 11px 0;
}

@media screen and (min-width: 768px) {
	.info-inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.info-left {
		width: 70%;
	}

	.info-right {
		width: 30%;
	}
}

@media screen and (min-width: 1025px) {
	.info-left {
		width: 65%;
	}

	.info-right {
		width: 30%;
	}
}

/* TEXT-BLOCK */
.text-image {
	width: 100%;
	text-align: center;
	position: relative;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--color-black);
}

.text-image-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.text-image-image {
	width: 100%;
	margin-bottom: 30px;
	overflow: hidden;
	position: relative;
	border-radius: 10px;
}

.text-image-content h5 {
	font-size: 1.5rem;
	line-height: 1.5;
}

.text-image-button {
	margin-top: 30px;
	text-align: center;
	width: 100%;
}

@media screen and (min-width: 768px) {
	.text-image {
		display: flex;
		flex-wrap: wrap;
		text-align: left;
		padding-bottom: 80px;
	}

	.text-image-image {
		width: 300px;
		margin: 0;
	}

	.text-image-content {
		width: calc(100% - 300px);
		padding-left: 30px;
	}
}

@media screen and (min-width: 1025px) {
	.text-image-content h5 {
		font-size: 1.625rem;
	}

	.text-image-button {
		margin-top: 40px;
	}

	.text-image-content {
		padding-left: 55px;
	}
}

/* CLAIMS */
.claims {
	width: 100%;
	position: relative;
}

.claims h3:after {
	content: '\f061';
	margin-top: 12px;
	display: block;
	transform: rotate(90deg);
	font-family: var(--font-family-icon), sans-serif;
}

/* .claims-img .path-1 {
	transition-delay: 0.4s;
}

.claims-img .path-2 {
	transition-delay: 0.8s;
}

.claims-img .path-3 {
	transition-delay: 1.2s;
}

.claims-img svg {
	max-width: 100%;
	height: auto;
}

.claims-img path {
	opacity: 0;
	transition: all 0.8s ease-in-out;
}

.claims-img.animated path {
	opacity: 1;
} */

.claims-img {
	overflow: hidden;
	position: relative;
	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;
}

.claims h3 {
	margin-bottom: 30px;
	line-height: 1.5;
	font-size: 1.5rem;
}

.claims-item {
	margin-bottom: 30px;
}

.claims h2 {
	font-size: 2.25rem;
	margin-bottom: 30px;
}

.claims-text {
	font-style: italic;
	font-size: 0.938rem;
	font-weight: 500;
}

@media screen and (min-width: 768px) {
	.claims-list:not(.claims-subpage) .claims-item {
		width: 50%;
		padding: 0 30px;
	}

	.claims-list:not(.claims-subpage) {
		display: flex;
		flex-wrap: wrap;
	}
}

@media screen and (min-width: 1025px) {
	.claims h2 {
		font-size: 2.5rem;
		margin-bottom: 60px;
	}

	.claims h3 {
		font-size: 1.625rem;
	}

	.claims-subpage {
		display: flex;
		flex-wrap: wrap;
	}

	.claims-subpage .claims-item {
		width: 50%;
		padding: 0 30px;
	}
}

/* PLANS */
.plans {
	width: 100%;
	text-align: center;
	position: relative;
}

.plans.animated p strong:after {
	width: 100%;
}

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

.plans p strong:after {
	content: '';
	width: 0;
	height: 5px;
	position: absolute;
	bottom: 3px;
	left: 0;
	z-index: -1;
	transition: all 2s ease-in-out;
	background: var(--color-primary);
}

.plans h2 + p {
	max-width: 750px;
	margin: 0 auto;
}

.plans p strong {
	position: relative;
	font-weight: 600;
	display: inline-block;
}

.plans-item {
	margin-bottom: 20px;
}

.plans-list {
	margin: 40px 0 30px;
}

@media screen and (min-width: 768px) {
	.plans-list {
		width: calc(100% + 20px);
		display: flex;
		flex-wrap: wrap;
		margin: 50px -10px 35px;
		justify-content: center;
	}

	.plans-item {
		width: 33.333%;
		padding: 0 10px;
		margin-bottom: 0;
	}
}

@media screen and (min-width: 1025px) {
	.plans-item {
		width: 280px;
	}
}

/* SOLUTIONS */
.solutions {
	width: 100%;
	position: relative;
}

.solutions-left h2 {
	font-size: 2.25rem;
	margin-bottom: 28px;
	max-width: 300px;
}

.solutions-left strong {
	font-weight: 500;
}

.solutions-left {
	width: 100%;
	margin-bottom: 20px;
}

.solutions-right {
	position: absolute;
	top: 42px;
	right: 0;
	width: 80px;
}

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

@media screen and (min-width: 768px) {
	.solutions-left h2 {
		max-width: 100%;
	}

	.solutions-left {
		flex: 1;
		margin-bottom: 0;
	}

	.solutions-right {
		width: 44%;
		position: static;
		margin-left: 30px;
	}

	.solutions-right img {
		min-width: 600px;
	}

	.solutions {
		display: flex;
	}
}

@media screen and (min-width: 1025px) {
	.solutions-left h2 {
		font-size: var(--font-size-h1);
	}

	.solutions-right {
		margin-left: 50px;
	}
}

/* PARTNER */
.partner {
	width: 100%;
	padding-top: 40px;
	position: relative;
	border-top: 1px solid var(--color-black);
}

.partner-left h2 {
	font-size: 2.25rem;
}

.partner-item {
	margin-bottom: 20px;
}

.partner-top {
	margin-bottom: 30px;
}

.partner-bottom strong {
	font-weight: 600;
}

.partner-bottom {
	text-align: center;
	width: 100%;
	padding-top: 30px;
}

@media screen and (min-width: 768px) {
	.partner {
		padding-bottom: 50px;
		border-bottom: 1px solid var(--color-black);
	}

	.partner-left {
		width: 45%;
		padding-right: 20px;
	}

	.partner-right {
		width: 55%;
	}

	.partner-top {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		width: 100%;
	}

	.partner-list {
		display: flex;
		flex-wrap: wrap;
		width: calc(100% + 20px);
		margin: 0 -10px 0;
	}

	.partner-item.is-large {
		width: 100%;
	}

	.partner-item {
		width: 50%;
		padding: 0 10px;
	}
}

@media screen and (min-width: 1025px) {
	.partner {
		padding-top: 70px;
	}

	.partner-top {
		margin-bottom: 60px;
	}

	.partner-bottom {
		padding: 40px 60px 0;
	}

	.partner-list {
		display: flex;
		flex-wrap: wrap;
		width: calc(100% + 30px);
		margin: 0 -15px 0;
	}

	.partner-item.is-large {
		width: 50%;
	}

	.partner-item {
		width: 25%;
		padding: 0 15px;
	}

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

	.partner-left {
		width: 40%;
	}

	.partner-right {
		width: 60%;
	}
}

@media screen and (min-width: 1280px) {
	.partner-left {
		width: 35%;
	}

	.partner-right {
		width: 65%;
	}

	.partner-bottom {
		padding-top: 80px;
	}
}

/* IMAGE-TEXT */
.image-text {
	width: 100%;
	position: relative;
}

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

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

.image-text-image {
	position: relative;
	overflow: hidden;
	width: calc(100% + 60px);
	margin: 0 -30px 30px;
}

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

@media screen and (min-width: 768px) {
	.image-text-image {
		width: 48%;
		margin: 0;
		border-radius: 10px;
	}

	.image-text-content {
		width: 48%;
	}

	.image-text {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		width: 100%;
		justify-content: space-between;
	}
}

/* TESTIMONIAL */
.testimonial {
	width: 100%;
	position: relative;
	text-align: center;
	background: var(--color-white);
	border-radius: 10px;
	padding: 20px 20px 40px;
	border: 1px solid var(--color-border);
}

.testimonial h4 {
	font-size: 0.625rem;
	letter-spacing: 2px;
}

.testimonial h2 {
	font-size: 1.875rem;
}

.testimonial-slide:before {
	content: '';
	width: 75px;
	height: 64px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	background: url('./images/quote.svg') no-repeat center center;
	background-size: 75px;
}

.testimonial-right {
	position: relative;
	width: 100%;
}

.testimonial-slide p {
	padding-bottom: 10px;
}

.testimonial-slide {
	position: relative;
	padding-top: 85px;
}

.testimonial-arrow button:focus {
	outline: none;
}

.testimonial-left .button {
	text-transform: uppercase;
}

.testimonial-arrow button:nth-child(1) {
	margin-left: 0;
}

.testimonial-arrow button {
	position: relative;
	background: transparent;
	padding: 15px 0;
	font-size: 1.375rem;
	border: 0;
	color: var(--color-black);
	margin-left: 25px;
	cursor: pointer;
	transition: transform 200ms ease-out;
}

.testimonial-arrow button:hover,
.testimonial-arrow button:focus {
	transform: translate(-3px, -3px);
}

.testimonial-top {
	margin-bottom: 30px;
	width: 100%;
}

.testimonial-arrow {
	z-index: 2;
	width: 100%;
	justify-content: center;
	display: flex;
	margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
	.testimonial {
		display: flex;
		flex-wrap: wrap;
		text-align: left;
		padding: 30px;
	}

	.testimonial-slide:before {
		transform: none;
		left: 0;
	}

	.testimonial-arrow {
		position: absolute;
		width: auto;
		bottom: 0;
		right: 0;
		margin-bottom: 0;
		z-index: 2;
		display: flex;
		justify-content: flex-end;
	}

	.testimonial-left {
		width: 50%;
		padding-top: 25px;
		display: flex;
		padding-right: 20px;
		flex-wrap: wrap;
		align-content: space-between;
	}

	.testimonial-right {
		width: 50%;
	}
}

@media screen and (min-width: 1025px) {
	.testimonial {
		padding: 90px 75px 120px;
	}

	.testimonial h4 {
		font-size: 1.125rem;
		letter-spacing: 4px;
	}

	.testimonial-slide {
		padding-top: 105px;
	}

	.testimonial-slide:before {
		width: 95px;
		height: 74px;
		background-size: 95px;
	}

	.testimonial-left {
		padding-top: 45px;
		padding-right: 40px;
	}

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

@media screen and (min-width: 1920px) {
	.testimonial {
		padding: 90px 205px 120px;
	}
}

/* CARD-SERVICES */
.card-partner {
	border-radius: 20px;
	width: 100%;
	padding: 40px 25px 100px;
	height: 324px;
	position: relative;
	background: rgba(var(--color-primary-rgb), 0.2);
}

.card-partner-link:after {
	content: '+';
}

.card-partner h5 {
	font-size: 1.25rem;
	line-height: 1.4;
}

.card-partner-panel h5 {
	padding-right: 30px;
}

.card-partner h5 a:hover,
.card-partner h5 a:focus {
	text-decoration: underline;
}

.card-partner-panel {
	background: var(--color-primary);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 300ms ease-out;
	font-size: 1rem;
	border-radius: 20px;
	padding: 30px 40px;
}

.card-partner-inner {
	width: 100%;
	overflow-y: scroll;
	height: 100%;
	box-sizing: content-box;
	padding-right: 33px;
}

.card-partner-close {
	position: absolute;
	top: 25px;
	right: 25px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	padding: 0;
	color: var(--color-black);
	background: var(--color-white);
}

.card-partner-link {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	font-size: 1.875rem;
	background: var(--color-primary);
	text-decoration: none;
	color: var(--color-black);
	border-radius: 50%;
	width: 42px;
	height: 42px;
	position: absolute;
	bottom: 25px;
	left: 25px;
	transition: all 300ms ease-out;
}

.card-partner.is-active .card-partner-link {
	background: var(--color-white);
	color: var(--color-black);
}

.card-partner.is-active .card-partner-link:after {
	content: '-';
}

.card-partner.is-active .card-partner-panel {
	opacity: 1;
	visibility: visible;
}

.card-partner.is-active {
	background: var(--color-primary);
}

@media screen and (min-width: 1025px) {
	.card-partner-link {
		bottom: 50px;
	}
}

/* QUESTIONS */
.questions {
	width: 100%;
	display: block;
	overflow: hidden;
	position: relative;
}

.questions h3 {
	font-size: 1.5rem;
	line-height: 1.5;
}

.questions img {
	width: 284px;
	margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
	.questions img {
		float: right;
		margin-bottom: 0;
		margin-left: 30px;
	}
}

@media screen and (min-width: 1025px) {
	.questions img {
		width: 412px;
	}

	.questions h3 {
		font-size: 1.625rem;
	}
}

/* THINK-ABOUT */
.think-about {
	max-width: 1110px;
	margin: 0 auto;
}

.think-about h3.animated strong:after {
	width: calc(100% + 20px);
}

.think-about h3 strong:after {
	position: absolute;
	top: -5px;
	content: '';
	z-index: -1;
	left: -10px;
	width: 0;
	transition: all 2s ease-in-out;
	height: calc(100% + 10px);
	background: url('./images/hover-bg.svg') left center no-repeat;
	background-size: 100% 100%;
}

.think-about h3 strong {
	font-weight: 600;
	z-index: 1;
	display: inline-block;
	position: relative;
}

/* CARD-PLAN */
.card-plan {
	width: 100%;
	display: block;
	overflow: hidden;
	position: relative;
	border-radius: 10px;
	padding: 20px;
	border: 2px solid var(--color-primary);
}

.card-plan-img {
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-bottom: 10px;
}

.card-plan-button:after {
	content: '+';
}

.card-plan-button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	font-size: 1.875rem;
	background: var(--color-primary);
	text-decoration: none;
	color: var(--color-black);
	border-radius: 50%;
	width: 42px;
	height: 42px;
	position: relative;
	z-index: 2;
	margin: auto;
	transition: all 300ms ease-out;
}

.card-plan-panel h3 {
	margin-bottom: 10px;
}

.card-plan-panel {
	font-size: 1rem;
	line-height: 1.5;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	padding: 20px;
	background: var(--color-primary);
	transition: all 300ms ease-out;
}

.card-plan.is-active .card-plan-button:after {
	content: '-';
}

.card-plan.is-active .card-plan-button {
	background: var(--color-white);
	color: var(--color-black);
}

.card-plan.is-active .card-plan-panel {
	opacity: 1;
	visibility: visible;
}

@media screen and (min-width: 1025px) {
	.card-plan,
	.card-plan-panel {
		padding: 30px 25px 25px;
	}
}

/* CARD-WORK */
.card-work {
	width: 100%;
	color: var(--color-black);
	z-index: 3;
	display: block;
	position: relative;
	transition: all 0.3s;
	line-height: 1.2;
	font-weight: 600;
	padding: 20px 50px 20px 0;
}

.card-work:hover:after {
	background: var(--color-black);
	color: var(--color-primary);
}

.card-work:after {
	content: '\f061';
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--color-primary);
	position: absolute;
	top: 50%;
	transition: all 0.3s;
	right: 0;
	transform: translateY(-50%);
	font-size: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-black);
	text-align: center;
	font-family: var(--font-family-icon), sans-serif;
}

.image-active-zoom {
	overflow: hidden;
	position: relative;
}

.image-active-zoom.animated {
	animation: image-reveal-right 1200ms linear forwards;
}

@keyframes image-reveal-right {
	0% {
		clip-path: inset(0 100% 0 0);
		-webkit-clip-path: inset(0 100% 0 0);
	}

	100% {
		clip-path: inset(0 0 0 0);
		-webkit-clip-path: inset(0 0 0 0);
	}
}

/* BLOCKS */
.block-item {
	margin-bottom: 16px;
	background: var(--color-primary);
	border-radius: 20px;
	text-align: center;
	padding: 35px 20px;
	line-height: 1.45;
	border: 4px solid transparent;
}

.block-item.outline {
	border-color: var(--color-primary);
	background: transparent;
}

@media screen and (min-width: 768px) {
	.blocks-holder {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 16px;
	}
}

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