/**
 * This stylesheet is RENDER-BLOCKING
 *
 * @format
 */

/* 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: 16px;
	--font-size-h1: 3.125rem;
	--font-size-h2: 2.5rem;
	--font-size-h3: 1.875rem;
	--font-size-h4: 1.25rem;
	--font-size-h5: 1.2rem;
	--color-body-text: #132956;
	--color-primary: #132956;
	--color-secondary: #b21d19;
	--color-alternate: #ec4827;
	--color-blues: #0d3688;
	--color-orange: #e82520;
	--color-gray-400: #707070;
	--color-gray: #f2f2f2;
	--color-gray-alt: #e8e8e8;
	--color-light-gray: #edf1f5;
	--color-white: #ffffff;
	--color-near-white: #f9fbfd;
	--color-black: #000000;
	--color-border: rgba(112, 112, 112, 0.2);
	--color-near-black: #041216;
	--font-family-body: 'Plus Jakarta Sans', sans-serif;
	--font-family-heading: 'MADE Mirage', sans-serif;
	--font-family-icon: 'Font Awesome 6 Pro';
	--header-height: 100px;
	--gutter-size: 30px;
	--primmary-gradient: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blues) 49.8%, var(--color-alternate) 100%);
	--secondary-gradient: linear-gradient(90deg, var(--color-alternate) 0%, var(--color-orange) 46.9%, var(--color-secondary) 100%);
	--swiper-theme-color: var(--color-primary);
	--swiper-navigation-color: var(--color-alternate);
	--swiper-pagination-bullet-inactive-color: var(--color-body-text);
	--swiper-pagination-bullet-opacity: 1;
	--swiper-pagination-bullet-inactive-opacity: 1;
	--swiper-pagination-bullet-horizontal-gap: 5px;
	--swiper-pagination-bullet-size: 16px;
	--swiper-pagination-bottom: -50px;
}

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

html {
	box-sizing: border-box;
}

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

*:focus-visible {
	outline: auto;
}

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

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

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

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 {
	color: var(--color-alternate);
	font-size: var(--font-size-h4);
}

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

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

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

p {
	margin: 0 0 30px;
}

ul {
	list-style: none;
}

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

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

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

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 {
	font-family: var(--font-family-heading), sans-serif;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	border: 2px solid transparent;
	margin: 0;
	padding: 18px;
	border-radius: 0;
	text-align: center;
	display: inline-flex;
	align-items: center;
	color: var(--color-white);
	background-color: var(--color-primary);
	text-decoration: none;
	letter-spacing: 0.031rem;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.wp-element-button:hover,
.wp-element-button:focus {
	background-color: var(--color-secondary);
	color: var(--color-white);
	text-decoration: none;
}

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

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

button.alt-02,
.button.alt-02 {
	background-color: var(--color-near-black);
}

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

button.outline,
.button.outline {
	background: none;
	border-color: var(--color-alternate);
	color: var(--color-alternate);
}

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

button.outline.outline-alt-01,
.button.outline.outline-alt-01 {
	border-color: var(--color-white);
	color: 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 {
	background: var(--color-near-white);
	color: var(--color-primary);
}

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

button.white.outline:hover,
.button.white.outline:hover,
button.white.outline:focus,
.button.white.outline:focus {
	color: var(--color-alternate);
	background: var(--color-white);
	border-color: var(--color-white);
}

button.no-button,
.button.no-button {
	background: none;
	font-weight: bold;
	position: relative;
	padding: 0 0 7px 0;
	font-size: 1.125rem;
	text-transform: uppercase;
	color: var(--color-primary);
	font-family: var(--font-family-body), sans-serif;
}

button.no-button:after,
.button.no-button:after {
	left: 0;
	top: 100%;
	width: 100%;
	height: 6px;
	content: '';
	display: block;
	position: absolute;
	background: var(--secondary-gradient);
}

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

/* CORE > Page Structure */
main {
	padding: 60px 0;
	min-height: 450px;
	display: block;
	width: 100%;
	overflow: clip;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

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

.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 {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	max-width: calc(1004px + calc(var(--gutter-size) * 2));
}

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

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

.row::after {
	clear: both;
}

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

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

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

	.main-inner {
		display: flex;
	}

	.content {
		width: 70%;
		margin-bottom: 0;
		padding-right: var(--gutter-size);
	}

	.content.full-width {
		width: 100%;
		padding-right: var(--gutter-size);
	}

	.sidebar {
		width: 30%;
		padding-left: 0;
	}
}

