/* This stylesheet is RENDER-BLOCKING */
/* Only add priority styles that occur near the top of the page and/or prevent page jitter */

/*
CORE
HEADER
MENUS
BANNER
PRIORITY
*/

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
:root {
	--font-size-h1: 3.75rem;
	--font-size-h2: 3.125rem;
	--font-size-h3: 2.25rem;
	--font-size-h4: 1.875rem;
	--font-size-h5: 1.5rem;
	--font-size-base: 1rem;
	--color-body-text: #062446;
	--color-primary: #062446;
	--color-secondary: #ffa617;
	--color-alternate: #5f7ab1;
	--color-gray: #e1e5ed;
	--color-light-gray: #f2f4f8;
	--color-white: #fff;
	--color-black: #000;
	--color-warning: #f10f0f;
	--font-family-body: 'Plus Jakarta Sans', sans-serif;
	--font-family-icon: 'Font Awesome 6 Pro';
	--font-family-heading: 'Frank Ruhl Libre', sans-serif;
	--gutter-size: 24px;
	--width-normal: 1100px;
	--width-narrow: 1024px;
	--width-wide: 1364px;
	font-size: 16px;
}

#container {
	position: relative;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
}

html {
	box-sizing: border-box;
}

body {
	margin: 0;
	display: block !important;
	font-family: var(--font-family-body);
	font-size: var(--font-size-base);
	line-height: 1.69;
	color: var(--color-body-text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*:focus {
	outline: auto;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

/* Hidden elements */
.hide,
.show-in-pdf,
.gfield--type-captcha,
.grecaptcha-badge {
	display: none !important;
}

.yellow{
	color: var(--color-secondary);
}

img.lazy-img{
	opacity: 0;
}

img.lazy-img.animated{
	
}

/* CORE > Headings and Paragraphs */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin: 0 0 30px;
	font-family: var(--font-family-heading);
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-primary);
}

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

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

h3,
.h3 {
	font-size: var(--font-size-h3);
}

h4,
.h4 {
	font-weight: 300;
	font-size: var(--font-size-h4);
}

h5,
h6,
.h5,
.h6 {
	font-weight: 300;
	font-size: var(--font-size-h5);
}

h2 strong,
h3 strong {
	font-weight: 700;
}

h1 span.subtitle,
h2 span.subtitle {
	display: block;
	font-size: 50%;
	color: var(--color-secondary);
}

p {
	margin: 0 0 30px;
}

ul {
	list-style: none;
}

strong {
	font-weight: 600;
}

.words-animation p{
	margin: 0;
}

/* CORE > Links and Buttons */
a {
	text-decoration: underline;
	color: var(--color-alternate);
}

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

a.no-underline {
	text-decoration: none;
}

a.no-underline:hover,
a.no-underline:focus {
	text-decoration: underline;
}

a,
button,
.button,
.wp-element-button {
	transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
}

button,
.button,
.wp-element-button {
	margin: 0;
	padding: 18px 25px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-family-body);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 2px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--color-primary);
	border-radius: 0;
	background-color: var(--color-secondary);
	cursor: pointer;
	position: relative;
	border: 2px solid transparent;
}

button:before,
.button:before,
.wp-element-button:before {
	left: -2px;
	top: -2px;
	bottom: -2px;
	content: '';
	display: block;
	width: 0;
	position: absolute;
	background-color: var(--color-primary);
	transition: width 200ms ease-out, transform 60ms ease-in;
}

