/* 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: 16px;
	--font-family-body: "Figtree", serif;
	--font-family-heading: "Playfair Display", serif;
	--font-size-h1: 2.75rem;
	--font-size-h2: 2.25rem;
	--font-size-h3: 1.875rem;
	--font-size-h4: 1.125rem;
	--font-size-h5: 1.125rem;
	--font-size-hp-title: 3.6rem;
	--font-size-banner-title: 3.75rem;
	--font-size-21: 1.31rem;
	--font-size-24: 1.5rem;
	--font-size-32: 2rem;
	--font-size-50: 3.125rem;
	--color-body-text: #02244d;
	--color-primary: #0099ff;
	--color-secondary: #054590;
	--color-alternate: #054590;
	--color-gray: #f7f9fc;
	--color-light-gray: #f5f8fa;
	--color-white: #fff;
	--color-black: #031831;
	--header-height: 100px;
	--width-normal: 1280px;
	--width-narrow: 900px;
	--width-wide: 1530px;
	--gutter-size: 30px;
	--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: 11px;
	--swiper-pagination-bottom: -50px;
}

@media screen and (min-width: 768px) {
	/*TABLET*/
	:root {
		font-size: 16px;
	}
}

#container {
	position: relative;
	right: 0;
	top: 0;
	overflow: clip;
	min-height: 100vh;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

html {
	box-sizing: border-box;
}

body {
	display: block !important;
	line-height: 1.6;
	color: var(--color-body-text);
	font-size: 1rem;
	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,
.gfield--type-captcha,
.grecaptcha-badge {
	display: none !important;
}

/* CORE > Main Elements */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 30px;
	color: var(--color-body-text);
	font-family: var(--font-family-heading);
	line-height: 1.2;
	font-weight: 400;
}

h1 {
	font-size: var(--font-size-h1);
}

h2 {
	font-size: var(--font-size-h2);
}

h3 {
	font-size: var(--font-size-h3);
}

.h4-style,
h2.h4-style,
h4 {
	font-size: var(--font-size-h4);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0px;
	font-family: var(--font-family-body);
}

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%;
}

h2.section-title {
	font-size: var(--font-size-h1);
}

h2.xl-section-title span,
h2.section-title span {
	color: var(--color-primary);
}

h2.xl-section-title {
	font-size: var(--font-size-h1);
}

p {
	margin: 0 0 30px;
	font-weight: 300;
	font-size: 1rem;
	color: var(--color-body-text);
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* CORE > Links and Buttons */
a {
	color: var(--color-primary);
	text-decoration: underline;
	font-weight: 600;
}

a:hover,
a:focus {
	color: var(--color-body-text);
	text-decoration: none;
}

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-body);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	margin: 0;
	padding: 18px;
	text-align: center;
	display: inline-block;
	color: white;
	background-color: var(--color-primary);
	text-decoration: none;
}

button:active,
.button:active,
.wp-element-button:active {
	transform: translateY(1.5px);
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.wp-element-button:hover,
.wp-element-button:focus {
	background-color: var(--color-secondary);
	color: white;
}

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: white;
}

button.alt-02,
.button.alt-02 {
	background-color: var(--color-black);
}

button.alt-02:hover,
button.alt-02:focus,
.button.alt-02:hover,
.button.alt-02:focus {
	background-color: var(--color-alternate);
	color: white;
}

button.outline,
.button.outline {
	background: none;
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
}

button.outline:hover,
button.outline:focus,
.button.outline:hover,
.button.outline:focus {
	background: var(--color-primary);
	color: white;
}

button.outline.outline-alt-01,
.button.outline.outline-alt-01 {
	border-color: var(--color-body-text);
	color: var(--color-body-text);
}

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-body-text);
	color: white;
}

button.no-button,
.button.no-button {
	padding: 0;
	background: none;
	color: var(--color-secondary);
	text-transform: none;
}

