.c2sch-header,
.c2sch-header * {
	box-sizing: border-box;
}

.c2sch-header {
	position: relative;
	width: 100%;
	z-index: 1000;
}

.c2sch-header.is-sticky-enabled {
	position: sticky;
	top: 0;
}

.c2sch-header-shell {
	position: relative;
	width: 100%;
	background: rgba(12, 16, 22, .72);
	border: 1px solid rgba(255, 255, 255, .08);
	-webkit-backdrop-filter: blur(18px) saturate(160%);
	backdrop-filter: blur(18px) saturate(160%);
	transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.c2sch-header.is-transparent:not(.is-scrolled) .c2sch-header-shell {
	background: rgba(12, 16, 22, .45);
}

.c2sch-header.is-scrolled .c2sch-header-shell {
	background: rgba(10, 14, 20, .88);
}

.c2sch-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 28px;
	background: rgba(255, 255, 255, .02);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.c2sch-topbar-left,
.c2sch-topbar-right {
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
	flex-wrap: wrap;
}

.c2sch-topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.c2sch-topbar-item a,
.c2sch-topbar-item span,
.c2sch-topbar-social-label {
	text-decoration: none;
	line-height: 1.35;
}

.c2sch-topbar-divider {
	width: 1px;
	height: 16px;
	background: rgba(255, 255, 255, .14);
	flex: 0 0 1px;
}

.c2sch-topbar-icon,
.c2sch-topbar-socials a,
.c2sch-topbar-socials span,
.c2sch-contact-icon,
.c2sch-desktop-socials a,
.c2sch-desktop-socials span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: currentColor;
}

.c2sch-topbar-icon {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	font-size: 14px;
}

.c2sch-topbar-icon i,
.c2sch-topbar-icon svg,
.c2sch-topbar-socials i,
.c2sch-topbar-socials svg,
.c2sch-contact-icon i,
.c2sch-contact-icon svg,
.c2sch-desktop-socials i,
.c2sch-desktop-socials svg {
	display: block;
	width: 1em;
	height: 1em;
	line-height: 1;
	fill: currentColor;
	stroke: currentColor;
}

.c2sch-topbar-socials {
	display: flex;
	align-items: center;
	gap: 14px;
}

.c2sch-topbar-socials a,
.c2sch-topbar-socials span {
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	transition: transform .2s ease, opacity .2s ease;
}

.c2sch-topbar-socials a:hover {
	transform: translateY(-2px);
}

.c2sch-mainbar {
	width: 100%;
}

.c2sch-mainbar-inner {
	display: grid;
	grid-template-columns: auto auto 1fr auto;
	align-items: stretch;
	min-height: 98px;
	padding: 0;
}

.c2sch-mainbar-inner.c2sch-no-nav {
	grid-template-columns: auto auto 1fr;
}

.c2sch-trigger-cell,
.c2sch-branding-cell,
.c2sch-actions-cell {
	display: flex;
	align-items: center;
	min-height: inherit;
}

.c2sch-trigger-cell {
	justify-content: center;
	min-width: 168px;
	padding: 0 18px;
	border-right: 1px solid rgba(255, 255, 255, .08);
}

.c2sch-branding-cell {
	justify-content: flex-start;
	min-width: 308px;
	padding: 0 46px;
	border-right: 1px solid rgba(255, 255, 255, .08);
}

.c2sch-nav-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
	padding: 0 28px;
}

.c2sch-actions-cell {
	justify-content: flex-end;
	gap: 22px;
	min-width: 0;
	padding: 0 28px;
}

.c2sch-logo {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	text-decoration: none;
}

.c2sch-logo-image {
	display: block;
	height: auto;
	max-width: 100%;
}

.c2sch-logo-image--desktop {
	width: 182px;
}

.c2sch-logo-image--mobile {
	display: none;
	width: 172px;
}

.c2sch-menu,
.c2sch-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.c2sch-menu--desktop {
	display: flex;
	align-items: center;
	gap: 30px;
}

.c2sch-menu--desktop > li {
	position: relative;
}

.c2sch-menu--desktop > li > a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 1.2;
	color: #fff;
	transition: color .2s ease;
}

.c2sch-menu--desktop > li.menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	margin-left: 8px;
	width: 6px;
	height: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
}

.c2sch-menu--desktop .sub-menu {
	position: absolute;
	left: 0;
	top: calc(100% + 16px);
	min-width: 220px;
	padding: 10px;
	background: rgba(13, 17, 23, .94);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 12px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
	z-index: 30;
}

.c2sch-menu--desktop .sub-menu .sub-menu {
	top: 0;
	left: calc(100% + 10px);
}

.c2sch-menu--desktop li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.c2sch-menu--desktop .sub-menu li + li {
	margin-top: 4px;
}

.c2sch-menu--desktop .sub-menu a {
	display: block;
	padding: 10px 14px;
	border-radius: 8px;
	text-decoration: none;
	color: #fff;
	transition: background .2s ease, color .2s ease;
}

