.ct-skip-link {
	position: absolute;
	left: -9999px;
	top: 12px;
	z-index: 10000;
	background: #ffffff;
	color: #1c75bb;
	padding: 10px 12px;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
	text-decoration: none;
	font-weight: 700;
}
.ct-skip-link:focus {
	left: 12px;
}

.ct-icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: -0.125em;
}
.w-flipbox-front-icon .ct-icon {
	vertical-align: top;
}

html {
	--ct-header-top-height: 40px;
	--ct-header-main-height: 60px;
	--ct-header-total-height: calc(var(--ct-header-top-height) + var(--ct-header-main-height));
	--ct-header-spacer-height: var(--ct-header-total-height);
}
@media (max-width: 1024px) {
	html {
		--ct-header-top-height: 36px;
	}
}
@media (max-width: 600px) {
	html {
		--ct-header-main-height: 70px;
	}
}

html.ct-no-scroll,
html.ct-no-scroll body {
	overflow: hidden;
}

html,
body {
	background: #cccccc;
}

.ct-header-spacer {
	height: var(--ct-header-spacer-height);
	transition: height 300ms ease;
}

.ct-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.ct-header__container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
}

.ct-header__top {
	height: var(--ct-header-top-height);
	display: flex;
	align-items: center;
	background: #cccccc;
	padding: 0 40px;
	overflow: hidden;
	transition: height 300ms ease;
}
.ct-header__top .ct-header__container {
	height: 100%;
}
.ct-header__top-spacer {
	flex: 1 1 auto;
	height: 100%;
}
.ct-header__top-links {
	display: flex;
	gap: 0;
	height: 100%;
	align-items: center;
}
.ct-header__top-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 21px;
	border-radius: 4px 4px 0 0;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.14px;
	color: #1c75bb;
	background: #ffffff;
	margin: 0 4px -10px;
}
.ct-header__top-link:hover,
.ct-header__top-link:focus-visible {
	color: #1c75bb;
	background: #ffffff;
}
.ct-header__top-link--primary {
	background: #ffffff;
}
.ct-header__top-link--secondary {
	color: #009750;
	background: #eeeeee;
}

.ct-header__main {
	height: var(--ct-header-main-height);
	display: flex;
	align-items: center;
	background: #ffffff;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
	padding: 0 40px;
	transition: height 300ms ease, box-shadow 300ms ease;
}

.ct-header__logo img {
	display: block;
	height: 45px;
	width: auto;
	transition: height 300ms ease;
}

html.ct-header-sticky {
	--ct-header-top-height: 0px;
	--ct-header-main-height: 50px;
}
html.ct-header-sticky .ct-header__top {
	height: 0;
	overflow: hidden;
}
html.ct-header-sticky .ct-header__main {
	height: var(--ct-header-main-height);
}
html.ct-header-sticky .ct-header__logo img {
	height: 35px;
}
html.ct-header-sticky .ct-header__nav,
html.ct-header-sticky .ct-header__nav-list,
html.ct-header-sticky .ct-header__nav-link {
	height: var(--ct-header-main-height);
	line-height: var(--ct-header-main-height);
}

.ct-header__nav-wrap {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-left: auto;
}

.ct-header__nav {
	display: flex;
	align-items: center;
	height: var(--ct-header-main-height);
	line-height: var(--ct-header-main-height);
	transition: height 300ms ease, line-height 300ms ease;
}
.ct-header__nav-list {
	display: flex;
	align-items: center;
	gap: 0;
	list-style: none;
	padding: 0;
	margin: 0;
	height: var(--ct-header-main-height);
	line-height: var(--ct-header-main-height);
	transition: height 300ms ease, line-height 300ms ease;
}

.ct-header__nav-item {
	position: relative;
	margin-bottom: 0;
}
.ct-header__nav-item--has-children {
	position: relative;
}

.ct-header__nav-link {
	display: block;
	text-decoration: none;
	font-weight: 400;
	font-size: 16px;
	line-height: var(--ct-header-main-height);
	color: #16161a;
	letter-spacing: normal;
	text-transform: none;
	padding: 0 20px;
	height: var(--ct-header-main-height);
	white-space: nowrap;
	transition: height 300ms ease, line-height 300ms ease;
}
.ct-header__nav-link:hover,
.ct-header__nav-link:focus-visible {
	color: #1c75bb;
}

.ct-header__nav-item--cta {
	display: none;
}
.ct-header__nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	background: #1c75bb;
	color: #ffffff;
	text-decoration: none;
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 0.02em;
}
.ct-header__nav-cta:hover,
.ct-header__nav-cta:focus-visible {
	background: #155a91;
}

.ct-header__dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 280px;
	list-style: none;
	padding: 10px;
	margin: 0;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
	opacity: 0;
	transform: translateY(6px);
	pointer-events: none;
	transition: opacity 150ms ease, transform 150ms ease;
}
.ct-header__nav-item:hover > .ct-header__dropdown,
.ct-header__nav-item:focus-within > .ct-header__dropdown {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.ct-header__dropdown-item + .ct-header__dropdown-item {
	margin-top: 2px;
}
.ct-header__dropdown-link {
	display: block;
	padding: 10px 12px;
	border-radius: 10px;
	text-decoration: none;
	color: #16161a;
	font-size: 14px;
	line-height: 1.2;
}
.ct-header__dropdown-link:hover,
.ct-header__dropdown-link:focus-visible {
	background: rgba(28, 117, 187, 0.08);
	color: #1c75bb;
}

.ct-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11.2px 18.2px;
	border-radius: 4px;
	background: #1c75bb;
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.14px;
	text-transform: uppercase;
	white-space: nowrap;
	line-height: 1.2;
}
.ct-header__cta:hover,
.ct-header__cta:focus-visible {
	background: #155a91;
	color: #ffffff;
}

