/**
 * Table of Content
 * ==================================================
 * 	#Site Styles
 * 	#Media Queries
 *
 * @format
 */

/* #Site Styles
================================================== */

/* ### general ### */
:root {
	--page-bg: #fff;
	--width-base: 1110px;
	--width-wide: 1280px;
	--width-narrow: 920px;
	--gutter-base: 20px;
	--gutter-top: 0;
	--gutter-right: var(--gutter-base);
	--gutter-bottom: var(--gutter-base);
	--gutter-left: var(--gutter-base);
	--gutter-side: 20px;
	--gutter-side-tablet: 20px;
	--gutter-side-phone: 20px;
	--border-radius-base: 10px;
	--color-black: #000;
	--color-dark: #323233;
	--color-primary: #1485cb;
	--color-primary-dark: #137cbe;
	--color-secondary: #005e88;
	--color-alternative: #14172f;
	--color-info: #c4e0f2;
	--color-gray: #ebebeb;
	--color-gray-dark: #58585a;
	--color-light-gray: #f5f9fc;
	--color-error: #d9534f;
	--color-success: #5cb85c;
	--color-white: #fff;
	--color-gray-alt: #dbdbdb;
	--color-gray-light: #f5f9fc;
	--color-gray-100: #dbdbdb;
	--color-blue: #0085cb;
	--color-border: #ddd;
	--color-border-alt: #d5d5d5;
	--color-sky-blue: #e2f1f9;
	--color-input-bg: #eff6fb;
	--primary-gradient: linear-gradient(to right, rgba(31, 181, 218, 1) 0%, rgba(71, 30, 152, 1) 100%);
	--secondary-gradient: linear-gradient(to bottom, rgba(210, 240, 247, 1) 0%, rgba(219, 211, 235, 1) 100%);
	--max-width: var(--width-base);
	--base-duration: 0.25s;
	--base-timing: ease-in-out;
	--text-color-base: var(--color-black);
	--link-color-base: var(--color-primary);
	--link-hover-color-base: var(--text-color-base);
	--body-font-family: 'Plus Jakarta Sans', sans-serif;
	--font-family-icon: 'paperstreet-icons';
	--font-size-base: 18px;
	--font-size-medium: 16px;
	--font-size-h1: 34px;
	--font-size-h2: 30px;
	--font-size-h3: 22px;
	--font-size-h4: 20px;
	--font-size-h5: 18px;
	--font-size-h6: 16px;
	--line-height-base: 1.65;
	--heading-margin: 0 0 20px 0;
	--heading-font-family: 'Plus Jakarta Sans', sans-serif;
	--heading-font-weight: 600;
	--heading-line-height: 1.1;
	--heading-color: inherit;
	--box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
	--py-section: 50px;
}

@media only screen and (min-width: 768px) {
	:root {
		--font-size-h1: 45px;
		--font-size-h2: 34px;
		--font-size-h3: 24px;
		--py-section: 80px;
	}
}

html {
	box-sizing: border-box;
}

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

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

input,
select,
textarea {
	font-size: var(--font-size-base);
	color: var(--text-color-base);
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
	display: none;
}

img {
	display: block;
	border: 0;
	max-width: 100%;
	height: auto;
}

ul,
li {
	list-style: none;
}

*:focus {
	outline: auto;
}

/* CORE > Headings and Paragraphs */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin: 0 0 30px;
	color: var(--color-alternative);
	font-weight: 700;
	font-family: var(--heading-font-family);
	line-height: 1.25;
	letter-spacing: -0.05rem;
}