button:active,
.button:active,
.wp-element-button:active {
	transform: translateY(1px);
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.wp-element-button:hover,
.wp-element-button:focus {
	color: var(--color-white);
}

button:hover:before,
button:focus:before,
.button:hover:before,
.button:focus:before,
.wp-element-button:hover:before,
.wp-element-button:focus:before {
	width: calc(100% + 4px);
}

button > i,
.button > i,
.wp-element-button > i,
button > span,
.button > span,
.wp-element-button > span {
	position: relative;
}

button.alt-01,
.button.alt-01 {
	background-color: var(--color-secondary);
}

button.alt-01:before,
.button.alt-01:before {
	background-color: var(--color-primary);
}

button.alt-01:hover,
button.alt-01:focus,
.button.alt-01:hover,
.button.alt-01:focus {
	color: var(--color-white);
}

button.alt-02,
.button.alt-02 {
	background-color: transparent;
	border: 2px solid var(--color-secondary);
}

button.alt-02:before,
.button.alt-02:before {
	background-color: var(--color-primary);
}

button.alt-02:hover,
button.alt-02:focus,
.button.alt-02:hover,
.button.alt-02:focus {
	color: var(--color-white);
}

button.alt-02:hover:before,
button.alt-02:focus:before,
.button.alt-02:hover:before,
.button.alt-02:focus:before{
	width: calc(100% + 4px);
}

button.outline,
.button.outline {
	color: var(--color-primary);
	border-color: var(--color-secondary);
	background: transparent;
}

button.outline:before,
.button.outline:before {
	background: var(--color-secondary);
}

button.outline:hover,
button.outline:focus,
.button.outline:hover,
.button.outline:focus {
	color: var(--color-primary);
	background: transparent;
}

button.outline.outline-alt-01,
.button.outline.outline-alt-01 {
	color: var(--color-white);
	border-color: var(--color-white);
}

button.outline.outline-alt-01:before,
.button.outline.outline-alt-01:before {
	background: var(--color-white);
}

button.outline.outline-alt-01:hover,
button.outline.outline-alt-01:focus,
.button.outline.outline-alt-01:hover,
.button.outline.outline-alt-01:focus {
	color: var(--color-primary);
}

button.no-button,
.button.no-button {
	padding: 0;
	background: none;
	color: var(--color-primary);
	letter-spacing: 2px;
}

button.no-button:before,
.button.no-button:before {
	display: none;
}

button.no-button i,
.button.no-button i {
	color: var(--color-secondary);
}

button.no-button:hover,
button.no-button:focus,
.button.no-button:hover,
.button.no-button:focus {
	text-decoration: none;
	color: var(--color-secondary);
}

button.full,
.button.full {
	width: 100%;
}

/* CORE > Page Structure */
main {
	z-index: 1;
	padding: 20px 0 60px;
	display: block;
	flex: 1;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.no-banner main {
	padding-top: 100px;
}

.content.full-width {
	float: none;
}

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

.content section:not(:last-of-type) {
	margin-bottom: 60px;
}

.columns,
.column {
	padding: 0 var(--gutter-size);
}

.row,
.row-wide,
.row-narrow {
	margin-right: auto;
	margin-left: auto;
	max-width: calc(var(--width-normal) + var(--gutter-size) * 2);
}

.row-narrow {
	max-width: calc(var(--width-narrow) + var(--gutter-size) * 2);
}

.row-wide {
	max-width: calc(var(--width-wide) + var(--gutter-size) * 2);
}

.row:after {
	clear: both;
}

.row:not(.main-inner):before,
.row:not(.main-inner):after {
	display: table;
	flex-basis: 0;
	order: 1;
	content: ' ';
}

.row.main-inner:before,
.row.main-inner:after {
	display: none;
}

@media screen and (min-width: 768px) {
	main {
		padding: 80px 0;
	}
}

/* CORE > Priority Utility Classes */
.no-float {
	float: none;
}

.no-margin {
	margin: 0 !important;
}

.no-padding {
	padding: 0 !important;
}

.no-top-padding {
	padding-top: 0 !important;
}

.no-bottom-padding {
	padding-bottom: 0 !important;
}

.no-min-height {
	min-height: 0;
}

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

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

img.responsive-img,
.responsive-img img {
	max-width: 100%;
	height: auto;
}

.position-static,
.static {
	position: static !important;
}

.position-relative,
.relative {
	position: relative !important;
}

.position-absolute,
.absolute {
	position: absolute;
}

.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

.visually-hidden {
	margin: -1px !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	white-space: nowrap !important;
	border: none !important;
	clip: rect(0 0 0 0) !important;
	overflow: hidden !important;
}

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

.animate-in-view,
.opacity0 {
	opacity: 0;
}

.opacity1 {
	opacity: 1 !important;
}

.uppercase {
	text-transform: uppercase;
}

.small-text {
	font-size: 0.9rem;
}

.larger-text {
	font-size: 1.2rem;
}

.font-light {
	font-weight: 300;
}

.font-normal {
	font-weight: 400;
}

.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

.bold,
.font-bold {
	font-weight: 700;
}

.font-extra-bold {
	font-weight: 800;
}

.font-black {
	font-weight: 900;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mt30 {
	margin-top: 30px;
}

.mt40 {
	margin-top: 40px;
}

.mt50 {
	margin-top: 50px;
}

.mt60 {
	margin-top: 60px;
}

.mt70 {
	margin-top: 70px;
}

.mt80 {
	margin-top: 80px;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mb10 {
	margin-bottom: 10px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb50 {
	margin-bottom: 50px;
}

.mb60 {
	margin-bottom: 60px;
}

.mb70 {
	margin-bottom: 70px;
}

.mb80 {
	margin-bottom: 80px;
}

.pt10 {
	padding-top: 10px;
}

.pt20 {
	padding-top: 20px;
}

.pt30 {
	padding-top: 30px;
}

.pt40 {
	padding-top: 40px;
}

.pt50 {
	padding-top: 50px;
}

.pt60 {
	padding-top: 60px;
}

.pt70 {
	padding-top: 70px;
}

.pt80 {
	padding-top: 80px;
}

.pb10 {
	padding-bottom: 10px;
}

.pb20 {
	padding-bottom: 20px;
}

.pb30 {
	padding-bottom: 30px;
}

.pb40 {
	padding-bottom: 40px;
}

.pb50 {
	padding-bottom: 50px;
}

.pb60 {
	padding-bottom: 60px;
}

.pb70 {
	padding-bottom: 70px;
}

.pb80 {
	padding-bottom: 80px;
}

@media (min-width: 768px) {
	.hide-for-medium {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.hide-for-large {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.hide-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 0), screen and (min-width: 768px) {
	.show-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.show-for-medium {
		display: none !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.hide-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px), screen and (min-width: 1025px) {
	.show-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.show-for-large {
		display: none !important;
	}
}

/*******************************************************************************************
TITLE ANIMATION
*******************************************************************************************/
.words-animation {
	position: relative;
	overflow: hidden;
}

.words-animation > strong {
	font-weight: inherit;
	overflow: clip;
	display: inline-block;
	padding-bottom: 2px;
}

.words-animation .word {
	opacity: 0;
	display: inline-block;
}

.words-animation .yellow {
	color: var(--color-secondary);
}

/*******************************************************************************************
HEADER
*******************************************************************************************/

.header {
	position: fixed;
	top: 0;
	z-index: 401;
	width: 100%;
	transition: background-color 200ms ease-out, box-shadow 200ms ease-out;
}

.header-search {
	opacity: 0;
}

body.home .header {
	opacity: 0;
}

body.scrolled .header {
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	background-color: var(--color-white);
}

.header > .row {
	height: 100%;
}

.header a {
	text-decoration: none;
}

.header-desktop {
	display: none;
}

.header-logo {
	width: 246px;
	display: flex;
	align-items: center;
}

.header-logo img {
	width: 100%;
	display: block;
	height: auto;
}

.header-mobile-inner {
	display: flex;
	padding: 13px var(--gutter-size);
}

.header-mobile-buttons {
	margin-left: 4%;
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: flex-end;
}

.header-mobile-buttons button {
	padding: 0 10px;
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	width: 45px;
	max-width: 45px;
	height: 45px;
	font-size: 1.4rem;
	background-color: transparent;
	border: solid 2px var(--color-primary);
}

.header-mobile-buttons button:hover,
.header-mobile-buttons button:focus {
	color: var(--color-white);
	background-color: var(--color-primary);
}

.header-right {
	display: none;
	flex-direction: column;
	align-self: center;
	justify-content: space-between;
	height: 100%;
}

.header-right-top {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.header-right-top span {
	font-weight: 600;
}

.header-phone {
	margin-left: 20px;
	display: inline-block;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--color-secondary);
}

.header-phone i {
	font-size: 80%;
}

.header-right-bottom {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

@media screen and (min-width: 1025px) {
	.header-right {
		flex: 1;
		display: flex;
	}

	.header-logo {
		width: 320px;
	}

	.header-inner {
		padding: 30px var(--gutter-size);
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 100%;
	}

	.header-mobile {
		display: none;
	}

	.header-desktop {
		display: block;
	}
}

@media screen and (min-width: 1180px) {
	.header-logo {
		width: 380px;
	}

	.header-inner {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}

/*******************************************************************************************
MENUS - Main navigation, dropdowns and mobile menu
*******************************************************************************************/
.main-navigation-menu {
	margin: 0;
	display: flex;
	justify-content: space-between;
}

.main-navigation-menu li {
	padding: 0;
	position: relative;
	display: block;
}

.main-navigation-menu > li {
	margin-right: 15px;
	padding: 0;
}

.main-navigation-menu > li:last-of-type {
	margin-right: 0;
}

.main-navigation-menu > li:last-of-type > a {
	margin-right: 0;
}

.main-navigation-menu .sub-menu {
	margin: 0;
	position: absolute;
	top: 100%;
	display: none;
	width: max-content;
}

.main-navigation-menu > a:hover + .sub-menu,
.main-navigation-menu > a:focus + .sub-menu,
.main-navigation-menu > li.active > .sub-menu {
	display: block;
	-webkit-animation: menuslidedown 200ms both;
	animation: menuSlideDown 200ms both;
}

.main-navigation-menu a:focus,
.main-navigation-menu a:hover,
.main-navigation-menu li:hover > a {
	color: var(--color-secondary);
}

.main-navigation-menu > li > a {
	font-size: 0.813rem;
	position: relative;
	display: block;
	height: 100%;
	font-weight: 600;
	line-height: 1;
	color: var(--color-primary);
	text-transform: uppercase;
	padding: 6px 0;
}

.main-navigation-menu > li > a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--color-secondary);
	transition: all 0.3s ease-in-out;
	opacity: 0;
	visibility: hidden;
}


.main-navigation-menu > li.active > a,
.main-navigation-menu > li > a:hover {
	color: var(--color-alternate);
}


.main-navigation-menu > li.active > a:after,
.main-navigation-menu > li > a:hover:after {
	width: 100%;
	opacity: 1;
	visibility: visible;
}

@media screen and (min-width: 1180px) {
	.main-navigation-menu > li {
		margin-right: 34px;
	}
}

/* MENUS > Main Nav Dropdowns (Level 2) */
#desktop-navigation .sub-menu li {
	position: relative;
	background: var(--color-primary);
	transition: background 200ms ease-out;
	cursor: pointer;
	padding: 0 15px;
}

#desktop-navigation .sub-menu li a {
	padding: 10px 60px 10px 0;
	display: block;
	font-size: 0.875rem;
	line-height: 1;
	font-weight: 600;
	text-decoration: none;
	color: var(--color-white);
	border-bottom: solid 1px #304d6f;
}

#desktop-navigation .sub-menu li:last-child a {
	border-bottom: 0;
}

#desktop-navigation .sub-menu li a:hover {
	color: var(--color-secondary);
}

#desktop-navigation .sub-menu li:before {
	position: absolute;
	top: 6px;
	left: 10px;
	display: none;
	font-family: var(--font-family-icon);
	color: var(--color-secondary);
	transition: color 200ms ease-out;
	content: '\f105';
	pointer-events: none;
}

#desktop-navigation .sub-menu li.active:before {
	color: var(--color-white);
}

#desktop-navigation .sub-menu .menu-item-has-children > a:after {
	position: absolute;
	right: 10px;
	font-family: var(--font-family-icon);
	color: var(--color-secondary);
	content: '\f101';
}

#desktop-navigation .sub-menu .menu-item-has-children.active > a:after {
	color: var(--color-white);
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
	position: absolute;
	top: 0;
	left: 100%;
}