@media screen and (min-width: 1025px) {
	.content {
		padding-right: calc(2 * var(--gutter-size));
	}
}

@media screen and (min-width: 1400px) {
	.row {
		max-width: calc(1484px + calc(var(--gutter-size) * 2));
	}

	.sidebar {
		width: calc(410px + var(--gutter-size));
	}

	.content {
		width: calc(100% - calc(410px + var(--gutter-size)));
	}
}

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

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

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

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

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 {
	border: none !important;
	clip: rect(0 0 0 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !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 (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;
	}
}

/*******************************************************************************************
HEADER
*******************************************************************************************/
.header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 101;
	/* padding-top: 16px; */
	padding-bottom: 16px;
	transition: 200ms ease-out;
}

.header > .row {
	height: 100%;
	max-width: 100%;
}

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

.header-logo {
	width: 188px;
	display: flex;
	position: relative;
	align-items: center;
}

.header-logo img {
	width: 100%;
	height: auto;
	display: block;
	transition: opacity 200ms ease-out;
}

.header-logo img + img {
	top: 0;
	left: 0;
	opacity: 0;
	position: absolute;
}

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

.header-search {
	opacity: 0;
}

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

body.scrolled .header-logo img {
	opacity: 0;
	max-width: 85%;
}

body.scrolled .header-logo img + img {
	opacity: 1;
}

body.scrolled .header-search-toggle,
body.scrolled .mobile-menu-toggle {
	color: var(--color-primary);
}

body.scrolled .mobile-navigation-close {
	color: var(--color-white);
}

.mobile-menu-toggle {
	border: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	font-size: 2.3rem;
	font-weight: 700;
	margin-left: 24px;
	text-transform: uppercase;
	color: var(--color-white);
	background-color: transparent;
	font-family: var(--font-family-body), sans-serif;
}

.mobile-menu-toggle span {
	font-weight: bold;
	letter-spacing: 1px;
	font-size: 0.625rem;
	margin-bottom: 2px;
	text-transform: uppercase;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
	background: transparent;
}

.mobile-navigation-close {
	padding: 0;
	color: var(--color-white);
	background-color: transparent;
}

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

@media screen and (min-width: 768px) {
	.header {
		/* padding-top: 45px; */
		padding-bottom: 45px;
	}

	.header-inner {
		padding-top: 45px;
	}

	.header-logo {
		width: 266px;
	}

	body.scrolled .header {
		/* padding-top: 25px; */
		padding-bottom: 25px;
	}

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

	.mobile-menu-toggle span {
		margin-bottom: 6px;
	}
}

@media screen and (min-width: 1025px) {
	.header-inner {
		padding-left: 45px;
		padding-right: 45px;
	}
}

@media screen and (min-width: 1400px) {
	.header {
		/* padding-top: 68px; */
		padding-bottom: 68px;
	}

	.header-logo {
		width: 400px;
	}

	.header-inner {
		padding-top: 68px;
		padding-left: 90px;
		padding-right: 90px;
	}

	.mobile-menu-toggle {
		margin-left: 37px;
	}

	.mobile-menu-toggle {
		font-size: 2.3rem;
	}

	.mobile-menu-toggle span {
		font-size: 0.938rem;
		margin-bottom: 6px;
	}

	body.scrolled .header {
		/* padding-top: 28px; */
		padding-bottom: 28px;
	}

	body.scrolled .header-inner {
		padding-top: 28px;
	}
}