h1 strong,
h2 strong,
.h1 strong,
.h2 strong,
.text-gradient {
	font-weight: 700;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

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

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

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

h4,
.h4 {
	font-size: var(--font-size-h4);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
}

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

h6,
.h6 {
	line-height: 1.5;
	letter-spacing: 0;
}

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

h1 span.subtitle,
h2 span.subtitle {
	display: block;
	color: #0093ff;
	font-size: 50%;
}

p {
	margin: 0 0 30px;
}

ul {
	list-style: none;
}

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

hr {
	border: 0;
	border-top: 1px solid var(--color-border);
	margin: 30px 0;
}

.blue-title {
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* CORE > Form */
.form-control {
	background: var(--color-input-bg);
	border-radius: var(--border-radius-base);
	height: 50px;
	width: 100%;
	border: 0;
	padding: 5px 15px;
	font-size: 16px;
	color: var(--color-dark);
	font-family: var(--body-font-family);
}

.form-control::placeholder {
	color: var(--color-dark);
}

.form-control:focus {
	outline: none;
}

textarea.form-control {
	margin-top: 15px;
	height: 200px;
	padding: 15px;
}

.input-radio,
.input-checkbox {
	width: 100%;
	padding-top: 1px;
	padding-bottom: 1px;
	margin-bottom: 5px;
	position: relative;
}

.input-radio input,
.input-checkbox input {
	position: absolute;
	opacity: 0;
	top: 0;
	left: 0;
}

.input-radio label,
.input-checkbox label {
	cursor: pointer;
	font-weight: 700;
	font-size: 13px;
	padding-left: 32px;
	display: block;
}

.input-radio label:after,
.input-checkbox label:after {
	width: 19px;
	height: 19px;
	border-radius: 50%;
	border: 1px solid var(--color-gray-dark);
	background: var(--color-input-bg);
	content: '';
	position: absolute;
	top: 3px;
	left: 0;
	transition: all 0.3s;
}

.input-checkbox label:after {
	border-radius: 3px;
}

.input-radio input:checked + label:after,
.input-checkbox input:checked + label:after {
	border-width: 6px;
}

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

a:hover,
a:focus {
	color: var(--link-hover-color-base);
	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 {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	margin: 0;
	padding: 17px 20px;
	border-radius: 100px;
	text-align: center;
	justify-content: center;
	display: inline-flex;
	align-items: center;
	color: var(--color-white);
	background: linear-gradient(to right, rgba(31, 181, 218, 1) 0%, rgba(71, 30, 152, 1) 50%, rgba(31, 181, 218, 1) 100%);
	text-decoration: none;
	letter-spacing: 0.05rem;
	transition: all 0.4s ease-in-out;
	background-size: 200% 100%;
}

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

.button:hover,
.button:focus,
.wp-element-button:hover,
.wp-element-button:focus {
	color: var(--color-white);
	background-position: 100% 0;
	transition: all 0.4s ease-in-out;
}

.button.white {
	color: var(--color-primary);
	background: var(--color-white);
}

button.alt-01,
.button.alt-01 {
	text-transform: uppercase;
}

button.alt-01:hover,
button.alt-01:focus,
.button.alt-01:hover,
.button.alt-01:focus {
	background-color: var(--color-alternative);
	color: #fff;
}

button.outline,
.button.outline {
	background: none;
	border: 2px solid #004d8e;
	color: #004d8e;
}

button.outline:hover,
button.outline:focus,
.button.outline:hover,
.button.outline:focus {
	background: #004d8e;
	color: #fff;
}

button.outline.outline-alt-01,
.button.outline.outline-alt-01 {
	border-color: #fff;
	color: #fff;
}

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: #fff;
	color: var(--color-alternative);
}

button.no-button,
.button.no-button {
	padding: 0;
	background: none;
	color: #0093ff;
	text-transform: none;
}

button.no-button:hover,
button.no-button:focus,
.button.no-button:hover,
.button.no-button:focus {
	color: #000;
	text-decoration: underline;
}

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

button.button-share,
.button.button-share {
	text-transform: none;
}

button.button-icon,
.button.button-icon {
	padding: 0;
	width: 50px;
	height: 50px;
}

button.button-share i,
.button.button-share i {
	margin-left: 5px;
}

button.button-ir i,
.button.button-ir i {
	margin-left: 5px;
}

button.button-il i,
.button.button-il i {
	margin-right: 5px;
}

@media only screen and (min-width: 1024px) {
	.button {
		padding-left: 30px;
		padding-right: 30px;
	}
}

/* CORE > Layout */
main {
	display: block;
	width: 100%;
	flex: 1;
	padding-top: 76px;
}

.wrapper {
	position: relative;
	right: 0;
	top: 0;
	overflow: hidden;
	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;
}

.container,
.container-wide,
.container-full,
.container-medium,
.container-narrow {
	padding-right: var(--gutter-side);
	padding-left: var(--gutter-side);
}

@media only screen and (min-width: 768px) {
	main {
		padding-top: 87px;
	}

	.container-narrow {
		padding-right: calc((100% - var(--width-narrow)) / 2);
		padding-left: calc((100% - var(--width-narrow)) / 2);
	}
}

@media only screen and (min-width: 1025px) {
	main {
		padding-top: 148px;
	}
}

@media only screen and (min-width: 1150px) {
	.container,
	.container-medium {
		padding-right: calc((100% - var(--width-base)) / 2);
		padding-left: calc((100% - var(--width-base)) / 2);
	}

	.page-id-31 .action-block.container {
		padding-right: calc((100% - var(--width-base)) / 3);
		padding-left: calc((100% - var(--width-base)) / 3);
	}
}

@media only screen and (min-width: 1340px) {
	.home .container,
	.container-medium {
		padding-right: calc((100% - var(--width-wide)) / 2);
		padding-left: calc((100% - var(--width-wide)) / 2);
	}

	.container-wide {
		padding-right: calc((100% - var(--width-wide)) / 2);
		padding-left: calc((100% - var(--width-wide)) / 2);
	}
}

@media only screen and (min-width: 1440px) {
	main {
		padding-top: 169px;
	}

	.container-wide {
		padding-right: calc((100% - 1360px) / 2);
		padding-left: calc((100% - 1360px) / 2);
	}

	.container-full {
		padding-right: calc(var(--gutter-side) * 3);
		padding-left: calc(var(--gutter-side) * 3);
	}
}

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

.show-in-pdf,
.hide {
	display: none !important;
}

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

.align-none,
.alignnone {
	display: inline;
}

.center,
.has-text-align-center,
.text-center,
.align-center,
.aligncenter {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.align-left,
.alignleft {
	margin: 0 20px 20px 0;
	float: left;
}

.align-right,
.alignright {
	margin: 0 0 20px 20px;
	float: right;
}

.wp-caption {
	margin: 0 0 20px;
}

.wp-caption .wp-caption-text {
	margin: 5px;
	font-style: italic;
}

.gslide-description {
	display: none;
}

@media screen and (min-width: 670px) {
	.grid-two-col {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 175px;
	}
}

@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: 0px), 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;
	}
}