#desktop-navigation .sub-menu .sub-menu .sub-menu {
	display: none !important;
}

#desktop-navigation .sub-menu .menu-item-has-children:hover ul,
.menu-item-has-children.active > .sub-menu {
	display: block;
	-webkit-animation: menuslideright 200ms both;
	animation: menuSlideRight 200ms both;
}

/* MENUS > Mobile Menu */
#mobile-navigation {
	display: none;
}

/*******************************************************************************************
BANNER - Page-top image and title
*******************************************************************************************/
.banner {
	padding-top: 50px;
	position: relative;
	background-repeat: no-repeat;
	background-position-x: 50%;
	background-size: cover;
}

.banner,
.banner-xl {
	margin-top: 71px;
}

.banner img {
	position: relative;
	width: 100%;
}

.banner > .row {
	height: 100%;
}

.banner-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	float: none;
	height: 100%;
}

.banner-title {
	margin-bottom: 20px;
	font-family: var(--font-family-heading);
	font-size: 3.125rem;
	font-weight: 300;
	line-height: 1.2;
	text-align: center;
}

.banner-title span:not(.word) {
	color: var(--color-secondary);
}

.banner-brand {
	left: 0;
	top: -70px;
	width: 100%;
	position: absolute;
	pointer-events: none;
}