#top-banner {
	position: relative;
	background: linear-gradient(270deg, rgba(178, 29, 25, 1) 0%, rgba(232, 37, 32, 1) 41%, rgba(236, 72, 39, 1) 100%);
	padding: 14px 60px 14px 30px;
	color: #fff;
	line-height: 1;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-align: center;
	align-items: center;
	flex-wrap: wrap;
	grid-gap: 10px;
	gap: 10px;
}

#top-banner span {
	display: block;
	font-family: var(--font-family-heading), sans-serif;
	font-size: 18px;
	font-weight: 500;
}

#top-banner a {
	display: block;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.2px;
	color: #fff;
}

#top-banner a:hover,
#top-banner a:focus {
	color: var(--color-primary);
	text-decoration: none;
}

#close-top-banner {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	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;
	font-size: 30px;
	color: #fff;
	background: none;
	padding: 5px;
}

#close-top-banner:hover,
#close-top-banner:focus {
	color: var(--color-primary);
}

@media screen and (min-width: 768px) {
	#top-banner {
		-webkit-box-pack: center;
		justify-content: center;
		grid-gap: 25px;
		gap: 25px;
	}
}

@media screen and (min-width: 1025px) {
	#top-banner span {
		font-size: 30px;
	}

	#top-banner a {
		font-size: 20px;
	}

	#close-top-banner {
		right: 10px;
	}
}

/*******************************************************************************************
MENUS - Non-critical menu styling
*******************************************************************************************/
/* MENUS > Mobile Menu */
#mobile-navigation {
	z-index: 102;
	position: fixed;
	top: 0;
	display: none;
	background-color: var(--color-primary);
	overflow: auto;
	padding: 0 30px 40px 30px;
	width: 100%;
	height: 100vh;
}

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

.mobile-navigation-top-inner {
	align-items: center;
	display: flex;
	justify-content: flex-end;
	padding: 18px 0;
}