.c2sch-header-info {
	max-width: 220px;
	color: #fff;
	line-height: 1.45;
	word-break: break-word;
}

.c2sch-cta,
.c2sch-panel-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}

.c2sch-cta {
	padding: 18px 28px;
	background: #2b2b2b;
	color: #fff;
	white-space: nowrap;
}

.c2sch-cta:hover,
.c2sch-panel-btn:hover {
	transform: translateY(-1px);
}

.c2sch-trigger {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .12);
	outline: none;
	cursor: pointer;
	transition: background .22s ease, border-color .22s ease, transform .22s ease;
}

.c2sch-trigger:hover,
.c2sch-trigger.is-active {
	background: #f26d4c;
}

.c2sch-trigger--desktop {
	width: 62px;
	height: 62px;
	border-radius: 999px;
	background: transparent;
}

.c2sch-trigger--mobile {
	display: none !important;
	width: 66px;
	height: 66px;
	border-radius: 0;
	background: rgba(255, 255, 255, .02);
}

.c2sch-trigger-lines {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.c2sch-trigger-line {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	border-radius: 99px;
	transition: transform .22s ease, opacity .22s ease;
}

.c2sch-trigger.is-active .c2sch-trigger-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.c2sch-trigger.is-active .c2sch-trigger-line:nth-child(2) {
	opacity: 0;
}

.c2sch-trigger.is-active .c2sch-trigger-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.c2sch-panel-overlay {
	position: fixed;
	inset: 0;
	background: rgba(4, 9, 16, .72);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .28s ease, visibility .28s ease;
	z-index: 99990;
}

.c2sch-panel-overlay.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.c2sch-lock-scroll {
	overflow: hidden;
}

.c2sch-panel {
	position: fixed;
	top: 0;
	height: 100vh;
	max-width: 100vw;
	overflow: hidden;
	z-index: 99991;
	opacity: 1;
	visibility: visible;
}

.c2sch-panel--desktop {
	right: 0;
	width: 430px;
	background: rgba(14, 17, 23, .86);
	border-left: 1px solid rgba(255, 255, 255, .08);
	box-shadow: -16px 0 40px rgba(0, 0, 0, .32);
	-webkit-backdrop-filter: blur(22px) saturate(160%);
	backdrop-filter: blur(22px) saturate(160%);
	transform: translateX(100%);
	transition: transform .3s ease;
}

.c2sch-panel--mobile {
	left: 0;
	width: 340px;
	transform: translateX(-100%);
	transition: transform .3s ease;
}

.c2sch-panel.is-open {
	transform: translateX(0);
}

.c2sch-panel-close {
	position: absolute;
	top: 22px;
	right: 20px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: none;
	border-radius: 0;
	cursor: pointer;
	font-size: 24px;
	line-height: 1;
	transition: transform .2s ease, opacity .2s ease;
}

.c2sch-panel-close:hover {
	transform: rotate(90deg);
}

.c2sch-panel--desktop .c2sch-panel-close {
	background: #f26d4c;
	color: #fff;
}

.c2sch-desktop-panel-inner {
	height: 100%;
	overflow-y: auto;
	padding: 30px 28px 34px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.c2sch-desktop-panel-branding {
	padding-right: 52px;
}

.c2sch-desktop-panel-title {
	margin: 0;
	color: #fff;
	line-height: 1.15;
}

.c2sch-desktop-panel-text,
.c2sch-desktop-panel-text p {
	color: #d7d7d7;
	line-height: 1.7;
}

.c2sch-desktop-panel-text p:last-child {
	margin-bottom: 0;
}

.c2sch-contact-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.c2sch-contact-item {
	display: flex;
	align-items: center;
	gap: 14px;
}

.c2sch-contact-icon {
	width: 38px;
	height: 38px;
	min-width: 38px;
	border-radius: 50%;
	background: #f26d4c;
	color: #fff;
	font-size: 15px;
}

.c2sch-contact-icon svg,
.c2sch-contact-icon i {
	width: 1em;
	height: 1em;
	fill: currentColor;
	stroke: currentColor;
}

.c2sch-contact-text,
.c2sch-contact-text a {
	color: #d7d7d7;
	text-decoration: none;
	line-height: 1.5;
}

.c2sch-panel-btn-wrap {
	display: flex;
}

.c2sch-panel-btn {
	padding: 16px 26px;
	background: #f26d4c;
	color: #fff;
}

.c2sch-desktop-socials {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.c2sch-desktop-socials a,
.c2sch-desktop-socials span {
	width: 46px;
	height: 46px;
	border-radius: 999px;
	text-decoration: none;
	background: #fff;
	color: #f26d4c;
	transition: transform .2s ease, background .2s ease, color .2s ease;
}

.c2sch-desktop-socials a:hover {
	transform: translateY(-2px);
	background: #f26d4c;
	color: #fff;
}

.c2sch-mobile-panel-head {
	position: relative;
	display: flex;
	align-items: center;
	padding: 38px 26px;
	min-height: 128px;
	background: #111318;
	border-right: 1px solid rgba(242, 109, 76, .6);
}

.c2sch-panel--mobile .c2sch-panel-close {
	top: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: #fff;
	color: #111111;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.c2sch-mobile-panel-body {
	height: calc(100vh - 128px);
	overflow-y: auto;
	padding: 26px 26px 34px;
	background: #f3f3f3;
	border-right: 1px solid rgba(242, 109, 76, .6);
	display: flex;
	flex-direction: column;
}

.c2sch-mobile-panel-nav {
	flex: 1 1 auto;
}

.c2sch-mobile-socials {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
	padding-top: 18px;
	border-top: 1px solid #d4d4d4;
}

.c2sch-mobile-socials a,
.c2sch-mobile-socials span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: #f26d4c;
	color: #ffffff;
	text-decoration: none;
	transition: transform .2s ease, opacity .2s ease, background .2s ease, color .2s ease;
}

.c2sch-mobile-socials a:hover {
	transform: translateY(-2px);
	opacity: .92;
}

.c2sch-mobile-socials i,
.c2sch-mobile-socials svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
	stroke: currentColor;
}

.c2sch-mobile-menu,
.c2sch-mobile-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.c2sch-mobile-menu > li,
.c2sch-mobile-menu .sub-menu li {
	position: relative;
	border-bottom: 1px solid #d4d4d4;
}

.c2sch-mobile-menu > li > a,
.c2sch-mobile-menu .sub-menu a {
	display: block;
	padding: 16px 54px 16px 0;
	text-decoration: none;
	color: #111111;
	line-height: 1.4;
	transition: color .2s ease;
}

.c2sch-mobile-menu .sub-menu {
	display: none;
	padding-left: 18px;
}

.c2sch-mobile-menu-toggle {
	position: absolute;
	top: 10px;
	right: 0;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 999px;
	background: #f26d4c;
	color: #fff;
	cursor: pointer;
}

.c2sch-mobile-menu-toggle::before,
.c2sch-mobile-menu-toggle::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 12px;
	height: 2px;
	background: currentColor;
	transform: translate(-50%, -50%);
}