button.no-button:hover,
button.no-button:focus,
.button.no-button:hover,
.button.no-button:focus {
	color: var(--color-black);
	text-decoration: underline;
}

button.chubby-button,
.button.chubby-button {
	padding-left: 40px;
	padding-right: 40px;
}

button.extra-chubby-button,
.button.extra-chubby-button {
	padding-left: 65px;
	padding-right: 65px;
}

.breadcrumbs-single {
	color: var(--color-body-text);
	font-size: 0.85rem;
}

/* 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 section:not(:last-of-type) {
	margin-bottom: 60px;
}

.columns,
.column {
	padding: 0 var(--gutter-size);
}

.row,
.row-wide,
.row-narrow {
	max-width: var(--width-normal);
	margin-right: auto;
	margin-left: auto;
}

.row-narrow {
	max-width: var(--width-narrow);
}

.row-wide {
	max-width: var(--width-wide);
}

.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;
}

h2.alt-xl-section-title {
	font-size: var(--font-size-50);
}

@media screen and (min-width: 768px) {
	main {
		padding: 80px 0;
	}

	main:not(:last-child) {
		padding-bottom: 40px;
	}

	.main-inner {
		display: -webkit-flex;
		display: -moz-flex;
		display: -o-flex;
		display: flex;
	}

	.content {
		width: 65%;
		margin-bottom: 0;
		padding-right: 70px;
	}

	.content.full-width {
		width: 100%;
		padding-right: var(--gutter-size);
	}

	main:not(:last-child) .content {
		margin-bottom: 40px;
	}

	.sidebar {
		width: 35%;
		padding-left: 0;
	}
}

@media screen and (min-width: 1025px) {
	.content {
		width: 70%;
		padding-right: calc(2 * var(--gutter-size));
	}

	.sidebar {
		width: 30%;
	}

	.contact-main .content {
		width: 56%;
	}

	.contact-main .sidebar {
		width: 44%;
	}

	h2.xl-section-title {
		font-size: var(--font-size-hp-title);
	}
}

/* CORE > Priority Utility Classes */
.no-float {
	float: none;
}

.no-margin {
	margin: 0 !important;
}

.no-padding {
	padding: 0 !important;
}

.no-min-height {
	min-height: 0;
}

.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;
}