/* ### Swiper ### */
.swiper-button-next,
.swiper-button-prev {
	top: 50%;
	width: auto;
	height: auto;
	margin-top: 0;
	transform: translateY(-50%);
	color: var(--color-primary);
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 38px;
	font-weight: normal;
	font-family: var(--font-family-icon);
}

.swiper-button-next:after {
	content: '\e906';
}

.swiper-button-prev:after {
	content: '\e905';
}

/* GENERAL > Skip To Content */
#skiptocontent {
	z-index: 100;
	position: fixed;
	display: block !important;
	transform: translateY(-40px);
	opacity: 0;
}

#skiptocontent:focus {
	transform: translateY(0);
	opacity: 1;
}

@media only screen and (max-width: 640px) {
	#skiptocontent {
		display: none !important;
	}
}

/* ### header ### */
.header {
	top: 0;
	left: 0;
	z-index: 99;
	align-items: center;
	width: 100%;
	display: flex;
	position: fixed;
	padding-top: 55px;
	padding-bottom: 15px;
	transition: all var(--base-duration) var(--base-timing);
}

.header-logo {
	display: block;
	width: 218px;
	transition: width var(--base-duration) var(--base-timing);
}

.header-logo img {
	width: 100%;
}

.header-holder {
	flex: 1;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	align-items: flex-end;
}

.header-info {
	display: flex;
	align-items: center;
}

.header-info .button {
	display: none;
}

.header-phone {
	background: var(--color-black);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: var(--color-white) !important;
	margin-right: 10px;
	width: 45px;
	height: 45px;
	border-radius: 5px;
	font-size: 20px;
	border: 0;
}

.header-menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to right, rgba(31, 181, 218, 1) 0%, rgba(71, 30, 152, 1) 100%);
	width: 45px;
	height: 45px;
	border: 0;
	border-radius: 5px;
}

.header-menu-toggle span {
	display: block;
	width: 17px;
	height: 2px;
	border-radius: 2px;
	background-color: var(--color-white);
	position: relative;
	transition: all 0.3s;
}

.header-menu-toggle span:before,
.header-menu-toggle span:after {
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background-color: var(--color-white);
	position: absolute;
	transition: all 0.3s;
}