.c2sch-mobile-menu-toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.c2sch-mobile-menu li.is-open > .c2sch-mobile-menu-toggle::after {
	opacity: 0;
}

@media (max-width: 1200px) {
	.c2sch-topbar {
		padding: 14px 20px;
	}

	.c2sch-trigger-cell {
		min-width: 120px;
	}

	.c2sch-branding-cell {
		min-width: 240px;
		padding: 0 28px;
	}

	.c2sch-nav-wrap {
		padding: 0 20px;
	}

	.c2sch-actions-cell {
		padding: 0 20px;
		gap: 16px;
	}
}

@media (max-width: 1024px) {
	.c2sch-topbar {
		display: none;
	}

	.c2sch-mainbar-inner,
	.c2sch-mainbar-inner.c2sch-no-nav {
		grid-template-columns: 1fr auto;
		min-height: 82px;
	}

	.c2sch-trigger-cell,
	.c2sch-nav-wrap,
	.c2sch-header-info {
		display: none !important;
	}

	.c2sch-branding-cell {
		min-width: 0;
		padding: 0 18px;
		border-right: none;
	}

	.c2sch-actions-cell {
		padding: 0 18px;
		gap: 12px;
	}

	.c2sch-trigger--mobile {
		display: inline-flex !important;
	}

	.c2sch-logo-image--desktop {
		display: none;
	}

	.c2sch-logo-image--mobile {
		display: block;
	}

	.c2sch-desktop-panel-branding .c2sch-logo-image--desktop,
	.c2sch-mobile-panel-head .c2sch-logo-image--desktop {
		display: none;
	}

	.c2sch-desktop-panel-branding .c2sch-logo-image--mobile,
	.c2sch-mobile-panel-head .c2sch-logo-image--mobile {
		display: block;
	}

	.c2sch-cta.c2sch-hide-mobile {
		display: none;
	}

	.c2sch-panel--desktop {
		display: none;
	}
}

@media (max-width: 767px) {
	.c2sch-mainbar-inner,
	.c2sch-mainbar-inner.c2sch-no-nav {
		min-height: 74px;
	}

	.c2sch-branding-cell {
		padding: 0 14px;
	}

	.c2sch-actions-cell {
		padding: 0 14px;
	}

	.c2sch-trigger--mobile {
		width: 58px;
		height: 58px;
	}

	.c2sch-panel--mobile {
		width: min(88vw, 360px);
	}

	.c2sch-mobile-panel-head {
		min-height: 118px;
		padding: 34px 22px;
	}

	.c2sch-mobile-panel-body {
		height: calc(100vh - 118px);
		padding: 22px 22px 30px;
	}

	.c2sch-panel--mobile .c2sch-panel-close {
		top: 10px;
		right: 10px;
		width: 36px;
		height: 36px;
	}
}