.fade-in-load {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.fade-in-load.active {
	opacity: 1;
	transform: translateY(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%;
	background-color: var(--color-white);
	z-index: 11;
	border-bottom: none;
	transition: border-color 200ms ease-out;
}

/* Homepage transparent header */
body.home .header {
	background-color: transparent;
	transition: background-color 300ms ease-out, border-color 300ms ease-out;
}

body.home.scrolled .header {
	background-color: var(--color-white);
}

.header-search {
	opacity: 0;
}

body.scrolled .header {
	border-color: var(--color-light-gray);
}

.header > .row {
	height: 100%;
}

.header a {
	text-decoration: none;
}

.header-desktop {
	display: none;
}

.header-logo {
	display: flex;
	align-items: center;
	padding: 8px 0 8px 8px;
	max-width: 300px;
}

/* Header Logo Management - Show/Hide Based on Header Type */
.header-logo-light {
	display: none;
}

.header-logo-dark {
	display: block;
}

/* Light Header Styling */
body.header-light .header {
	background-color: transparent;
	border-bottom-color: transparent;
	transition: background-color 300ms ease-out, border-color 300ms ease-out;
}

body.header-light.scrolled .header {
	background-color: var(--color-white);
	border-color: var(--color-light-gray);
}

/* Logo transitions - light header shows light logo by default */
body.header-light .header-logo-dark {
	display: none;
}

body.header-light .header-logo-light {
	display: block;
}

/* When scrolled, even in light header mode, show dark logo */
body.header-light.scrolled .header-logo-dark {
	display: block;
}

body.header-light.scrolled .header-logo-light {
	display: none;
}

/* Navigation link colors */
body.header-light .main-navigation-menu > li > a {
	color: var(--color-white);
	transition: color 300ms ease-out;
}

body.header-light.scrolled .main-navigation-menu > li > a {
	color: var(--color-body-text);
}

/* Navigation dividers */
body.header-light .main-navigation-menu > li:not(:last-child)::after {
	background-color: var(--color-white);
	transition: background-color 300ms ease-out;
}

body.header-light.scrolled .main-navigation-menu > li:not(:last-child)::after {
	background-color: var(--color-body-text);
}

body.header-light .main-navigation-menu a:focus,
body.header-light .main-navigation-menu a:hover,
body.header-light .main-navigation-menu li:hover > a {
	color: var(--color-primary);
	text-decoration: underline;
}

/* Mobile button styling */
body.header-light .header-mobile-buttons .button.outline {
	border-color: var(--color-white);
	color: var(--color-white);
	transition: border-color 300ms ease-out, color 300ms ease-out;
}

body.header-light.scrolled .header-mobile-buttons .button.outline {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

body.header-light .header-mobile-buttons .button.outline:hover,
body.header-light .header-mobile-buttons .button.outline:focus {
	background: var(--color-white);
	color: var(--color-body-text);
}

body.header-light.scrolled .header-mobile-buttons .button.outline:hover,
body.header-light.scrolled .header-mobile-buttons .button.outline:focus {
	background: var(--color-primary);
	color: white;
}

.header-mobile-inner {
	display: flex;
	min-height: 70px;
}

.header-mobile-buttons {
	display: flex;
	margin-left: 4%;
	flex: 1;
	justify-content: flex-end;
	align-items: center;
	padding-right: 8px;
}

.header-mobile-buttons a,
.header-mobile-buttons button {
	display: flex;
	font-size: 1.3rem;
	align-items: center;
	justify-content: center;
	padding: 8px 10px;
	flex: 1;
	max-width: 50px;
	width: 50px;
	height: 50px;
	margin-left: 8px;
}

.header-mobile-buttons a:first-child,
.header-mobile-buttons button:first-child {
	margin-left: 0;
}

@media screen and (min-width: 500px) {
	.header-mobile-buttons a,
	.header-mobile-buttons button {
		width: 60px;
		max-width: 60px;
		height: 60px;
		font-size: 1.6rem;
		padding: 10px;
	}
}

@media screen and (min-width: 1025px) {
	.header-mobile {
		display: none;
	}

	.header-desktop {
		display: block;
		padding-top: 12px;
	}

	.header-logo {
		padding: 0;
		max-width: none;
	}
}

/* HEADER > Top Buttons */
.header-mobile-top {
	width: 100%;
}

.header-mobile-top-inner {
	padding: 0;
}

.header-mobile-top-buttons {
	display: flex;
	width: 100%;
}

.header-mobile-top-button {
	padding: 6px 4px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1.2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: all 200ms ease-out;
	text-align: center;
	border: none;
	margin: 0;
}

.header-mobile-top-button-consultation {
	background-color: var(--color-primary);
	flex: 0 0 36%;
}

.header-mobile-top-button-consultation:hover,
.header-mobile-top-button-consultation:focus {
	background-color: var(--color-secondary);
	color: white;
}

.header-mobile-top-button-fees {
	background-color: var(--color-body-text);
	flex: 0 0 44%;
}

.header-mobile-top-button-call {
	background-color: var(--color-secondary);
	flex: 0 0 20%;
}

.header-mobile-top-button-call:hover,
.header-mobile-top-button-call:focus {
	background-color: var(--color-primary);
	color: white;
}

.header-mobile-top-button-call i {
	margin: 0 2px;
}

/* Adjust mobile header positioning */
.header-mobile {
}

.banner,
.banner-xl {
	margin-top: 115px;
}

.no-banner main {
	padding-top: 170px;
}

/* HEADER > Custom Header Desktop */
.custom-header {
	height: 100%;
}

.custom-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	padding: 0 var(--gutter-size);
}

.custom-header-logo {
	display: flex;
	align-items: center;
}

.custom-header-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	height: 100%;
}

.custom-header-right-top {
	margin-bottom: 10px;
}

.custom-header-right-bottom {
	display: flex;
	align-items: center;
	gap: 20px;
}

@media screen and (min-width: 1025px) {
	.header-mobile-top {
		display: none;
	}

	.header-top-buttons {
		display: flex;
		gap: 15px;
		justify-content: flex-end;
		align-items: center;
	}

	.header-top-button {
		padding: 4px 10px;
		font-size: 0.8rem;
		font-weight: 600;
		text-transform: uppercase;
		text-decoration: none;
		line-height: 1;
		display: inline-block;
		color: white;
		transition: all 200ms ease-out;
	}

	.header-top-button-consultation {
		background-color: var(--color-primary);
	}

	.header-top-button-consultation:hover,
	.header-top-button-consultation:focus {
		background-color: var(--color-secondary);
		color: white;
	}

	.header-top-button-fees {
		background-color: var(--color-body-text);
	}

	.header-top-button-call {
		background-color: transparent;
		color: var(--color-primary);
		font-weight: 700;
	}

	.header-top-button-call i {
		margin: 0 4px;
	}

	.phone-number-link {
		font-size: 1.2rem;
		font-weight: 700;
		color: var(--color-primary);
		text-decoration: none;
		margin-left: 4px;
		transition: color 200ms ease-out;
	}

	.phone-number-link:hover,
	.phone-number-link:focus {
		color: var(--color-secondary);
		text-decoration: underline;
	}

	.header-mobile {
		margin-top: 0;
	}

	.banner,
	.banner-xl {
		margin-top: 90px;
	}
}

/*******************************************************************************************
MENUS - Main navigation, dropdowns and mobile menu
*******************************************************************************************/
.main-navigation-menu {
	margin: 0;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}

.main-navigation-menu li {
	display: block;
	position: relative;
	padding: 0;
}

.main-navigation-menu > li {
	padding: 0 0 20px 0;
	margin-right: 20px;
	position: relative;
}

.main-navigation-menu > li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: -10px;
	top: 0;
	bottom: 20px;
	width: 1px;
	background-color: #000;
}

