/**
 * ***************************************
 *
 * @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.2409                         */
/*******************************************/

/*
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: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

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

.flex-align-horizontal {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	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-size: cover;
	background-repeat: no-repeat;
}

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

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

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

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: 18px;
	position: absolute;
	left: 0;
	content: '';
	/* width: 4px; */
	/* height: 4px; */
	width: 6px;
	height: 6px;
	/* background-color: var(--color-primary); */
	background-color: #c13427;
}

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

hr,
.hr-after::after {
	background: var(--color-secondary);
	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: 60px;
}

.sidebar-block {
	width: 100%;
}

.sidebar-block h2 {
	font-weight: 500;
	font-size: 2.5rem;
}

.sidebar-block ul li {
	line-height: 1.4;
	position: relative;
	padding: 15px 0 20px 0;
	border-bottom: 3px solid var(--color-gray-alt);
}

.sidebar-block ul li::after {
	left: 0;
	content: '';
	position: absolute;
}

.sidebar-block ul li::after {
	width: 50%;
	height: 5px;
	top: calc(100% - 2px);
	background: linear-gradient(90deg, #ec4827 0%, #e82520 46.9%, #b21d19 100%);
	transition: all 0.5s ease-in-out;
}

.sidebar-block ul li:has(a:hover)::after,
.sidebar-block ul li:has(a:focus)::after,
.sidebar-block ul li:has(button:hover)::after,
.sidebar-block ul li:has(button:focus)::after {
	width: 100%;
}

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

.sidebar-block button.no-button,
.sidebar-block ul li a {
	color: var(--color-primary);
	text-decoration: none;
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: none;
	text-align: left;
	padding: 0;
	border: none;
	line-height: 1.4;
	letter-spacing: normal;
}

.sidebar-block button.no-button::after {
	display: none;
}

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

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

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

.sidebar-action {
	position: relative;
}

.sidebar-action u {
	position: relative;
	text-decoration: none;
}

.sidebar-action u:after {
	left: 0;
	bottom: 6px;
	width: 100%;
	height: 5px;
	content: '';
	display: block;
	position: absolute;
	background: var(--secondary-gradient);
}

.sidebar-action h2 {
	margin-bottom: 0;
	font-size: 2.188rem;
	font-weight: normal;
	color: var(--color-white);
}

.sidebar-action strong {
	display: block;
	font-weight: 500;
}

.sidebar-action h2 + .button {
	margin-top: 30px;
}

.sidebar-action-inner {
	z-index: 2;
	padding: 50px 30px;
	display: flex;
	min-height: 410px;
	text-align: center;
	position: relative;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.sidebar-action-image:after {
	opacity: 0.58;
}

/* GENERAL > Form and Inputs */
input,
select,
textarea {
	color: var(--color-white);
	background: none;
	border: 0;
	border-bottom: 1px solid var(--color-white);
	font-size: 1.063rem;
	line-height: 1.2;
	font-family: var(--font-family-body), sans-serif;
	box-shadow: none;
	margin: 0;
	width: 100%;
	border-radius: 0;
	padding: 18px 0;
}

select {
	border-bottom: none;
}

input,
select,
textarea {
	height: 62px;
}

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

textarea {
	resize: none;
	min-height: 133px;
}

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

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

legend,
label {
	font-size: 1.063rem;
	color: var(--color-white);
}

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

.gfield,
.form-input-group {
	display: block;
	position: relative;
	width: 100%;
	margin-bottom: 0;
	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%;
	border: 1px solid var(--color-border);
}

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

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

.select-wrapper select {
	cursor: pointer;
	padding-left: 20px;
	padding-right: 70px;
	color: var(--color-primary);
}

.form-container {
	padding: 30px;
	color: var(--color-white);
	background: var(--primmary-gradient);
}

.form-container h2 {
	color: inherit;
	font-weight: 500;
	margin-bottom: 5px;
}

.form-container-text {
	line-height: 1.4;
	font-weight: 500;
	text-align: center;
	font-size: 1.375rem;
	font-family: var(--font-family-heading), sans-serif;
}

.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 #ff0000 !important;
	box-shadow: 0 0 2px #ff0000 !important;
}

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

/* GENERAL > Gravity Forms Customizations */
.gform_wrapper .hidden_label .gfield_label {
	display: none;
}

.gform_footer {
	margin-top: 10px;
}

.gform_footer .gform_button {
	background: transparent;
	border-color: var(--color-white);
}

.gform_footer .gform_button:hover,
.gform_footer .gform_button:focus,
.gform_footer .gform_button:active {
	background: var(--color-white);
	color: var(--color-alternate);
}

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

.gform_submission_error,
h2.gform_submission_error,
.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: var(--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;
	}
}

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

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

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