.banner-brand:after,
.banner-brand:before {
	left: 0;
	width: 100%;
	content: '';
	display: block;
	position: absolute;
}

.banner-brand:after {
	bottom: 0;
	height: 60%;
	background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.banner-brand:before {
	top: 0;
	height: 40%;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.banner-brand svg {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	max-width: 1500px;
}

.banner-links {
	text-align: center;
	margin: 0 -30px;
	padding-top: 11px;
	padding-bottom: 11px;
	width: calc(100% + 60px);
	border-top: 2px solid var(--color-secondary);
	border-bottom: 2px solid var(--color-secondary);
}

.banner-links a {
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	color: var(--color-primary);
	transition: all 0.3s;
}

.banner-links li.active a,
.banner-links li a:hover {
	color: var(--color-secondary);
}

.banner-links li.active a:after,
.banner-links li a:hover:after {
	width: 100%;
}

.banner-links li a:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--color-secondary);
	transition: all 0.3s;
	content: '';
}

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

	.banner-title {
		font-size: 5rem;
	}

	.banner-links {
		margin: 0;
		padding-top: 0;
		padding-bottom: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		border-top: 0;
		border-bottom: 0;
	}

	.banner-links a {
		padding-bottom: 7px;
		font-size: 16px;
	}

	.banner-links li {
		margin-right: 32px;
	}

	.banner-links li:last-child {
		margin-right: 0;
	}
}