.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 {
	display: none;
	position: absolute;
	top: 100%;
	width: 300px;
	margin: 0;
	background: white;
	border: 1px solid var(--color-light-gray);
	border-radius: 4px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.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-primary);
	text-decoration: underline;
}

.main-navigation-menu > li > a {
	position: relative;
	display: block;
	height: 100%;
	color: var(--color-body-text);
	line-height: 1;
	font-weight: 600;
}

/* MENUS > Main Nav Dropdowns (Level 2) */
#desktop-navigation .sub-menu li {
	background: white;
	padding: 0;
	transition: background 200ms ease-out;
	border-bottom: 1px solid var(--color-light-gray);
}

#desktop-navigation .sub-menu li:last-child {
	border-bottom: none;
}

#desktop-navigation .sub-menu li {
	position: relative;
	cursor: pointer;
}

#desktop-navigation .sub-menu li a {
	color: #02244d;
	font-size: 0.9rem;
	display: block;
	padding: 10px 16px;
	line-height: 1.4;
	text-decoration: none;
	font-weight: 600;
}

#desktop-navigation .sub-menu li.active,
#desktop-navigation .sub-menu li:hover {
	background: var(--color-primary);
}

#desktop-navigation .sub-menu li:hover > a {
	color: white;
}

#desktop-navigation .sub-menu li.active > a {
	color: white;
}

#desktop-navigation .sub-menu .menu-item-has-children > a::after {
	content: "\f101";
	font-family: "Font Awesome 6 Pro";
	position: absolute;
	right: 10px;
	color: #02244d;
}