.mobile-primary-menu {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-primary-menu > li {
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-primary-menu > li:last-child {
	margin-bottom: 0;
}

.mobile-primary-menu > li > a {
	position: relative;
	display: block;
	font-weight: 600;
	font-size: 1.125rem;
	color: var(--color-white);
	text-decoration: none;
	padding-top: 15px;
	padding-bottom: 15px;
}

.mobile-primary-menu > li > a:hover,
.mobile-primary-menu > li > a:active,
.mobile-primary-menu > li > a:focus {
	color: var(--color-alternate);
	background: transparent;
}

.mobile-primary-menu > li.menu-item-has-children > a {
	padding-right: 30px;
}

.mobile-primary-menu > li.menu-item-has-children > .sub-menu-toggle {
	top: -6px;
	position: absolute;
	right: 0;
	padding: 15px 0 15px 10px;
	cursor: pointer;
	font-size: 1.4rem;
	color: var(--color-alternate);
}

.mobile-primary-menu > li.sub-menu-open.menu-item-has-children > .sub-menu-toggle i::before {
	content: '\f0d8';
}

.mobile-primary-menu .sub-menu {
	margin: 0;
	padding-bottom: 20px;
	z-index: 1;
	overflow: auto;
	display: none;
	width: 100%;
	line-height: 1.4;
	animation-fill-mode: both;
}

.mobile-primary-menu > li.sub-menu-open > .sub-menu {
	display: block;
}

.mobile-primary-menu .sub-menu > li + li {
	margin-top: 8px;
}

.mobile-primary-menu .sub-menu > li > a {
	position: relative;
	display: block;
	font-size: 0.813rem;
	font-weight: 400;
	color: var(--color-white);
	text-decoration: none;
	transition: all 0.3s;
	padding-left: 18px;
}

.mobile-primary-menu .sub-menu > li > a:before {
	left: 0;
	top: 8px;
	content: '';
	display: block;
	width: 4px;
	height: 4px;
	position: absolute;
	background: var(--color-white);
}

.mobile-primary-menu .sub-menu > li > a:active,
.mobile-primary-menu .sub-menu > li > a:focus,
.mobile-primary-menu .sub-menu > li > a:hover {
	color: var(--color-alternate);
}

.mobile-primary-menu .sub-menu > li > a:after {
	display: none;
}

.mobile-navigation-menu .button.outline {
	padding: 9px 11px;
	font-size: 0.75rem;
	font-weight: 400;
	color: var(--color-white);
	border: 1px solid var(--color-secondary);
	text-transform: uppercase;
}

.mobile-navigation-menu .button.outline:active,
.mobile-navigation-menu .button.outline:focus,
.mobile-navigation-menu .button.outline:hover {
	color: var(--color-white);
	background-color: var(--color-secondary);
}

@media screen and (min-width: 768px) {
	#mobile-navigation {
		right: 0;
		max-width: 500px;
		padding: 0 65px 70px 65px;
	}
}

@media screen and (min-width: 1400px) {
	.mobile-navigation-top-inner {
		padding: 37px 0;
	}
}

/*******************************************************************************************
BANNER - Page-top image and title
*******************************************************************************************/
.banner {
	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;
	min-height: 300px;
	position: relative;
	background: linear-gradient(315deg, var(--color-alternate) 0%, var(--color-blues) 49.8%, rgba(19, 41, 86, 1) 100%);
}

.banner:after,
.banner:before,
.banner-image::before {
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	content: '';
	height: 100%;
	display: block;
	position: absolute;
	pointer-events: none;
}

.banner:after {
	height: 50%;
	opacity: 0.858;
	background: linear-gradient(to bottom, rgba(19, 41, 86, 1) 0%, rgba(0, 51, 136, 0) 100%);
}

.ps219sw17 {
	color: blue;
}

.banner:before {
	width: 50%;
	background: linear-gradient(90deg, rgba(19, 41, 86, 0.409) 0%, rgba(0, 51, 136, 0) 100%);
}

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

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

.banner-inner {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex-wrap: wrap;
	height: 100%;
	float: none;
	padding-top: 85px;
	padding-bottom: 30px;
}

.banner-title,
.banner-title + span {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 500;
	color: var(--color-near-white);
	margin-bottom: 0;
	font-family: var(--font-family-heading), sans-serif;
}

.banner-title + span {
	font-size: 1.7rem;
}

@media screen and (min-width: 768px) {
	.banner {
		min-height: 450px;
	}

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

	.banner-title + span {
		font-size: 2.3rem;
	}
}

@media screen and (min-width: 1025px) {
	.banner {
		min-height: 550px;
	}

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

	.banner-title + span {
		font-size: 2.9rem;
	}

	.banner-inner {
		padding-top: 100px;
	}
}

@media screen and (min-width: 1600px) {
	.banner-title {
		font-size: 4.375rem;
	}
}

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

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

.swiper {
	visibility: hidden;
}

.swiper-button-next,
.swiper-button-prev {
	background: none !important;
	padding: 0;
}

/* PRIORITY > background image effect */
.bg-image-effect {
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	pointer-events: none;
}

.bg-image-effect:after,
.bg-image-effect:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: multiply;
}

.bg-image-effect:after {
	z-index: 3;
	opacity: 0.253;
	background: linear-gradient(335deg, var(--color-alternate) 0%, var(--color-blues) 49.8%, var(--color-primary) 100%);
}

.bg-image-effect:before {
	z-index: 1;
	background: linear-gradient(315deg, var(--color-alternate) 0%, var(--color-blues) 49.8%, rgba(19, 41, 86, 1) 100%);
}

.bg-image-effect img {
	z-index: 2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	mix-blend-mode: screen;
}