@media screen and (min-width: 1025px) {
	.banner,
	.banner-xl {
		margin-top: 104px;
	}
}

/*******************************************************************************************
PRIORITY - Other important styles
*******************************************************************************************/

.accordion-item-title {
	background: none;
}

.accordion-item-title:before {
	display: none;
}

.mpfy-tooltip{
	opacity: 0 !important;
	pointer-events: none !important;
}


/* HOMEPAGE HERO */

/* hero */
.hero {
	margin-top: 71px;
}

.hero h1 {
	font-size: 2.688rem;
	color: var(--color-white);
	font-weight: 300;
	margin-bottom: 0;
}

.hero h1 strong {
	color: var(--color-secondary);
	font-weight: 300;
}

.hero h1 .hero-subtitle {
	font-size: 1.125rem;
	display: block;
	letter-spacing: 5.5px;
	margin-bottom: 10px;
	color: var(--color-white);
	font-family: var(--font-family-body);
	font-weight: 700;
	text-transform: uppercase;
}

.hero .slick-list {
	display: grid;
	height: 100%;
}

.hero-title-animation {
	display: block;
	overflow: hidden;
}

.hero-title-animation span {
	opacity: 0;
	display: inline-block;
}

.hero{
	max-height: 500px;
}

.hero-item.slick-slide {
	min-height: 500px;
}

.hero-slider{
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hero-slider.slick-initialized {
	max-height: 500px;
	opacity: 1;
}

.hero-item p{
	margin: 0;
}

.hero-intro {
	top: 0;
	z-index: 1;
	padding-top: 14px;
	padding-bottom: 14px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 100%;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 1;
}

.hero-image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.hero-image:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(6, 36, 70, .50);
}

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

.hero .slick-slide img {
	height: 100%;
}


@media screen and (min-width: 768px) {
	.hero h1 .hero-subtitle {
		letter-spacing: 7.5px;
		margin-bottom: 23px;
	}
}

@media screen and (min-width: 1025px) {
	.hero {
		margin-top: 100px;
		max-height: 700px;
	}

	.hero-slider.slick-initialized {
		max-height: 700px;
	}

	.hero-item.slick-slide {
		min-height: 700px;
	}

	.hero h1 {
		font-size: 5rem;
	}

	.hero h1 .hero-subtitle {
		font-size: 1.75rem;
	}
}

@media screen and (min-width: 1200px) {
	.hero h1 {
		font-size: 6.25rem;
	}

	.hero h1 .title-small {
		font-size: 5rem;
	}
}

@media screen and (min-width: 1441px) {
	.hero h1 {
		font-size: 7.5rem;
	}

	.hero h1 .hero-subtitle {
		font-size: 1.875rem;
	}

	.hero{
		max-height: 741px;
	}

	.hero-slider.slick-initialized {
		max-height: 741px;
	}

	.hero-item.slick-slide {
		min-height: 741px;
	}

	.hero-intro {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

.footer-print{
	display: none;
}

/* BLOCK QUOTE ANIMATIONS */

blockquote *,
.quote-single *{
	opacity: 0;
	transform: translateX(-20px);
	transition: all 1s ease-out;
	transition-delay: 1s;
}

blockquote:after,
.quote-single:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 2px;
	height: 0;
	background-color: var(--color-secondary);
	transition: height 1s ease-out;
}

blockquote.animated *,
.quote-single.animated * {
	opacity: 1;
	transform: translateX(0);
}

blockquote.animated:after,
.quote-single.animated:after {
	height: 100%;
}