.header-search-inner {
	display: flex;
	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: flex;
	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 15px;
	height: 45px;
	display: inline-flex;
	align-items: center;
}

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

#header-search-open {
	border: 0;
	padding: 0;
	font-size: 1.252rem;
	background: transparent;
}

#header-search-open:hover,
#header-search-open:focus {
	background: transparent;
}

@media screen and (min-width: 1400px) {
	.header-search.active {
		padding: 52px 0;
	}

	#header-search-open {
		border: 0;
		padding: 0;
		font-size: 1.852rem;
		background: transparent;
	}
}

/*******************************************************************************************
FOOTER - Page bottom
*******************************************************************************************/
.footer {
	padding: 50px 0;
}

.footer > .row-wide {
	max-width: 100%;
}

.footer-inner {
	width: 100%;
}

.footer-logo img {
	width: 100%;
	max-width: 340px;
}

.footer-logo {
	display: block;
	margin: 0 auto 30px;
	max-width: 220px;
}

.footer-right ul {
	margin: 20px 0 0;
	padding: 0;
	justify-content: center;
}

.footer-right li {
	margin: 0 0 5px;
	width: 100%;
}

.footer-right li a {
	color: var(--color-gray-400);
}

.footer-right li a:focus,
.footer-right li a:hover {
	color: var(--color-primary);
	text-decoration: none;
}

.footer-right {
	color: var(--color-gray-400);
	font-size: 0.938rem;
	text-align: center;
}

.footer-logos {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	grid-gap: 20px;
	gap: 20px;
	margin-bottom: 10px;
}

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

	.footer-right p {
		margin-bottom: 12px;
		line-height: 1.2;
	}

	.footer-right li {
		width: auto;
		margin: 0 0 0 25px;
	}

	.footer-right ul {
		justify-content: flex-end;
		margin-top: 30px;
	}

	.footer-logo {
		margin: 0;
		max-width: 284px;
	}

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

	.footer-right ul {
		display: flex;
		flex-wrap: wrap;
	}

	.footer-logos {
		align-items: center;
		justify-content: flex-end;
		margin-bottom: 10px;
	}
}

@media screen and (min-width: 1400px) {
	.footer .column {
		padding-left: 90px;
		padding-right: 90px;
	}

	.footer-right {
		font-size: 1rem;
	}

	.footer-logo {
		max-width: 398px;
	}
}

/*******************************************************************************************
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::after {
	position: absolute;
	right: -4px;
	content: '\f105';
	font-family: var(--font-family-icon);
}

.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 {
	padding: 20px;
	font-size: 1rem;
	width: 100%;
	margin: 0;
	position: relative;
	cursor: pointer;
	font-weight: 600;
	color: var(--color-primary);
	line-height: 30px;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	grid-gap: 15px;
	gap: 15px;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
	text-align: center;
	transition: background 200ms ease-out;
}

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

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

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

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

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

.accordion-item.active > h3 .accordion-item-title::after {
	content: '\f106';
}

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

.accordion-item-content p,
.accordion-item-content li {
	font-size: 0.9rem;
}

.content .accordion-item-content ul li::before {
	top: 11px;
}

.accordion-item.active > .accordion-item-content {
	display: block;
	-webkit-animation: fadeIn 200ms both;
	animation: fadeIn 200ms both;
	padding: 0 20px;
}

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

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

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

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

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

/* 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-near-white);
	box-shadow: 0 0 20px var(--color-near-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-near-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: var(--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-near-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: var(--font-family-icon);
	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: var(--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;
	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-alternate);
}

/* 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 {
	content: '\f073';
	font-family: var(--font-family-icon);
	width: 50px;
	line-height: 50px;
	font-size: 2rem;
	font-weight: 700;
	display: block;
	text-align: center;
	color: var(--color-primary);
	margin: 0 auto;
}

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

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

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

.swiper-button-next,
.swiper-button-prev {
	width: auto;
	height: auto;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0;
	color: var(--color-alternate);
	background: none;
	border-radius: 50%;
	position: static;
}

.swiper-button-next:hover,
.swiper-button-next:focus,
.swiper-button-prev:hover,
.swiper-button-prev:focus {
	background: none;
	color: var(--color-alternate);
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-family: 'Font Awesome 6 Pro';
	color: var(--color-alternate);
	font-size: 1.2rem;
}