.ct-header__menu-button {
	display: none;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	color: #16161a;
	margin-left: auto;
}
.ct-header__menu-button:hover,
.ct-header__menu-button:focus-visible {
	background: rgba(28, 117, 187, 0.08);
	color: #1c75bb;
}
.ct-header__menu-icon {
	width: 26px;
	height: 26px;
}

@media (max-width: 900px) {
	.ct-header__nav-wrap {
		display: none;
	}
	.ct-header__cta {
		display: none;
	}
	.ct-header__menu-button {
		display: inline-flex;
	}
}

.ct-mobile-dialog {
	border: 0;
	padding: 0;
	margin: 0;
	width: 100%;
	max-width: 420px;
	height: 100%;
	max-height: 100%;
	background: transparent;
}
.ct-mobile-dialog::backdrop {
	background: rgba(0, 0, 0, 0.55);
}
.ct-mobile-dialog[open] {
	margin-left: auto;
}

.ct-mobile-dialog__panel {
	height: 100%;
	background: #ffffff;
	box-shadow: -30px 0 80px rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
}

.ct-mobile-dialog__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 18px 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ct-mobile-dialog__logo img {
	display: block;
	height: 34px;
	width: auto;
}

.ct-mobile-dialog__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 12px;
	background: rgba(28, 117, 187, 0.08);
	color: #1c75bb;
}
.ct-mobile-dialog__close:hover,
.ct-mobile-dialog__close:focus-visible {
	background: rgba(28, 117, 187, 0.14);
}
.ct-mobile-dialog__close svg {
	width: 22px;
	height: 22px;
}

.ct-mobile-dialog__content {
	padding: 18px;
	overflow: auto;
	flex: 1 1 auto;
}

.ct-mobile-dialog__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 48px;
	border-radius: 14px;
	background: #1c75bb;
	color: #ffffff;
	text-decoration: none;
	font-weight: 800;
	letter-spacing: 0.02em;
	margin-bottom: 16px;
}
.ct-mobile-dialog__cta:hover,
.ct-mobile-dialog__cta:focus-visible {
	background: #155a91;
	color: #ffffff;
}

.ct-mobile-dialog__list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.ct-mobile-dialog__item + .ct-mobile-dialog__item {
	margin-top: 6px;
}
.ct-mobile-dialog__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 12px;
	border-radius: 12px;
	text-decoration: none;
	color: #16161a;
	font-weight: 700;
	font-size: 15px;
}
.ct-mobile-dialog__link:hover,
.ct-mobile-dialog__link:focus-visible {
	background: rgba(28, 117, 187, 0.08);
	color: #1c75bb;
}

.ct-mobile-dialog__details {
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.02);
}
.ct-mobile-dialog__summary {
	cursor: pointer;
	list-style: none;
	padding: 12px 12px;
	font-weight: 800;
	color: #16161a;
}
.ct-mobile-dialog__summary::-webkit-details-marker {
	display: none;
}
.ct-mobile-dialog__sublist {
	list-style: none;
	padding: 0 12px 12px;
	margin: 0;
}
.ct-mobile-dialog__subitem + .ct-mobile-dialog__subitem {
	margin-top: 4px;
}
.ct-mobile-dialog__subitem .ct-mobile-dialog__link {
	padding: 10px 10px;
	font-weight: 600;
	font-size: 14px;
}

.ct-mobile-dialog__top-links {
	display: flex;
	gap: 10px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.ct-mobile-dialog__top-link {
	flex: 1 1 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 800;
	font-size: 14px;
	color: #1c75bb;
	background: rgba(28, 117, 187, 0.08);
}
.ct-mobile-dialog__top-link:hover,
.ct-mobile-dialog__top-link:focus-visible {
	background: rgba(28, 117, 187, 0.14);
}

.ct-back-to-top {
	position: fixed;
	left: 18px;
	bottom: 18px;
	z-index: 9999;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	border: 0;
	background: rgba(0, 0, 0, 0.72);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity 150ms ease, transform 150ms ease, background-color 150ms ease;
}
.ct-back-to-top:hover,
.ct-back-to-top:focus-visible {
	background: rgba(28, 117, 187, 0.92);
}
.ct-back-to-top[data-visible='true'] {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.ct-back-to-top__icon {
	width: 26px;
	height: 26px;
}

.header_hor .ct-header ~ .l-canvas .l-section.full_height:not(:first-of-type) {
	min-height: calc(100vh - var(--header-sticky-height));
}

.owl-prev::after,
.owl-next::after {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-color: currentColor;
	mask-size: contain;
	mask-position: center;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
}

.owl-prev::after {
	mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M15.41%207.41%2014%206l-6%206%206%206%201.41-1.41L10.83%2012z%27/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M15.41%207.41%2014%206l-6%206%206%206%201.41-1.41L10.83%2012z%27/%3E%3C/svg%3E");
}

.owl-next::after {
	mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M8.59%2016.59%2010%2018l6-6-6-6-1.41%201.41L13.17%2012z%27/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M8.59%2016.59%2010%2018l6-6-6-6-1.41%201.41L13.17%2012z%27/%3E%3C/svg%3E");
}