.header-menu-toggle span:before {
	top: -6px;
}

.header-menu-toggle span:after {
	top: 6px;
}

.header-call {
	display: none;
}

.header-call a {
	display: inline-flex;
	text-decoration: none;
	align-items: center;
	margin-left: 5px;
	color: var(--color-primary-dark);
}

.header-call a:hover span,
.header-call a:focus span {
	text-decoration: underline;
}

.header-call a i {
	font-size: 70%;
}

.header-call strong {
	font-size: 15px;
}

.header-menu {
	display: none;
}

.header-menu .menu-close {
	display: none;
}

.header-menu > ul {
	margin: 0;
}

.header-top {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	font-weight: 700;
	color: var(--color-white);
	background: linear-gradient(to right, rgba(31, 181, 218, 1) 0%, rgba(71, 30, 152, 1) 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	text-decoration: none;
}

.header.is-fixed {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	background-color: var(--color-white);
}

.admin-bar .header {
	margin-top: 46px;
}

.admin-bar #wpadminbar {
	position: fixed;
}

@media only screen and (min-width: 641px) {
	.header {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.header-logo {
		width: 222px;
	}

	.header-call a i {
		margin-right: 5px;
	}

	.header-top {
		display: none;
	}

	.header.is-fixed {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.header.is-fixed .header-logo {
		width: 200px;
	}
}

@media only screen and (min-width: 783px) {
	.admin-bar .header {
		margin-top: 32px;
	}
}

@media only screen and (min-width: 1025px) {
	.header {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.header-menu-toggle {
		display: none;
	}

	.header-info .button {
		display: inline-flex;
	}

	.header-phone {
		display: none;
	}

	.header-call {
		margin-right: 15px;
		display: flex;
		align-items: center;
		color: var(--color-primary-dark);

		font-size: 18px;
		font-weight: 700;
	}

	.header-logo {
		margin-top: 0;
		width: 270px;
	}

	.header-menu {
		display: block;
	}

	.header-menu > ul {
		display: flex;
	}

	.header-menu > ul > li {
		padding-top: 20px;
		padding-bottom: 10px;
		position: relative;
	}

	.header-menu > ul > li:not(:first-child) {
		margin-left: 12px;
	}

	.header-menu > ul > li > a {
		font-size: 17px;
		text-decoration: none;
		font-weight: 700;
		color: var(--color-black);
	}

	.header-menu > ul > li:hover > a,
	.header-menu > ul > li > a:hover,
	.header-menu > ul > li > a:focus {
		color: var(--color-primary);
	}

	.header-menu > ul > li > ul {
		display: block;
		transition: all 0.3s;
		padding: 10px;
		position: absolute;
		top: 100%;
		left: 0;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		background: var(--color-white);
		border-radius: var(--border-radius-base);
	}

	.header-menu > ul > li:hover > ul,
	.header-menu > ul > li:focus-within > ul {
		opacity: 1;
		visibility: visible;
		pointer-events: unset;
	}

	.header-menu > ul > li > ul > li > a {
		font-size: 15px;
		color: var(--color-black);
		text-decoration: none;
		white-space: nowrap;
		display: block;
		padding: 8px 15px;
	}

	.header-menu > ul > li > ul > li > a:hover,
	.header-menu > ul > li > ul > li > a:focus {
		color: var(--color-primary);
		background: #f5f9fc;
	}

	.header-menu > ul > li > ul > li > ul {
		display: block;
		transition: all 0.3s;
		padding: 6px 10px 6px 20px;
		position: absolute;
		top: 0;
		left: calc(100% - 10px);
		opacity: 0;
		visibility: hidden;
		background: var(--color-white);
		border-radius: 0 10px 10px 0;
	}

	.header-menu > ul > li > ul > li:hover > ul,
	.header-menu > ul > li > ul > li:focus-within > ul {
		opacity: 1;
		visibility: visible;
	}

	.header-menu > ul > li > ul > li > ul > li {
		line-height: 1.3;
	}

	.header-menu > ul > li > ul > li > ul > li > a {
		font-size: 16px;
		color: var(--color-black);
		text-decoration: none;
		width: 250px;
		display: inline-block;
		padding: 8px 25px;
	}

	.header-menu > ul > li > ul > li > ul > li > a:hover,
	.header-menu > ul > li > ul > li > ul > li > a:focus {
		color: var(--color-primary);
	}

	.header-menu > ul > li:last-child > ul {
		right: 0;
		left: auto;
	}

	.header-menu > ul > li.mega-menu > ul {
		padding: 23px 30px 10px 480px;
		display: flex;
		flex-wrap: wrap;
		left: auto;
		right: -225px;
		width: 985px;
		box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
	}

	.header-menu > ul > li.mega-menu > ul:after {
		position: absolute;
		top: -10px;
		right: 248px;
		width: 20px;
		height: 20px;
		background-color: var(--color-white);
		transform: rotate(45deg);
		content: '';
	}

	.header-menu > ul > li.mega-menu > ul:before {
		position: absolute;
		top: 0;
		left: 0;
		width: 46.0%;
		height: 100%;
		z-index: 1;
		border-radius: 10px 0 0 10px;
		background-color: #f9fcfd;
		content: '';
	}

	.header-menu > ul > li.mega-menu > ul > li {
		z-index: 2;
		width: 50%;
		position: relative;
		padding-left: 40px;
	}

	.header-menu > ul > li.mega-menu > ul > li:nth-child(1) {
		padding-left: 40px;
		position: absolute;
		top: 23px;
		left: 25px;
		width: calc(50% - 25px);
		z-index: 2;
	}

	.header-menu > ul > li.mega-menu > ul > li:nth-child(1) > ul {
		display: block;
		column-count: 2;
		max-height: 360px;
		vertical-align: top;
		-webkit-column-count: 2; /* Safari and older versions of Chrome */
		-moz-column-count: 2; /* Firefox */
	}

	.header-menu > ul > li.mega-menu > ul > li:nth-child(1) > ul > li {
		width: 100%;
		display: inline-block;
	}

	.header-menu > ul > li.mega-menu > ul > li:nth-child(1) > ul > li > a {
		margin-bottom: 5px;
		font-size: 14px;
		font-weight: 700;
	}

	.header-menu > ul > li.mega-menu > ul > li:nth-child(1) > ul > li > ul {
		margin-top: 15px;
	}

	.header-menu > ul > li.mega-menu > ul > li:nth-child(1) > ul > li > ul > li {
		width: 100%;
	}

	.header-menu > ul > li.mega-menu > ul > li:nth-child(1) > ul > li > ul > li:not(:last-child) {
		margin-bottom: 8px;
	}

	.header-menu > ul > li.mega-menu > ul > li:nth-child(1) > ul > li:first-child {
		min-height: 370px;
	}

	.header-menu > ul > li.mega-menu > ul > li:nth-child(1) > ul > li:first-child > ul {
		display: block;
		column-count: 2;
		-webkit-column-count: 2; /* Safari and older versions of Chrome */
		-moz-column-count: 2; /* Firefox */
	}

	.header-menu > ul > li.mega-menu > ul > li > a {
		font-size: 18px;
		font-weight: 700;
		white-space: none;
		padding-left: 0;
		padding-right: 0;
	}

	.header-menu > ul > li.mega-menu > ul > li > a:hover,
	.header-menu > ul > li.mega-menu > ul > li > a:focus{
		color: var(--color-blue);
		background-color: transparent;
	}

	.header-menu > ul > li.mega-menu > ul > li:nth-child(1) {
		background-image: url('../images/mega-menu-icon1.svg');
		background-repeat: no-repeat;
		background-position: top 13px left;
	}

	.header-menu > ul > li.mega-menu > ul > li:nth-child(2) {
		background-image: url('../images/mega-menu-icon2.svg');
		background-repeat: no-repeat;
		background-position: top 7px left;
	}

	.header-menu > ul > li.mega-menu > ul > li:nth-child(3) {
		background-image: url('../images/mega-menu-icon4.svg');
		background-repeat: no-repeat;
		background-position: top 10px left;
	}

	.header-menu > ul > li.mega-menu > ul > li:nth-child(4) {
		background-image: url('../images/mega-menu-icon3.svg');
		background-repeat: no-repeat;
		background-position: top 10px left;
	}

	.header-menu > ul > li.mega-menu > ul > li:nth-child(5) {
		background-image: url('../images/mega-menu-icon5.svg');
		background-repeat: no-repeat;
		background-position: top 12px left;
	}


	.header-menu > ul > li.mega-menu > ul > li:last-child > ul > li:nth-child(4) {
		width: auto;
	}

	.header-menu > ul > li.mega-menu > ul > li:last-child > ul > li:nth-child(4) + li {
		width: auto;
		display: flex;
		font-size: 12px;
	}

	.header-menu > ul > li.mega-menu > ul > li:last-child > ul > li:nth-child(4) + li:before {
		content: '|';
		margin: 0 4px;
	}

	.header-menu > ul > li.mega-menu > ul > li > ul {
		padding-right: 0;
		padding-left: 0;
		margin-bottom: 20px;
		position: static;
		z-index: 2;
		opacity: 1;
		visibility: visible;
		display: flex;
		flex-wrap: wrap;
		background-color: transparent;
	}

	.header-menu > ul > li.mega-menu > ul > li > ul > li {
		width: 100%;
	}

	.header-menu > ul > li.mega-menu > ul > li > ul > li:not(:last-child) {
		margin-bottom: 8px;
	}

	.header-menu > ul > li.mega-menu > ul > li.menu-small > ul > li.is-sep {
		width: auto;
		display: flex;
		align-items: center;
	}

	.header-menu > ul > li.mega-menu > ul > li.menu-small > ul > li.is-sep + li {
		width: auto;
	}

	.header-menu > ul > li.mega-menu > ul > li.menu-small > ul > li.is-sep:after {
		content: '|';
		margin: 0 4px;
		font-size: 12px;
	}

	.header-menu > ul > li.mega-menu > ul > li > ul > li:nth-child(1) {
		padding-left: 0;
		position: unset;
		top: auto;
		left: auto;
	}

	.header-menu > ul > li.mega-menu > ul > li > ul > li > a {
		padding: 0;
		width: auto;
		font-size: 12px;
		font-weight: 500;
		display: block;
		color: var(--color-black);
		text-decoration: none;
	}

	.header-menu > ul > li.mega-menu > ul > li > ul > li > a:hover {
		color: var(--color-blue);
	}

	.header-menu > ul > li.mega-menu > ul > li > ul > li > ul {
		margin-bottom: 15px;
	}

	.header-menu > ul > li.mega-menu > ul > li > ul > li > ul > li {
		width: 100%;
	}

	.header-menu > ul > li.mega-menu > ul > li > ul > li > ul > li:nth-child(1) {
		padding-left: 0;
		position: unset;
		top: auto;
		left: auto;
	}

	.header-menu > ul > li.mega-menu > ul > li > ul > li > ul > li:nth-child(1) ul {
		display: block;
		column-count: 2;
	}

	.header-menu > ul > li.mega-menu > ul > li > ul > li > ul > li > a {
		margin-bottom: 0;
		font-size: 12px;
		font-weight: 500;
		display: block;
		color: var(--color-black);
		text-decoration: none;
	}

	.header-menu > ul > li.mega-menu > ul > li > ul > li > ul > li > a:hover,
	.header-menu > ul > li.mega-menu > ul > li > ul > li > ul > li > a:focus {
		color: var(--color-blue);
	}

	.header.is-fixed {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.header.is-fixed .header-logo {
		width: 268px;
	}
}

@media only screen and (min-width: 1200px) {
	.header {
		padding-left: 62px;
		padding-right: 62px;
	}

	.header-menu > ul > li:not(:first-child) {
		margin-left: 39px;
	}

	.header-menu > ul > li > a {
		font-size: 17px;
	}

	.header-menu > ul > li.mega-menu > ul:after {
		right: 175px;
	}

	.header-menu > ul > li.mega-menu > ul {
		right: -150px;
	}

	.header-logo {
		/*	width: 318px; */
	}
}

@media screen and (min-width: 1280px) {
	.header {
		padding-left: 62px;
		padding-right: 62px;
	}
}

@media only screen and (max-width: 1441px) {
	.header-info .button {
		font-size: 15px;
		height: 33px;
		padding: 0 25px;
	}
}

@media only screen and (min-width: 1440px) {
	.header-logo {
		width: 350px;
	}

	.header-call {
		font-size: 18px;
	}

	.header-call a {
		margin-left: 15px;
	}

	.header-info .button {
		font-size: 18px;
		height: 32px;
		padding-top: 0;
		padding-bottom: 0;
	}

	.header-menu > ul > li > a {
		font-size: 17px;
	}

	.header-menu > ul > li.mega-menu > ul:after {
		right: 265px;
	}

	.header-menu > ul > li > ul > li > a {
		font-size: 16px;
		padding-right: 20px;
		padding-left: 20px;
	}

	.header-menu > ul > li:not(:first-child) {
		margin-left: 34px;
	}

	.header-menu > ul > li.mega-menu > ul {
		right: -233px;
	}

}

/* ### benefits list ### */
.benefits-list-item {
	align-items: center;
	display: flex;
	margin-bottom: 30px;
}

.benefits-list-number {
	width: 80px;
	font-weight: 800;
	opacity: 0.2;
	font-size: 100px;
	line-height: 0.84;
	text-align: center;
	background: linear-gradient(to bottom, rgba(31, 181, 218, 1) 0%, rgba(71, 30, 152, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.benefits-list-text {
	flex: 1;
	padding-left: 10px;
}

.benefits-list-text h3 {
	font-size: 24px;
	margin-bottom: 5px;
}

.benefits-list-text p {
	margin-bottom: 0;
}

@media only screen and (min-width: 1025px) {
	.benefits-list-number {
		width: 95px;
		font-size: 140px;
	}

	.benefits-list-text {
		width: calc(100% - 100px);
	}
}

/* ### card link ### */
.card-link {
	text-align: center;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.card-link-scroll {
	overflow: auto;
	text-align: center;
	background: var(--color-black);
	border-radius: 50px;
	padding: 6px 6px;
}

.card-link ul {
	margin: 0;
	display: inline-flex;
	white-space: nowrap;
	justify-content: center;
}

.card-link ul li a {
	height: 40px;
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	padding: 0 20px;
	font-size: 16px;
	font-weight: 500;
	color: var(--color-white);
}

.card-link ul li.is-active a,
.card-link ul li a:hover,
.card-link ul li a:focus,
.card-link ul li.current-menu-item a {
	background: linear-gradient(to bottom, rgba(31, 181, 218, 1) 0%, rgba(71, 30, 152, 1) 100%);
}

@media only screen and (min-width: 768px) {
	.card-link ul li {
		margin: 0 2px;
	}

	.card-link ul li a {
		height: 50px;
	}
}

/* ### entry ### */
.entry ol {
	margin-left: 20px;
}

.entry ul ul,
.entry ol ol,
.entry ul ol,
.entry ol ul {
	margin-top: 5px;
	margin-bottom: 5px;
}

.entry ol li {
	padding-left: 5px;
	list-style-type: decimal;
}

.entry ol li::marker {
	font-weight: 700;
	color: var(--color-primary);
}

.entry ol li:not(:last-child),
.entry ul li:not(:last-child) {
	margin-bottom: 5px;
}

.entry ul li {
	padding-left: 20px;
	position: relative;
	list-style: none;
}

.entry ul li:before {
	position: absolute;
	top: 10px;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 25px;
	background-color: var(--color-primary);
	content: '';
}

.entry-video {
	position: relative;
	padding-bottom: 52.25%;
	padding-top: 25px;
	height: 0;
}

.entry-video iframe,
.entry-video object,
.entry-video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* #### payment */

.payment-text .box {
	margin-right: -20px;
	margin-left: -20px;
	padding-top: 76px;
	padding-right: 35px;
	padding-bottom: 65px;
	padding-left: 35px;
	position: relative;
	width: calc(100% + 40px);
	background-color: var(--color-white);
	text-align: center;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
}

/* ### footer ### */
.footer {
	color: var(--color-white);
	background: var(--color-primary-dark);
	position: relative;
	padding-top: 30px;
}

.footer-logo {
	margin: 0 auto 45px;
	display: block;
	width: 315px;
}

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

.footer-top {
	width: 100%;
	padding-bottom: 50px;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.31);
}

.footer-top h3 {
	color: var(--color-white);
}

.footer-btn {
	border-radius: 40px;
	text-decoration: none;
	font-size: 16px;
	text-transform: uppercase;
	height: 63px;
	padding: 0 30px;
	display: inline-flex;
	align-items: center;
	font-weight: 700;
	border: 2px solid var(--color-white);
	color: var(--color-white);
}

.footer-btn:hover,
.footer-btn:focus {
	background: var(--color-white);
}

.footer-mid {
	width: 100%;
	padding: 50px 0;
}

.footer address {
	display: block;
	margin-top: 16px;
	font-size: 24px;
	font-weight: 500;
	font-style: normal;
	margin-bottom: 50px;
	line-height: 1.4;
}

.footer-social {
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.footer-social li {
	margin-right: 30px;
}

.footer-social li:last-child {
	margin-right: 0;
}

.footer-social li a {
	color: var(--color-white);
	font-size: 23px;
	display: block;
	line-height: 1.2;
	text-decoration: none;
}

.footer-social li a:hover,
.footer-social li a:focus {
	color: var(--color-info);
}

.footer-phone a {
	font-size: 24px;
	font-style: normal;
	text-decoration: none;
	font-weight: 700;
	line-height: 1.4;
	display: inline-block;
	color: var(--color-white);
}

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

.footer-left {
	width: 100%;
	text-align: center;
}

.footer-title {
	font-size: 20px;
	margin-bottom: 10px;
	font-weight: 700;
}

.footer-menu li {
	margin-bottom: 8px;
}

.footer-menu li a {
	color: var(--color-white);
	text-decoration: none;
	font-size: 17px;
}

.footer-menu li a:hover,
.footer-menu li a:focus {
	text-decoration: underline;
}

.footer-right {
	width: 100%;
	display: inline-flex;
	flex-wrap: wrap;
}

.footer-right .col-1 {
	text-align: center;
	width: 100%;
}

.footer-bottom {
	padding-top: 50px;
	padding-bottom: 50px;
	background: var(--color-white);
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.footer-copyright {
	order: 1;
	width: 100%;
}

.footer-copyright a {
	color: inherit;
}

.footer-copyright a:hover,
.footer-copyright a:focus {
	color: var(--color-primary);
}

.footer-copyright p {
	font-size: 17px;
	color: #767676;
	margin: 0;
}

.footer-copyright ul {
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}

.footer-copyright ul li {
	font-size: 17px;
	color: #767676;
	display: inline-flex;
	align-items: center;
}

.footer-copyright ul li:after {
	content: '|';
	margin: 0 3px;
}

.footer-copyright ul li:last-child:after {
	display: none;
}

.footer-copyright ul li a {
	color: #767676;
}

.footer-brands-logo {
	display: flex;
	margin-bottom: 30px;
	justify-content: center;
	align-items: center;
}

@media only screen and (min-width: 991px) {
	.footer {
		padding-top: 66px;
	}

	.footer-mid {
		padding: 70px 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.footer-left {
		width: 40%;
		text-align: left;
	}

	.footer-logo {
		margin: 0 0 45px;
	}

	.footer-top {
		display: flex;
		padding-bottom: 35px;
		align-items: center;
		justify-content: space-between;
	}

	.footer-top h3 {
		flex: 1;
		text-align: left;
		margin-bottom: 0;
	}

	.footer-right {
		width: auto;
	}

	.footer-right .col-1 {
		width: auto;
		margin-left: 140px;
		text-align: left;
	}

	.footer-right .col-1:first-child {
		margin-left: 0;
	}

	.footer-social {
		margin-bottom: 0;
		justify-content: flex-start;
	}

	.footer-bottom {
		justify-content: space-between;
		text-align: left;
	}

	.footer-copyright {
		order: inherit;
		width: auto;
	}

	.footer-brands {
		display: inline-flex;
		align-items: center;
	}

	.footer-brands-logo {
		margin-bottom: 0;
	}

	.footer-copyright ul {
		justify-content: flex-start;
	}

	.footer-brands-logo {
		margin-right: 20px;
	}

	.footer-brands-logo:last-child {
		margin-right: 0;
	}
}

@media only screen and (min-width: 1200px) {
	.footer-brands-logo {
		margin-right: 35px;
	}
}

#menu-item-38525 a {
	/*display: inline-block;*/
	padding: 10px 10px;
	/*border: 2px solid #0085CB;*/
	background-color: #0085cb;
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s ease;
}

#menu-item-38525 a:hover {
	background-color: #e6f3ff;
	color: #0085cb;
}

.blog-detail.container.after-flexible-on-post {
	/*Added for request to move share buttons below new flexible content section on posts 11/5/24 - Rob*/
	margin: 0;
	padding-top: 0;
}