#desktop-navigation .sub-menu .menu-item-has-children:hover > a::after,
#desktop-navigation .sub-menu .menu-item-has-children.active > a::after {
	color: white;
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
	position: absolute;
	left: 100%;
	top: 0;
}

#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;
}

.menu-item-1797.active > .sub-menu {
	right: 0;
}

.menu-item-1797.active > .sub-menu ul.sub-menu {
	left: auto !important;
	right: 100% !important;
}

/* MENUS > Mobile Menu */
#mobile-navigation {
	display: none;
}

@media screen and (min-width: 1025px) {
	.custom-header-right {
		padding-left: 40px;
	}

	.main-navigation-menu > li > a {
		font-size: 0.83rem;
	}

	.main-navigation-menu > li {
		margin-right: 12px;
	}

	.main-navigation-menu > li:not(:last-child)::after {
		right: -6px;
	}

	.header-top-button-call {
		font-size: 0;
	}

	.header-top-button-call i {
		font-size: 0.8rem;
	}

	.phone-number-link {
		font-size: 1rem;
	}
}

@media screen and (min-width: 1125px) {
	.main-navigation-menu > li > a {
		font-size: 0.92rem;
	}

	.main-navigation-menu > li {
		margin-right: 16px;
	}

	.main-navigation-menu > li:not(:last-child)::after {
		right: -8px;
	}
}

@media screen and (min-width: 1200px) {
	.main-navigation-menu > li > a {
		font-size: 1.05rem;
	}

	.main-navigation-menu > li {
		margin-right: 20px;
	}

	.main-navigation-menu > li:not(:last-child)::after {
		right: -10px;
	}

	.header-top-button-call {
		font-size: 0.8rem;
	}

	.header-top-button-call i {
		font-size: 0.8rem;
	}

	.phone-number-link {
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 1470px) {
	.main-navigation-menu > li {
		margin-right: 25px;
	}

	.main-navigation-menu > li:not(:last-child)::after {
		right: -12.5px;
	}
}

/*******************************************************************************************
BANNER - Page-top image and title
*******************************************************************************************/

.banner {
	height: 225px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: 50%;
	background: #02244d;
}

.banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #072a55;
	opacity: 0.8;
	z-index: 1;
}

.banner,
.banner-xl {
	margin-top: 95px;
}

.banner img {
	position: relative;
	width: 100%;
}

.banner > .row {
	height: 100%;
}

.banner-inner {
	position: relative;
	z-index: 1;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	height: 100%;
	float: none;
}

.banner-title,
.text-banner-title {
	text-align: center;
	font-size: var(--font-size-banner-title);
	text-transform: uppercase;
	font-family: var(--font-family-body);
	margin: 0;
}

.banner-title {
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 0;
}

.page-id-1736 .banner-title {
	text-align: left;
}

.banner-title span {
	color: var(--color-primary);
}

.text-banner {
	background: var(--color-white);
	text-align: center;
}

.text-banner-title {
	line-height: 1.4;
	color: var(--color-body-text);
	font-weight: 700;
}

@media screen and (max-width: 759px) {
	.banner-title,
	.text-banner-title {
		font-size: 2.9rem;
	}
}

@media screen and (max-width: 410px) {
	.banner-title,
	.text-banner-title {
		font-size: 2.1rem;
	}
}

@media screen and (min-width: 1025px) {
	.banner {
		height: 350px;
	}

	.banner,
	.banner-xl {
		margin-top: 90px;
	}
}

/*******************************************************************************************
PRIORITY - Other important styles
*******************************************************************************************/

.accordion-item-title {
	background: none;
}

.swiper {
	visibility: hidden;
}

.swiper-button-next,
.swiper-button-prev {
	background: none !important;
	padding: 0;
}

.winners-filter-button {
	background: none;
}
