.btn:hover {
	--ccl-btn-hover-bg: var(--ccl-secondary);
}

:root,
[data-bs-theme="light"] {
	--ccl-primary: #808080;
	--ccl-secondary: #212529;
	--ccl-primary-rgb: 128, 128, 128;
	--ccl-secondary-rgb: 33, 37, 41;
	--ccl-primary-bg-subtle: #cfe2ff;
	--ccl-secondary-bg-subtle: #e2e3e5;
	--ccl-success-bg-subtle: #d1e7dd;
	--ccl-info-bg-subtle: #cff4fc;
	--ccl-warning-bg-subtle: #fff3cd;
	--ccl-danger-bg-subtle: #f8d7da;
	--ccl-light-bg-subtle: #fcfcfd;
	--ccl-dark-bg-subtle: #ced4da;
	--ccl-primary-border-subtle: #9ec5fe;
	--ccl-secondary-border-subtle: #c4c8cb;
	--ccl-success-border-subtle: #a3cfbb;
	--ccl-info-border-subtle: #9eeaf9;
	--ccl-warning-border-subtle: #ffe69c;
	--ccl-danger-border-subtle: #f1aeb5;
	--ccl-light-border-subtle: #e9ecef;
	--ccl-dark-border-subtle: #adb5bd;
	--ccl-white-rgb: 255, 255, 255;
	--ccl-black-rgb: 0, 0, 0;
	--ccl-font-sans-serif: "Inter", sans-ui;
	--ccl-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--ccl-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
	--ccl-body-font-family: var(--ccl-font-sans-serif);
	--ccl-body-font-size: 1.25rem;
	--ccl-body-font-weight: 400;
	--ccl-body-line-height: 1.5;
	--ccl-body-color: #212529;
	--ccl-body-color-rgb: 33, 37, 41;
	--ccl-body-bg: #fff;
	--ccl-body-bg-rgb: 255, 255, 255;
	--ccl-emphasis-color: #000;
	--ccl-emphasis-color-rgb: 0, 0, 0;
	--ccl-secondary-color: rgba(33, 37, 41, 0.75);
	--ccl-secondary-color-rgb: 33, 37, 41;
	--ccl-secondary-bg: #e9ecef;
	--ccl-secondary-bg-rgb: 233, 236, 239;
	--ccl-tertiary-color: rgba(33, 37, 41, 0.5);
	--ccl-tertiary-color-rgb: 33, 37, 41;
	--ccl-tertiary-bg: #f8f9fa;
	--ccl-tertiary-bg-rgb: 248, 249, 250;
	--ccl-heading-color: inherit;
	--ccl-link-color: #212529;
	--ccl-link-color-rgb: 33, 37, 41;
	--ccl-link-decoration: underline;
	--ccl-link-hover-color: #808080;
	--ccl-link-hover-color-rgb: 128, 128, 128;
	--ccl-code-color: #d63384;
	--ccl-highlight-color: #212529;
	--ccl-highlight-bg: #fff3cd;
	--ccl-border-width: 1px;
	--ccl-border-style: solid;
	--ccl-border-color: #dee2e6;
	--ccl-border-color-translucent: rgba(0, 0, 0, 0.175);
	--ccl-border-radius: 0.375rem;
	--ccl-border-radius-sm: 0.25rem;
	--ccl-border-radius-lg: 0.5rem;
	--ccl-border-radius-xl: 1rem;
	--ccl-border-radius-xxl: 2rem;
	--ccl-border-radius-2xl: var(--ccl-border-radius-xxl);
	--ccl-border-radius-pill: 50rem;
	--ccl-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	--ccl-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	--ccl-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
	--ccl-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
	--ccl-focus-ring-width: 0.25rem;
	--ccl-focus-ring-opacity: 0.25;
	--ccl-focus-ring-color: rgba(13, 110, 253, 0.25);
	--ccl-form-valid-color: #198754;
	--ccl-form-valid-border-color: #198754;
	--ccl-form-invalid-color: #dc3545;
	--ccl-form-invalid-border-color: #dc3545;
}

.btn {
	--ccl-btn-padding-x: 2.125rem;
	--ccl-btn-padding-y: 0.625rem;
	--ccl-btn-font-family: ;
	--ccl-btn-font-size: calc(1.3rem + 0.6vw);
	--ccl-btn-font-weight: 400;
	--ccl-btn-line-height: 1.5;
	--ccl-btn-color: var(--bs-body-color);
	--ccl-btn-bg: transparent;
	--ccl-btn-border-width: var(--bs-border-width);
	--ccl-btn-border-color: transparent;
	--ccl-btn-border-radius: var(--bs-border-radius);
	--ccl-btn-hover-border-color: transparent;
	--ccl-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
	--ccl-btn-disabled-opacity: 0.65;
	--ccl-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--ccl-btn-focus-shadow-rgb), .5);
	display: inline-block;
	padding: var(--ccl-btn-padding-y) var(--ccl-btn-padding-x);
	font-family: var(--ccl-btn-font-family);
	font-size: var(--ccl-btn-font-size);
	font-weight: var(--ccl-btn-font-weight);
	line-height: var(--ccl-btn-line-height);
	color: var(--ccl-btn-color);
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	user-select: none;
	border: var(--ccl-btn-border-width) solid var(--ccl-btn-border-color);
	border-radius: var(--ccl-btn-border-radius);
	background-color: var(--ccl-btn-bg);
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (min-width: 1200px) {
	.btn {
		--ccl-btn-font-size: 1.75rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.btn {
		transition: none;
	}
}

.btn:hover {
	color: var(--ccl-btn-hover-color);
	background-color: var(--ccl-btn-hover-bg);
	border-color: var(--ccl-btn-hover-border-color);
}

.btn-check + .btn:hover {
	color: var(--ccl-btn-color);
	background-color: var(--ccl-btn-bg);
	border-color: var(--ccl-btn-border-color);
}

.btn:focus-visible {
	color: var(--ccl-btn-hover-color);
	background-color: var(--ccl-btn-hover-bg);
	border-color: var(--ccl-btn-hover-border-color);
	outline: 0;
	box-shadow: var(--ccl-btn-focus-box-shadow);
}

.btn-check:focus-visible + .btn {
	border-color: var(--ccl-btn-hover-border-color);
	outline: 0;
	box-shadow: var(--ccl-btn-focus-box-shadow);
}

.btn-check:checked + .btn,
:not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
	color: var(--ccl-btn-active-color);
	background-color: var(--ccl-btn-active-bg);
	border-color: var(--ccl-btn-active-border-color);
}

.btn-check:checked + .btn:focus-visible,
:not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
	box-shadow: var(--ccl-btn-focus-box-shadow);
}

.btn-check:checked:focus-visible + .btn {
	box-shadow: var(--ccl-btn-focus-box-shadow);
}

.btn:disabled, .btn.disabled,
fieldset:disabled .btn {
	color: var(--ccl-btn-disabled-color);
	pointer-events: none;
	background-color: var(--ccl-btn-disabled-bg);
	border-color: var(--ccl-btn-disabled-border-color);
	opacity: var(--ccl-btn-disabled-opacity);
}

.btn-primary {
	--ccl-btn-color: #000;
	--ccl-btn-bg: #808080;
	--ccl-btn-border-color: #808080;
	--ccl-btn-hover-color: #000;
	--ccl-btn-hover-bg: #939393;
	--ccl-btn-hover-border-color: #8d8d8d;
	--ccl-btn-focus-shadow-rgb: 109, 109, 109;
	--ccl-btn-active-color: #000;
	--ccl-btn-active-bg: #999999;
	--ccl-btn-active-border-color: #8d8d8d;
	--ccl-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--ccl-btn-disabled-color: #000;
	--ccl-btn-disabled-bg: #808080;
	--ccl-btn-disabled-border-color: #808080;
}

.btn-secondary {
	--ccl-btn-color: #fff;
	--ccl-btn-bg: #212529;
	--ccl-btn-border-color: #212529;
	--ccl-btn-hover-color: #fff;
	--ccl-btn-hover-bg: #1c1f23;
	--ccl-btn-hover-border-color: #1a1e21;
	--ccl-btn-focus-shadow-rgb: 66, 70, 73;
	--ccl-btn-active-color: #fff;
	--ccl-btn-active-bg: #1a1e21;
	--ccl-btn-active-border-color: #191c1f;
	--ccl-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--ccl-btn-disabled-color: #fff;
	--ccl-btn-disabled-bg: #212529;
	--ccl-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
	--ccl-btn-color: #808080;
	--ccl-btn-border-color: #808080;
	--ccl-btn-hover-color: #000;
	--ccl-btn-hover-bg: #808080;
	--ccl-btn-hover-border-color: #808080;
	--ccl-btn-focus-shadow-rgb: 128, 128, 128;
	--ccl-btn-active-color: #000;
	--ccl-btn-active-bg: #808080;
	--ccl-btn-active-border-color: #808080;
	--ccl-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--ccl-btn-disabled-color: #808080;
	--ccl-btn-disabled-bg: transparent;
	--ccl-btn-disabled-border-color: #808080;
	--ccl-gradient: none;
}

.btn-outline-secondary {
	--ccl-btn-color: #212529;
	--ccl-btn-border-color: #212529;
	--ccl-btn-hover-color: #fff;
	--ccl-btn-hover-bg: #212529;
	--ccl-btn-hover-border-color: #212529;
	--ccl-btn-focus-shadow-rgb: 33, 37, 41;
	--ccl-btn-active-color: #fff;
	--ccl-btn-active-bg: #212529;
	--ccl-btn-active-border-color: #212529;
	--ccl-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--ccl-btn-disabled-color: #212529;
	--ccl-btn-disabled-bg: transparent;
	--ccl-btn-disabled-border-color: #212529;
	--ccl-gradient: none;
}

.btn-link {
	--ccl-btn-font-weight: 400;
	--ccl-btn-color: var(--bs-link-color);
	--ccl-btn-bg: transparent;
	--ccl-btn-border-color: transparent;
	--ccl-btn-hover-color: var(--bs-link-hover-color);
	--ccl-btn-hover-border-color: transparent;
	--ccl-btn-active-color: var(--bs-link-hover-color);
	--ccl-btn-active-border-color: transparent;
	--ccl-btn-disabled-color: #6c757d;
	--ccl-btn-disabled-border-color: transparent;
	--ccl-btn-box-shadow: 0 0 0 #000;
	--ccl-btn-focus-shadow-rgb: 49, 132, 253;
	text-decoration: underline;
}

.btn-link:focus-visible {
	color: var(--ccl-btn-color);
}

.btn-link:hover {
	color: var(--ccl-btn-hover-color);
}

.btn-lg {
	--ccl-btn-padding-y: 0.5rem;
	--ccl-btn-padding-x: 1rem;
	--ccl-btn-font-size: 1.25rem;
	--ccl-btn-border-radius: var(--bs-border-radius-lg);
}

.btn-sm {
	--ccl-btn-padding-y: 0.25rem;
	--ccl-btn-padding-x: 0.5rem;
	--ccl-btn-font-size: 0.875rem;
	--ccl-btn-border-radius: var(--bs-border-radius-sm);
}

.btn-primary {
	background-color: #808080;
	padding-top: 0.625rem;
	padding-right: 2.125rem;
	padding-bottom: 0.625rem;
	padding-left: 2.125rem;
	border-radius: 0;
	line-height: 1.5;
	font-size: 28px;
	color: #fff;
	letter-spacing: 0.015em;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}

.btn-primary:hover {
	opacity: 1;
	color: #fff;
	background-color: var(--ccl-secondary);
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
	--ccl-gutter-x: 1.5rem;
	--ccl-gutter-y: 0;
	width: 100%;
	padding-right: calc(var(--ccl-gutter-x) * .5);
	padding-left: calc(var(--ccl-gutter-x) * .5);
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
	.container, .container-sm {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container, .container-sm, .container-md {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container, .container-sm, .container-md, .container-lg {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container, .container-sm, .container-md, .container-lg, .container-xl {
		max-width: 1140px;
	}
}

@media (min-width: 1400px) {
	.container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
		max-width: 1320px;
	}
}

:root {
	--ccl-breakpoint-xs: 0;
	--ccl-breakpoint-sm: 576px;
	--ccl-breakpoint-md: 768px;
	--ccl-breakpoint-lg: 992px;
	--ccl-breakpoint-xl: 1200px;
	--ccl-breakpoint-xxl: 1400px;
}

.row {
	--ccl-gutter-x: 1.5rem;
	--ccl-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--ccl-gutter-y));
	margin-right: calc(-.5 * var(--ccl-gutter-x));
	margin-left: calc(-.5 * var(--ccl-gutter-x));
}

.row > * {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--ccl-gutter-x) * .5);
	padding-left: calc(var(--ccl-gutter-x) * .5);
	margin-top: var(--ccl-gutter-y);
}

.col {
	flex: 1 0 0%;
}

.row-cols-auto > * {
	flex: 0 0 auto;
	width: auto;
}

.row-cols-1 > * {
	flex: 0 0 auto;
	width: 100%;
}

.row-cols-2 > * {
	flex: 0 0 auto;
	width: 50%;
}

.row-cols-3 > * {
	flex: 0 0 auto;
	width: 33.33333%;
}

.row-cols-4 > * {
	flex: 0 0 auto;
	width: 25%;
}

.row-cols-5 > * {
	flex: 0 0 auto;
	width: 20%;
}

.row-cols-6 > * {
	flex: 0 0 auto;
	width: 16.66667%;
}

.col-auto {
	flex: 0 0 auto;
	width: auto;
}

.col-1 {
	flex: 0 0 auto;
	width: 8.33333%;
}

.col-2 {
	flex: 0 0 auto;
	width: 16.66667%;
}

.col-3 {
	flex: 0 0 auto;
	width: 25%;
}

.col-4 {
	flex: 0 0 auto;
	width: 33.33333%;
}

.col-5 {
	flex: 0 0 auto;
	width: 41.66667%;
}

.col-6 {
	flex: 0 0 auto;
	width: 50%;
}

.col-7 {
	flex: 0 0 auto;
	width: 58.33333%;
}

.col-8 {
	flex: 0 0 auto;
	width: 66.66667%;
}

.col-9 {
	flex: 0 0 auto;
	width: 75%;
}

.col-10 {
	flex: 0 0 auto;
	width: 83.33333%;
}

.col-11 {
	flex: 0 0 auto;
	width: 91.66667%;
}

.col-12 {
	flex: 0 0 auto;
	width: 100%;
}

.offset-1 {
	margin-left: 8.33333%;
}

.offset-2 {
	margin-left: 16.66667%;
}

.offset-3 {
	margin-left: 25%;
}

.offset-4 {
	margin-left: 33.33333%;
}

.offset-5 {
	margin-left: 41.66667%;
}

.offset-6 {
	margin-left: 50%;
}

.offset-7 {
	margin-left: 58.33333%;
}

.offset-8 {
	margin-left: 66.66667%;
}

.offset-9 {
	margin-left: 75%;
}

.offset-10 {
	margin-left: 83.33333%;
}

.offset-11 {
	margin-left: 91.66667%;
}

.g-0,
.gx-0 {
	--ccl-gutter-x: 0;
}

.g-0,
.gy-0 {
	--ccl-gutter-y: 0;
}

.g-1,
.gx-1 {
	--ccl-gutter-x: 1rem;
}

.g-1,
.gy-1 {
	--ccl-gutter-y: 1rem;
}

.g-2,
.gx-2 {
	--ccl-gutter-x: 2rem;
}

.g-2,
.gy-2 {
	--ccl-gutter-y: 2rem;
}

.g-3,
.gx-3 {
	--ccl-gutter-x: 3rem;
}

.g-3,
.gy-3 {
	--ccl-gutter-y: 3rem;
}

.g-4,
.gx-4 {
	--ccl-gutter-x: 4rem;
}

.g-4,
.gy-4 {
	--ccl-gutter-y: 4rem;
}

.g-5,
.gx-5 {
	--ccl-gutter-x: 5rem;
}

.g-5,
.gy-5 {
	--ccl-gutter-y: 5rem;
}

@media (min-width: 576px) {
	.col-sm {
		flex: 1 0 0%;
	}
	.row-cols-sm-auto > * {
		flex: 0 0 auto;
		width: auto;
	}
	.row-cols-sm-1 > * {
		flex: 0 0 auto;
		width: 100%;
	}
	.row-cols-sm-2 > * {
		flex: 0 0 auto;
		width: 50%;
	}
	.row-cols-sm-3 > * {
		flex: 0 0 auto;
		width: 33.33333%;
	}
	.row-cols-sm-4 > * {
		flex: 0 0 auto;
		width: 25%;
	}
	.row-cols-sm-5 > * {
		flex: 0 0 auto;
		width: 20%;
	}
	.row-cols-sm-6 > * {
		flex: 0 0 auto;
		width: 16.66667%;
	}
	.col-sm-auto {
		flex: 0 0 auto;
		width: auto;
	}
	.col-sm-1 {
		flex: 0 0 auto;
		width: 8.33333%;
	}
	.col-sm-2 {
		flex: 0 0 auto;
		width: 16.66667%;
	}
	.col-sm-3 {
		flex: 0 0 auto;
		width: 25%;
	}
	.col-sm-4 {
		flex: 0 0 auto;
		width: 33.33333%;
	}
	.col-sm-5 {
		flex: 0 0 auto;
		width: 41.66667%;
	}
	.col-sm-6 {
		flex: 0 0 auto;
		width: 50%;
	}
	.col-sm-7 {
		flex: 0 0 auto;
		width: 58.33333%;
	}
	.col-sm-8 {
		flex: 0 0 auto;
		width: 66.66667%;
	}
	.col-sm-9 {
		flex: 0 0 auto;
		width: 75%;
	}
	.col-sm-10 {
		flex: 0 0 auto;
		width: 83.33333%;
	}
	.col-sm-11 {
		flex: 0 0 auto;
		width: 91.66667%;
	}
	.col-sm-12 {
		flex: 0 0 auto;
		width: 100%;
	}
	.offset-sm-0 {
		margin-left: 0;
	}
	.offset-sm-1 {
		margin-left: 8.33333%;
	}
	.offset-sm-2 {
		margin-left: 16.66667%;
	}
	.offset-sm-3 {
		margin-left: 25%;
	}
	.offset-sm-4 {
		margin-left: 33.33333%;
	}
	.offset-sm-5 {
		margin-left: 41.66667%;
	}
	.offset-sm-6 {
		margin-left: 50%;
	}
	.offset-sm-7 {
		margin-left: 58.33333%;
	}
	.offset-sm-8 {
		margin-left: 66.66667%;
	}
	.offset-sm-9 {
		margin-left: 75%;
	}
	.offset-sm-10 {
		margin-left: 83.33333%;
	}
	.offset-sm-11 {
		margin-left: 91.66667%;
	}
	.g-sm-0,
	.gx-sm-0 {
		--ccl-gutter-x: 0;
	}
	.g-sm-0,
	.gy-sm-0 {
		--ccl-gutter-y: 0;
	}
	.g-sm-1,
	.gx-sm-1 {
		--ccl-gutter-x: 1rem;
	}
	.g-sm-1,
	.gy-sm-1 {
		--ccl-gutter-y: 1rem;
	}
	.g-sm-2,
	.gx-sm-2 {
		--ccl-gutter-x: 2rem;
	}
	.g-sm-2,
	.gy-sm-2 {
		--ccl-gutter-y: 2rem;
	}
	.g-sm-3,
	.gx-sm-3 {
		--ccl-gutter-x: 3rem;
	}
	.g-sm-3,
	.gy-sm-3 {
		--ccl-gutter-y: 3rem;
	}
	.g-sm-4,
	.gx-sm-4 {
		--ccl-gutter-x: 4rem;
	}
	.g-sm-4,
	.gy-sm-4 {
		--ccl-gutter-y: 4rem;
	}
	.g-sm-5,
	.gx-sm-5 {
		--ccl-gutter-x: 5rem;
	}
	.g-sm-5,
	.gy-sm-5 {
		--ccl-gutter-y: 5rem;
	}
}

@media (min-width: 768px) {
	.col-md {
		flex: 1 0 0%;
	}
	.row-cols-md-auto > * {
		flex: 0 0 auto;
		width: auto;
	}
	.row-cols-md-1 > * {
		flex: 0 0 auto;
		width: 100%;
	}
	.row-cols-md-2 > * {
		flex: 0 0 auto;
		width: 50%;
	}
	.row-cols-md-3 > * {
		flex: 0 0 auto;
		width: 33.33333%;
	}
	.row-cols-md-4 > * {
		flex: 0 0 auto;
		width: 25%;
	}
	.row-cols-md-5 > * {
		flex: 0 0 auto;
		width: 20%;
	}
	.row-cols-md-6 > * {
		flex: 0 0 auto;
		width: 16.66667%;
	}
	.col-md-auto {
		flex: 0 0 auto;
		width: auto;
	}
	.col-md-1 {
		flex: 0 0 auto;
		width: 8.33333%;
	}
	.col-md-2 {
		flex: 0 0 auto;
		width: 16.66667%;
	}
	.col-md-3 {
		flex: 0 0 auto;
		width: 25%;
	}
	.col-md-4 {
		flex: 0 0 auto;
		width: 33.33333%;
	}
	.col-md-5 {
		flex: 0 0 auto;
		width: 41.66667%;
	}
	.col-md-6 {
		flex: 0 0 auto;
		width: 50%;
	}
	.col-md-7 {
		flex: 0 0 auto;
		width: 58.33333%;
	}
	.col-md-8 {
		flex: 0 0 auto;
		width: 66.66667%;
	}
	.col-md-9 {
		flex: 0 0 auto;
		width: 75%;
	}
	.col-md-10 {
		flex: 0 0 auto;
		width: 83.33333%;
	}
	.col-md-11 {
		flex: 0 0 auto;
		width: 91.66667%;
	}
	.col-md-12 {
		flex: 0 0 auto;
		width: 100%;
	}
	.offset-md-0 {
		margin-left: 0;
	}
	.offset-md-1 {
		margin-left: 8.33333%;
	}
	.offset-md-2 {
		margin-left: 16.66667%;
	}
	.offset-md-3 {
		margin-left: 25%;
	}
	.offset-md-4 {
		margin-left: 33.33333%;
	}
	.offset-md-5 {
		margin-left: 41.66667%;
	}
	.offset-md-6 {
		margin-left: 50%;
	}
	.offset-md-7 {
		margin-left: 58.33333%;
	}
	.offset-md-8 {
		margin-left: 66.66667%;
	}
	.offset-md-9 {
		margin-left: 75%;
	}
	.offset-md-10 {
		margin-left: 83.33333%;
	}
	.offset-md-11 {
		margin-left: 91.66667%;
	}
	.g-md-0,
	.gx-md-0 {
		--ccl-gutter-x: 0;
	}
	.g-md-0,
	.gy-md-0 {
		--ccl-gutter-y: 0;
	}
	.g-md-1,
	.gx-md-1 {
		--ccl-gutter-x: 1rem;
	}
	.g-md-1,
	.gy-md-1 {
		--ccl-gutter-y: 1rem;
	}
	.g-md-2,
	.gx-md-2 {
		--ccl-gutter-x: 2rem;
	}
	.g-md-2,
	.gy-md-2 {
		--ccl-gutter-y: 2rem;
	}
	.g-md-3,
	.gx-md-3 {
		--ccl-gutter-x: 3rem;
	}
	.g-md-3,
	.gy-md-3 {
		--ccl-gutter-y: 3rem;
	}
	.g-md-4,
	.gx-md-4 {
		--ccl-gutter-x: 4rem;
	}
	.g-md-4,
	.gy-md-4 {
		--ccl-gutter-y: 4rem;
	}
	.g-md-5,
	.gx-md-5 {
		--ccl-gutter-x: 5rem;
	}
	.g-md-5,
	.gy-md-5 {
		--ccl-gutter-y: 5rem;
	}
}

@media (min-width: 992px) {
	.col-lg {
		flex: 1 0 0%;
	}
	.row-cols-lg-auto > * {
		flex: 0 0 auto;
		width: auto;
	}
	.row-cols-lg-1 > * {
		flex: 0 0 auto;
		width: 100%;
	}
	.row-cols-lg-2 > * {
		flex: 0 0 auto;
		width: 50%;
	}
	.row-cols-lg-3 > * {
		flex: 0 0 auto;
		width: 33.33333%;
	}
	.row-cols-lg-4 > * {
		flex: 0 0 auto;
		width: 25%;
	}
	.row-cols-lg-5 > * {
		flex: 0 0 auto;
		width: 20%;
	}
	.row-cols-lg-6 > * {
		flex: 0 0 auto;
		width: 16.66667%;
	}
	.col-lg-auto {
		flex: 0 0 auto;
		width: auto;
	}
	.col-lg-1 {
		flex: 0 0 auto;
		width: 8.33333%;
	}
	.col-lg-2 {
		flex: 0 0 auto;
		width: 16.66667%;
	}
	.col-lg-3 {
		flex: 0 0 auto;
		width: 25%;
	}
	.col-lg-4 {
		flex: 0 0 auto;
		width: 33.33333%;
	}
	.col-lg-5 {
		flex: 0 0 auto;
		width: 41.66667%;
	}
	.col-lg-6 {
		flex: 0 0 auto;
		width: 50%;
	}
	.col-lg-7 {
		flex: 0 0 auto;
		width: 58.33333%;
	}
	.col-lg-8 {
		flex: 0 0 auto;
		width: 66.66667%;
	}
	.col-lg-9 {
		flex: 0 0 auto;
		width: 75%;
	}
	.col-lg-10 {
		flex: 0 0 auto;
		width: 83.33333%;
	}
	.col-lg-11 {
		flex: 0 0 auto;
		width: 91.66667%;
	}
	.col-lg-12 {
		flex: 0 0 auto;
		width: 100%;
	}
	.offset-lg-0 {
		margin-left: 0;
	}
	.offset-lg-1 {
		margin-left: 8.33333%;
	}
	.offset-lg-2 {
		margin-left: 16.66667%;
	}
	.offset-lg-3 {
		margin-left: 25%;
	}
	.offset-lg-4 {
		margin-left: 33.33333%;
	}
	.offset-lg-5 {
		margin-left: 41.66667%;
	}
	.offset-lg-6 {
		margin-left: 50%;
	}
	.offset-lg-7 {
		margin-left: 58.33333%;
	}
	.offset-lg-8 {
		margin-left: 66.66667%;
	}
	.offset-lg-9 {
		margin-left: 75%;
	}
	.offset-lg-10 {
		margin-left: 83.33333%;
	}
	.offset-lg-11 {
		margin-left: 91.66667%;
	}
	.g-lg-0,
	.gx-lg-0 {
		--ccl-gutter-x: 0;
	}
	.g-lg-0,
	.gy-lg-0 {
		--ccl-gutter-y: 0;
	}
	.g-lg-1,
	.gx-lg-1 {
		--ccl-gutter-x: 1rem;
	}
	.g-lg-1,
	.gy-lg-1 {
		--ccl-gutter-y: 1rem;
	}
	.g-lg-2,
	.gx-lg-2 {
		--ccl-gutter-x: 2rem;
	}
	.g-lg-2,
	.gy-lg-2 {
		--ccl-gutter-y: 2rem;
	}
	.g-lg-3,
	.gx-lg-3 {
		--ccl-gutter-x: 3rem;
	}
	.g-lg-3,
	.gy-lg-3 {
		--ccl-gutter-y: 3rem;
	}
	.g-lg-4,
	.gx-lg-4 {
		--ccl-gutter-x: 4rem;
	}
	.g-lg-4,
	.gy-lg-4 {
		--ccl-gutter-y: 4rem;
	}
	.g-lg-5,
	.gx-lg-5 {
		--ccl-gutter-x: 5rem;
	}
	.g-lg-5,
	.gy-lg-5 {
		--ccl-gutter-y: 5rem;
	}
}

@media (min-width: 1200px) {
	.col-xl {
		flex: 1 0 0%;
	}
	.row-cols-xl-auto > * {
		flex: 0 0 auto;
		width: auto;
	}
	.row-cols-xl-1 > * {
		flex: 0 0 auto;
		width: 100%;
	}
	.row-cols-xl-2 > * {
		flex: 0 0 auto;
		width: 50%;
	}
	.row-cols-xl-3 > * {
		flex: 0 0 auto;
		width: 33.33333%;
	}
	.row-cols-xl-4 > * {
		flex: 0 0 auto;
		width: 25%;
	}
	.row-cols-xl-5 > * {
		flex: 0 0 auto;
		width: 20%;
	}
	.row-cols-xl-6 > * {
		flex: 0 0 auto;
		width: 16.66667%;
	}
	.col-xl-auto {
		flex: 0 0 auto;
		width: auto;
	}
	.col-xl-1 {
		flex: 0 0 auto;
		width: 8.33333%;
	}
	.col-xl-2 {
		flex: 0 0 auto;
		width: 16.66667%;
	}
	.col-xl-3 {
		flex: 0 0 auto;
		width: 25%;
	}
	.col-xl-4 {
		flex: 0 0 auto;
		width: 33.33333%;
	}
	.col-xl-5 {
		flex: 0 0 auto;
		width: 41.66667%;
	}
	.col-xl-6 {
		flex: 0 0 auto;
		width: 50%;
	}
	.col-xl-7 {
		flex: 0 0 auto;
		width: 58.33333%;
	}
	.col-xl-8 {
		flex: 0 0 auto;
		width: 66.66667%;
	}
	.col-xl-9 {
		flex: 0 0 auto;
		width: 75%;
	}
	.col-xl-10 {
		flex: 0 0 auto;
		width: 83.33333%;
	}
	.col-xl-11 {
		flex: 0 0 auto;
		width: 91.66667%;
	}
	.col-xl-12 {
		flex: 0 0 auto;
		width: 100%;
	}
	.offset-xl-0 {
		margin-left: 0;
	}
	.offset-xl-1 {
		margin-left: 8.33333%;
	}
	.offset-xl-2 {
		margin-left: 16.66667%;
	}
	.offset-xl-3 {
		margin-left: 25%;
	}
	.offset-xl-4 {
		margin-left: 33.33333%;
	}
	.offset-xl-5 {
		margin-left: 41.66667%;
	}
	.offset-xl-6 {
		margin-left: 50%;
	}
	.offset-xl-7 {
		margin-left: 58.33333%;
	}
	.offset-xl-8 {
		margin-left: 66.66667%;
	}
	.offset-xl-9 {
		margin-left: 75%;
	}
	.offset-xl-10 {
		margin-left: 83.33333%;
	}
	.offset-xl-11 {
		margin-left: 91.66667%;
	}
	.g-xl-0,
	.gx-xl-0 {
		--ccl-gutter-x: 0;
	}
	.g-xl-0,
	.gy-xl-0 {
		--ccl-gutter-y: 0;
	}
	.g-xl-1,
	.gx-xl-1 {
		--ccl-gutter-x: 1rem;
	}
	.g-xl-1,
	.gy-xl-1 {
		--ccl-gutter-y: 1rem;
	}
	.g-xl-2,
	.gx-xl-2 {
		--ccl-gutter-x: 2rem;
	}
	.g-xl-2,
	.gy-xl-2 {
		--ccl-gutter-y: 2rem;
	}
	.g-xl-3,
	.gx-xl-3 {
		--ccl-gutter-x: 3rem;
	}
	.g-xl-3,
	.gy-xl-3 {
		--ccl-gutter-y: 3rem;
	}
	.g-xl-4,
	.gx-xl-4 {
		--ccl-gutter-x: 4rem;
	}
	.g-xl-4,
	.gy-xl-4 {
		--ccl-gutter-y: 4rem;
	}
	.g-xl-5,
	.gx-xl-5 {
		--ccl-gutter-x: 5rem;
	}
	.g-xl-5,
	.gy-xl-5 {
		--ccl-gutter-y: 5rem;
	}
}

@media (min-width: 1400px) {
	.col-xxl {
		flex: 1 0 0%;
	}
	.row-cols-xxl-auto > * {
		flex: 0 0 auto;
		width: auto;
	}
	.row-cols-xxl-1 > * {
		flex: 0 0 auto;
		width: 100%;
	}
	.row-cols-xxl-2 > * {
		flex: 0 0 auto;
		width: 50%;
	}
	.row-cols-xxl-3 > * {
		flex: 0 0 auto;
		width: 33.33333%;
	}
	.row-cols-xxl-4 > * {
		flex: 0 0 auto;
		width: 25%;
	}
	.row-cols-xxl-5 > * {
		flex: 0 0 auto;
		width: 20%;
	}
	.row-cols-xxl-6 > * {
		flex: 0 0 auto;
		width: 16.66667%;
	}
	.col-xxl-auto {
		flex: 0 0 auto;
		width: auto;
	}
	.col-xxl-1 {
		flex: 0 0 auto;
		width: 8.33333%;
	}
	.col-xxl-2 {
		flex: 0 0 auto;
		width: 16.66667%;
	}
	.col-xxl-3 {
		flex: 0 0 auto;
		width: 25%;
	}
	.col-xxl-4 {
		flex: 0 0 auto;
		width: 33.33333%;
	}
	.col-xxl-5 {
		flex: 0 0 auto;
		width: 41.66667%;
	}
	.col-xxl-6 {
		flex: 0 0 auto;
		width: 50%;
	}
	.col-xxl-7 {
		flex: 0 0 auto;
		width: 58.33333%;
	}
	.col-xxl-8 {
		flex: 0 0 auto;
		width: 66.66667%;
	}
	.col-xxl-9 {
		flex: 0 0 auto;
		width: 75%;
	}
	.col-xxl-10 {
		flex: 0 0 auto;
		width: 83.33333%;
	}
	.col-xxl-11 {
		flex: 0 0 auto;
		width: 91.66667%;
	}
	.col-xxl-12 {
		flex: 0 0 auto;
		width: 100%;
	}
	.offset-xxl-0 {
		margin-left: 0;
	}
	.offset-xxl-1 {
		margin-left: 8.33333%;
	}
	.offset-xxl-2 {
		margin-left: 16.66667%;
	}
	.offset-xxl-3 {
		margin-left: 25%;
	}
	.offset-xxl-4 {
		margin-left: 33.33333%;
	}
	.offset-xxl-5 {
		margin-left: 41.66667%;
	}
	.offset-xxl-6 {
		margin-left: 50%;
	}
	.offset-xxl-7 {
		margin-left: 58.33333%;
	}
	.offset-xxl-8 {
		margin-left: 66.66667%;
	}
	.offset-xxl-9 {
		margin-left: 75%;
	}
	.offset-xxl-10 {
		margin-left: 83.33333%;
	}
	.offset-xxl-11 {
		margin-left: 91.66667%;
	}
	.g-xxl-0,
	.gx-xxl-0 {
		--ccl-gutter-x: 0;
	}
	.g-xxl-0,
	.gy-xxl-0 {
		--ccl-gutter-y: 0;
	}
	.g-xxl-1,
	.gx-xxl-1 {
		--ccl-gutter-x: 1rem;
	}
	.g-xxl-1,
	.gy-xxl-1 {
		--ccl-gutter-y: 1rem;
	}
	.g-xxl-2,
	.gx-xxl-2 {
		--ccl-gutter-x: 2rem;
	}
	.g-xxl-2,
	.gy-xxl-2 {
		--ccl-gutter-y: 2rem;
	}
	.g-xxl-3,
	.gx-xxl-3 {
		--ccl-gutter-x: 3rem;
	}
	.g-xxl-3,
	.gy-xxl-3 {
		--ccl-gutter-y: 3rem;
	}
	.g-xxl-4,
	.gx-xxl-4 {
		--ccl-gutter-x: 4rem;
	}
	.g-xxl-4,
	.gy-xxl-4 {
		--ccl-gutter-y: 4rem;
	}
	.g-xxl-5,
	.gx-xxl-5 {
		--ccl-gutter-x: 5rem;
	}
	.g-xxl-5,
	.gy-xxl-5 {
		--ccl-gutter-y: 5rem;
	}
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
	position: absolute !important;
}

.stretched-link::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: "";
}

.nav {
	--ccl-nav-link-padding-x: 1rem;
	--ccl-nav-link-padding-y: 0.5rem;
	--ccl-nav-link-font-size: 1.125rem;
	--ccl-nav-link-font-weight: 500;
	--ccl-nav-link-color: var(--bs-link-color);
	--ccl-nav-link-hover-color: var(--bs-link-hover-color);
	--ccl-nav-link-disabled-color: var(--bs-secondary-color);
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.nav-link {
	display: block;
	padding: var(--ccl-nav-link-padding-y) var(--ccl-nav-link-padding-x);
	font-size: var(--ccl-nav-link-font-size);
	font-weight: var(--ccl-nav-link-font-weight);
	color: var(--ccl-nav-link-color);
	text-decoration: none;
	background: none;
	border: 0;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
	.nav-link {
		transition: none;
	}
}

.nav-link:hover, .nav-link:focus {
	color: var(--ccl-nav-link-hover-color);
}

.nav-link:focus-visible {
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.nav-link.disabled, .nav-link:disabled {
	color: var(--ccl-nav-link-disabled-color);
	pointer-events: none;
	cursor: default;
}

.nav-tabs {
	--ccl-nav-tabs-border-width: var(--bs-border-width);
	--ccl-nav-tabs-border-color: var(--bs-border-color);
	--ccl-nav-tabs-border-radius: var(--bs-border-radius);
	--ccl-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
	--ccl-nav-tabs-link-active-color: var(--bs-emphasis-color);
	--ccl-nav-tabs-link-active-bg: var(--bs-body-bg);
	--ccl-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
	border-bottom: var(--ccl-nav-tabs-border-width) solid var(--ccl-nav-tabs-border-color);
}

.nav-tabs .nav-link {
	margin-bottom: calc(-1 * var(--ccl-nav-tabs-border-width));
	border: var(--ccl-nav-tabs-border-width) solid transparent;
	border-top-left-radius: var(--ccl-nav-tabs-border-radius);
	border-top-right-radius: var(--ccl-nav-tabs-border-radius);
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
	isolation: isolate;
	border-color: var(--ccl-nav-tabs-link-hover-border-color);
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
	color: var(--ccl-nav-tabs-link-active-color);
	background-color: var(--ccl-nav-tabs-link-active-bg);
	border-color: var(--ccl-nav-tabs-link-active-border-color);
}

.nav-tabs .dropdown-menu {
	margin-top: calc(-1 * var(--ccl-nav-tabs-border-width));
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.nav-pills {
	--ccl-nav-pills-border-radius: var(--bs-border-radius);
	--ccl-nav-pills-link-active-color: #fff;
	--ccl-nav-pills-link-active-bg: #0d6efd;
}

.nav-pills .nav-link {
	border-radius: var(--ccl-nav-pills-border-radius);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
	color: var(--ccl-nav-pills-link-active-color);
	background-color: var(--ccl-nav-pills-link-active-bg);
}

.nav-underline {
	--ccl-nav-underline-gap: 1rem;
	--ccl-nav-underline-border-width: 0.125rem;
	--ccl-nav-underline-link-active-color: var(--bs-emphasis-color);
	gap: var(--ccl-nav-underline-gap);
}

.nav-underline .nav-link {
	padding-right: 0;
	padding-left: 0;
	border-bottom: var(--ccl-nav-underline-border-width) solid transparent;
}

.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
	border-bottom-color: currentcolor;
}

.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
	font-weight: 700;
	color: var(--ccl-nav-underline-link-active-color);
	border-bottom-color: currentcolor;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
	flex: 1 1 auto;
	text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
	flex-basis: 0;
	flex-grow: 1;
	text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
	width: 100%;
}

.tab-content > .tab-pane {
	display: none;
}

.tab-content > .active {
	display: block;
}

.navbar {
	--ccl-navbar-padding-x: 0;
	--ccl-navbar-padding-y: 0;
	--ccl-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
	--ccl-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
	--ccl-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
	--ccl-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
	--ccl-navbar-brand-padding-y: 1.75em;
	--ccl-navbar-brand-margin-end: 0;
	--ccl-navbar-brand-font-size: 18px;
	--ccl-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
	--ccl-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
	--ccl-navbar-nav-link-padding-x: 1.25rem;
	--ccl-navbar-toggler-padding-y: 0.25rem;
	--ccl-navbar-toggler-padding-x: 0.75rem;
	--ccl-navbar-toggler-font-size: 1.25rem;
	--ccl-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	--ccl-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
	--ccl-navbar-toggler-border-radius: var(--bs-border-radius);
	--ccl-navbar-toggler-focus-width: 0.25rem;
	--ccl-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: var(--ccl-navbar-padding-y) var(--ccl-navbar-padding-x);
}

.navbar > .container,
.navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl {
	display: flex;
	flex-wrap: inherit;
	align-items: center;
	justify-content: space-between;
}

.navbar-brand {
	padding-top: var(--ccl-navbar-brand-padding-y);
	padding-bottom: var(--ccl-navbar-brand-padding-y);
	margin-right: var(--ccl-navbar-brand-margin-end);
	font-size: var(--ccl-navbar-brand-font-size);
	color: var(--ccl-navbar-brand-color);
	text-decoration: none;
	white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
	color: var(--ccl-navbar-brand-hover-color);
}

.navbar-nav {
	--ccl-nav-link-padding-x: 0;
	--ccl-nav-link-padding-y: 0.5rem;
	--ccl-nav-link-font-size: 1.125rem;
	--ccl-nav-link-font-weight: 500;
	--ccl-nav-link-color: var(--ccl-navbar-color);
	--ccl-nav-link-hover-color: var(--ccl-navbar-hover-color);
	--ccl-nav-link-disabled-color: var(--ccl-navbar-disabled-color);
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
	color: var(--ccl-navbar-active-color);
}

.navbar-nav .dropdown-menu {
	position: static;
}

.navbar-text {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	color: var(--ccl-navbar-color);
}

.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
	color: var(--ccl-navbar-active-color);
}

.navbar-collapse {
	flex-basis: 100%;
	flex-grow: 1;
	align-items: center;
}

.navbar-toggler {
	padding: var(--ccl-navbar-toggler-padding-y) var(--ccl-navbar-toggler-padding-x);
	font-size: var(--ccl-navbar-toggler-font-size);
	line-height: 1;
	color: var(--ccl-navbar-color);
	background-color: transparent;
	border: var(--ccl-border-width) solid var(--ccl-navbar-toggler-border-color);
	border-radius: var(--ccl-navbar-toggler-border-radius);
	transition: var(--ccl-navbar-toggler-transition);
}

@media (prefers-reduced-motion: reduce) {
	.navbar-toggler {
		transition: none;
	}
}

.navbar-toggler:hover {
	text-decoration: none;
}

.navbar-toggler:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: 0 0 0 var(--ccl-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	vertical-align: middle;
	background-image: var(--ccl-navbar-toggler-icon-bg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}

.navbar-nav-scroll {
	max-height: var(--ccl-scroll-height, 75vh);
	overflow-y: auto;
}

@media (min-width: 576px) {
	.navbar-expand-sm {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}
	.navbar-expand-sm .navbar-nav {
		flex-direction: row;
	}
	.navbar-expand-sm .navbar-nav .dropdown-menu {
		position: absolute;
	}
	.navbar-expand-sm .navbar-nav .nav-link {
		padding-right: var(--ccl-navbar-nav-link-padding-x);
		padding-left: var(--ccl-navbar-nav-link-padding-x);
	}
	.navbar-expand-sm .navbar-nav-scroll {
		overflow: visible;
	}
	.navbar-expand-sm .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}
	.navbar-expand-sm .navbar-toggler {
		display: none;
	}
	.navbar-expand-sm .offcanvas {
		position: static;
		z-index: auto;
		flex-grow: 1;
		width: auto !important;
		height: auto !important;
		visibility: visible !important;
		background-color: transparent !important;
		border: 0 !important;
		transform: none !important;
		transition: none;
	}
	.navbar-expand-sm .offcanvas .offcanvas-header {
		display: none;
	}
	.navbar-expand-sm .offcanvas .offcanvas-body {
		display: flex;
		flex-grow: 0;
		padding: 0;
		overflow-y: visible;
	}
}

@media (min-width: 768px) {
	.navbar-expand-md {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}
	.navbar-expand-md .navbar-nav {
		flex-direction: row;
	}
	.navbar-expand-md .navbar-nav .dropdown-menu {
		position: absolute;
	}
	.navbar-expand-md .navbar-nav .nav-link {
		padding-right: var(--ccl-navbar-nav-link-padding-x);
		padding-left: var(--ccl-navbar-nav-link-padding-x);
	}
	.navbar-expand-md .navbar-nav-scroll {
		overflow: visible;
	}
	.navbar-expand-md .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}
	.navbar-expand-md .navbar-toggler {
		display: none;
	}
	.navbar-expand-md .offcanvas {
		position: static;
		z-index: auto;
		flex-grow: 1;
		width: auto !important;
		height: auto !important;
		visibility: visible !important;
		background-color: transparent !important;
		border: 0 !important;
		transform: none !important;
		transition: none;
	}
	.navbar-expand-md .offcanvas .offcanvas-header {
		display: none;
	}
	.navbar-expand-md .offcanvas .offcanvas-body {
		display: flex;
		flex-grow: 0;
		padding: 0;
		overflow-y: visible;
	}
}

@media (min-width: 992px) {
	.navbar-expand-lg {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}
	.navbar-expand-lg .navbar-nav {
		flex-direction: row;
	}
	.navbar-expand-lg .navbar-nav .dropdown-menu {
		position: absolute;
	}
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: var(--ccl-navbar-nav-link-padding-x);
		padding-left: var(--ccl-navbar-nav-link-padding-x);
	}
	.navbar-expand-lg .navbar-nav-scroll {
		overflow: visible;
	}
	.navbar-expand-lg .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}
	.navbar-expand-lg .navbar-toggler {
		display: none;
	}
	.navbar-expand-lg .offcanvas {
		position: static;
		z-index: auto;
		flex-grow: 1;
		width: auto !important;
		height: auto !important;
		visibility: visible !important;
		background-color: transparent !important;
		border: 0 !important;
		transform: none !important;
		transition: none;
	}
	.navbar-expand-lg .offcanvas .offcanvas-header {
		display: none;
	}
	.navbar-expand-lg .offcanvas .offcanvas-body {
		display: flex;
		flex-grow: 0;
		padding: 0;
		overflow-y: visible;
	}
}

@media (min-width: 1200px) {
	.navbar-expand-xl {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}
	.navbar-expand-xl .navbar-nav {
		flex-direction: row;
	}
	.navbar-expand-xl .navbar-nav .dropdown-menu {
		position: absolute;
	}
	.navbar-expand-xl .navbar-nav .nav-link {
		padding-right: var(--ccl-navbar-nav-link-padding-x);
		padding-left: var(--ccl-navbar-nav-link-padding-x);
	}
	.navbar-expand-xl .navbar-nav-scroll {
		overflow: visible;
	}
	.navbar-expand-xl .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}
	.navbar-expand-xl .navbar-toggler {
		display: none;
	}
	.navbar-expand-xl .offcanvas {
		position: static;
		z-index: auto;
		flex-grow: 1;
		width: auto !important;
		height: auto !important;
		visibility: visible !important;
		background-color: transparent !important;
		border: 0 !important;
		transform: none !important;
		transition: none;
	}
	.navbar-expand-xl .offcanvas .offcanvas-header {
		display: none;
	}
	.navbar-expand-xl .offcanvas .offcanvas-body {
		display: flex;
		flex-grow: 0;
		padding: 0;
		overflow-y: visible;
	}
}

@media (min-width: 1400px) {
	.navbar-expand-xxl {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}
	.navbar-expand-xxl .navbar-nav {
		flex-direction: row;
	}
	.navbar-expand-xxl .navbar-nav .dropdown-menu {
		position: absolute;
	}
	.navbar-expand-xxl .navbar-nav .nav-link {
		padding-right: var(--ccl-navbar-nav-link-padding-x);
		padding-left: var(--ccl-navbar-nav-link-padding-x);
	}
	.navbar-expand-xxl .navbar-nav-scroll {
		overflow: visible;
	}
	.navbar-expand-xxl .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}
	.navbar-expand-xxl .navbar-toggler {
		display: none;
	}
	.navbar-expand-xxl .offcanvas {
		position: static;
		z-index: auto;
		flex-grow: 1;
		width: auto !important;
		height: auto !important;
		visibility: visible !important;
		background-color: transparent !important;
		border: 0 !important;
		transform: none !important;
		transition: none;
	}
	.navbar-expand-xxl .offcanvas .offcanvas-header {
		display: none;
	}
	.navbar-expand-xxl .offcanvas .offcanvas-body {
		display: flex;
		flex-grow: 0;
		padding: 0;
		overflow-y: visible;
	}
}

.navbar-expand {
	flex-wrap: nowrap;
	justify-content: flex-start;
}

.navbar-expand .navbar-nav {
	flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
	position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
	padding-right: var(--ccl-navbar-nav-link-padding-x);
	padding-left: var(--ccl-navbar-nav-link-padding-x);
}

.navbar-expand .navbar-nav-scroll {
	overflow: visible;
}

.navbar-expand .navbar-collapse {
	display: flex !important;
	flex-basis: auto;
}

.navbar-expand .navbar-toggler {
	display: none;
}

.navbar-expand .offcanvas {
	position: static;
	z-index: auto;
	flex-grow: 1;
	width: auto !important;
	height: auto !important;
	visibility: visible !important;
	background-color: transparent !important;
	border: 0 !important;
	transform: none !important;
	transition: none;
}

.navbar-expand .offcanvas .offcanvas-header {
	display: none;
}

.navbar-expand .offcanvas .offcanvas-body {
	display: flex;
	flex-grow: 0;
	padding: 0;
	overflow-y: visible;
}

.navbar-dark,
.navbar[data-bs-theme="dark"] {
	--ccl-navbar-color: #fff;
	--ccl-navbar-hover-color: rgba(255, 255, 255, 0.85);
	--ccl-navbar-disabled-color: rgba(255, 255, 255, 0.25);
	--ccl-navbar-active-color: #fff;
	--ccl-navbar-brand-color: #fff;
	--ccl-navbar-brand-hover-color: #fff;
	--ccl-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
	--ccl-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
	position: relative;
}

.dropdown-toggle {
	white-space: nowrap;
}

.dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
	margin-left: 0;
}

.dropdown-menu {
	--ccl-dropdown-zindex: 1000;
	--ccl-dropdown-min-width: 10rem;
	--ccl-dropdown-padding-x: 0;
	--ccl-dropdown-padding-y: 0.5rem;
	--ccl-dropdown-spacer: 0.125rem;
	--ccl-dropdown-font-size: 1rem;
	--ccl-dropdown-color: var(--bs-body-color);
	--ccl-dropdown-bg: var(--bs-body-bg);
	--ccl-dropdown-border-color: var(--bs-border-color-translucent);
	--ccl-dropdown-border-radius: var(--bs-border-radius);
	--ccl-dropdown-border-width: var(--bs-border-width);
	--ccl-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
	--ccl-dropdown-divider-bg: var(--bs-border-color-translucent);
	--ccl-dropdown-divider-margin-y: 0.5rem;
	--ccl-dropdown-box-shadow: var(--bs-box-shadow);
	--ccl-dropdown-link-color: var(--bs-body-color);
	--ccl-dropdown-link-hover-color: var(--bs-body-color);
	--ccl-dropdown-link-hover-bg: var(--bs-tertiary-bg);
	--ccl-dropdown-link-active-color: #fff;
	--ccl-dropdown-link-active-bg: #0d6efd;
	--ccl-dropdown-link-disabled-color: var(--bs-tertiary-color);
	--ccl-dropdown-item-padding-x: 1rem;
	--ccl-dropdown-item-padding-y: 0.25rem;
	--ccl-dropdown-header-color: #6c757d;
	--ccl-dropdown-header-padding-x: 1rem;
	--ccl-dropdown-header-padding-y: 0.5rem;
	position: absolute;
	z-index: var(--ccl-dropdown-zindex);
	display: none;
	min-width: var(--ccl-dropdown-min-width);
	padding: var(--ccl-dropdown-padding-y) var(--ccl-dropdown-padding-x);
	margin: 0;
	font-size: var(--ccl-dropdown-font-size);
	color: var(--ccl-dropdown-color);
	text-align: left;
	list-style: none;
	background-color: var(--ccl-dropdown-bg);
	background-clip: padding-box;
	border: var(--ccl-dropdown-border-width) solid var(--ccl-dropdown-border-color);
	border-radius: var(--ccl-dropdown-border-radius);
}

.dropdown-menu[data-bs-popper] {
	top: 100%;
	left: 0;
	margin-top: var(--ccl-dropdown-spacer);
}

.dropdown-menu-start {
	--bs-position: start;
}

.dropdown-menu-start[data-bs-popper] {
	right: auto;
	left: 0;
}

.dropdown-menu-end {
	--bs-position: end;
}

.dropdown-menu-end[data-bs-popper] {
	right: 0;
	left: auto;
}

@media (min-width: 576px) {
	.dropdown-menu-sm-start {
		--bs-position: start;
	}
	.dropdown-menu-sm-start[data-bs-popper] {
		right: auto;
		left: 0;
	}
	.dropdown-menu-sm-end {
		--bs-position: end;
	}
	.dropdown-menu-sm-end[data-bs-popper] {
		right: 0;
		left: auto;
	}
}

@media (min-width: 768px) {
	.dropdown-menu-md-start {
		--bs-position: start;
	}
	.dropdown-menu-md-start[data-bs-popper] {
		right: auto;
		left: 0;
	}
	.dropdown-menu-md-end {
		--bs-position: end;
	}
	.dropdown-menu-md-end[data-bs-popper] {
		right: 0;
		left: auto;
	}
}

@media (min-width: 992px) {
	.dropdown-menu-lg-start {
		--bs-position: start;
	}
	.dropdown-menu-lg-start[data-bs-popper] {
		right: auto;
		left: 0;
	}
	.dropdown-menu-lg-end {
		--bs-position: end;
	}
	.dropdown-menu-lg-end[data-bs-popper] {
		right: 0;
		left: auto;
	}
}

@media (min-width: 1200px) {
	.dropdown-menu-xl-start {
		--bs-position: start;
	}
	.dropdown-menu-xl-start[data-bs-popper] {
		right: auto;
		left: 0;
	}
	.dropdown-menu-xl-end {
		--bs-position: end;
	}
	.dropdown-menu-xl-end[data-bs-popper] {
		right: 0;
		left: auto;
	}
}

@media (min-width: 1400px) {
	.dropdown-menu-xxl-start {
		--bs-position: start;
	}
	.dropdown-menu-xxl-start[data-bs-popper] {
		right: auto;
		left: 0;
	}
	.dropdown-menu-xxl-end {
		--bs-position: end;
	}
	.dropdown-menu-xxl-end[data-bs-popper] {
		right: 0;
		left: auto;
	}
}

.dropup .dropdown-menu[data-bs-popper] {
	top: auto;
	bottom: 100%;
	margin-top: 0;
	margin-bottom: var(--ccl-dropdown-spacer);
}

.dropup .dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0;
	border-right: 0.3em solid transparent;
	border-bottom: 0.3em solid;
	border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
	margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
	top: 0;
	right: auto;
	left: 100%;
	margin-top: 0;
	margin-left: var(--ccl-dropdown-spacer);
}

.dropend .dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid transparent;
	border-right: 0;
	border-bottom: 0.3em solid transparent;
	border-left: 0.3em solid;
}

.dropend .dropdown-toggle:empty::after {
	margin-left: 0;
}

.dropend .dropdown-toggle::after {
	vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
	top: 0;
	right: 100%;
	left: auto;
	margin-top: 0;
	margin-right: var(--ccl-dropdown-spacer);
}

.dropstart .dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
}

.dropstart .dropdown-toggle::after {
	display: none;
}

.dropstart .dropdown-toggle::before {
	display: inline-block;
	margin-right: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid transparent;
	border-right: 0.3em solid;
	border-bottom: 0.3em solid transparent;
}

.dropstart .dropdown-toggle:empty::after {
	margin-left: 0;
}

.dropstart .dropdown-toggle::before {
	vertical-align: 0;
}

.dropdown-divider {
	height: 0;
	margin: var(--ccl-dropdown-divider-margin-y) 0;
	overflow: hidden;
	border-top: 1px solid var(--ccl-dropdown-divider-bg);
	opacity: 1;
}

.dropdown-item {
	display: block;
	width: 100%;
	padding: var(--ccl-dropdown-item-padding-y) var(--ccl-dropdown-item-padding-x);
	clear: both;
	font-weight: 400;
	color: var(--ccl-dropdown-link-color);
	text-align: inherit;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
	border-radius: var(--ccl-dropdown-item-border-radius, 0);
}

.dropdown-item:hover, .dropdown-item:focus {
	color: var(--ccl-dropdown-link-hover-color);
	background-color: var(--ccl-dropdown-link-hover-bg);
}

.dropdown-item.active, .dropdown-item:active {
	color: var(--ccl-dropdown-link-active-color);
	text-decoration: none;
	background-color: var(--ccl-dropdown-link-active-bg);
}

.dropdown-item.disabled, .dropdown-item:disabled {
	color: var(--ccl-dropdown-link-disabled-color);
	pointer-events: none;
	background-color: transparent;
}

.dropdown-menu.show {
	display: block;
}

.dropdown-header {
	display: block;
	padding: var(--ccl-dropdown-header-padding-y) var(--ccl-dropdown-header-padding-x);
	margin-bottom: 0;
	font-size: 0.875rem;
	color: var(--ccl-dropdown-header-color);
	white-space: nowrap;
}

.dropdown-item-text {
	display: block;
	padding: var(--ccl-dropdown-item-padding-y) var(--ccl-dropdown-item-padding-x);
	color: var(--ccl-dropdown-link-color);
}

.dropdown-menu-dark {
	--ccl-dropdown-color: #dee2e6;
	--ccl-dropdown-bg: #343a40;
	--ccl-dropdown-border-color: var(--bs-border-color-translucent);
	--ccl-dropdown-box-shadow: ;
	--ccl-dropdown-link-color: #dee2e6;
	--ccl-dropdown-link-hover-color: #fff;
	--ccl-dropdown-divider-bg: var(--bs-border-color-translucent);
	--ccl-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
	--ccl-dropdown-link-active-color: #fff;
	--ccl-dropdown-link-active-bg: #0d6efd;
	--ccl-dropdown-link-disabled-color: #adb5bd;
	--ccl-dropdown-header-color: #adb5bd;
}

.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
}

.tooltip {
	--ccl-tooltip-zindex: 1080;
	--ccl-tooltip-max-width: 200px;
	--ccl-tooltip-padding-x: 0.5rem;
	--ccl-tooltip-padding-y: 0.25rem;
	--ccl-tooltip-margin: ;
	--ccl-tooltip-font-size: 0.875rem;
	--ccl-tooltip-color: var(--bs-body-bg);
	--ccl-tooltip-bg: var(--bs-emphasis-color);
	--ccl-tooltip-border-radius: var(--bs-border-radius);
	--ccl-tooltip-opacity: 0.9;
	--ccl-tooltip-arrow-width: 0.8rem;
	--ccl-tooltip-arrow-height: 0.4rem;
	z-index: var(--ccl-tooltip-zindex);
	display: block;
	margin: var(--ccl-tooltip-margin);
	font-family: var(--ccl-font-sans-serif);
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
	text-align: start;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	word-break: normal;
	white-space: normal;
	word-spacing: normal;
	line-break: auto;
	font-size: var(--ccl-tooltip-font-size);
	word-wrap: break-word;
	opacity: 0;
}

.tooltip.show {
	opacity: var(--ccl-tooltip-opacity);
}

.tooltip .tooltip-arrow {
	display: block;
	width: var(--ccl-tooltip-arrow-width);
	height: var(--ccl-tooltip-arrow-height);
}

.tooltip .tooltip-arrow::before {
	position: absolute;
	content: "";
	border-color: transparent;
	border-style: solid;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow {
	bottom: calc(-1 * var(--ccl-tooltip-arrow-height));
}

.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
	top: -1px;
	border-width: var(--ccl-tooltip-arrow-height) calc(var(--ccl-tooltip-arrow-width) * .5) 0;
	border-top-color: var(--ccl-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow {
	left: calc(-1 * var(--ccl-tooltip-arrow-height));
	width: var(--ccl-tooltip-arrow-height);
	height: var(--ccl-tooltip-arrow-width);
}

.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
	right: -1px;
	border-width: calc(var(--ccl-tooltip-arrow-width) * .5) var(--ccl-tooltip-arrow-height) calc(var(--ccl-tooltip-arrow-width) * .5) 0;
	border-right-color: var(--ccl-tooltip-bg);
}

/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow {
	top: calc(-1 * var(--ccl-tooltip-arrow-height));
}

.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
	bottom: -1px;
	border-width: 0 calc(var(--ccl-tooltip-arrow-width) * .5) var(--ccl-tooltip-arrow-height);
	border-bottom-color: var(--ccl-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow {
	right: calc(-1 * var(--ccl-tooltip-arrow-height));
	width: var(--ccl-tooltip-arrow-height);
	height: var(--ccl-tooltip-arrow-width);
}

.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
	left: -1px;
	border-width: calc(var(--ccl-tooltip-arrow-width) * .5) 0 calc(var(--ccl-tooltip-arrow-width) * .5) var(--ccl-tooltip-arrow-height);
	border-left-color: var(--ccl-tooltip-bg);
}

/* rtl:end:ignore */
.tooltip-inner {
	max-width: var(--ccl-tooltip-max-width);
	padding: var(--ccl-tooltip-padding-y) var(--ccl-tooltip-padding-x);
	color: var(--ccl-tooltip-color);
	text-align: center;
	background-color: var(--ccl-tooltip-bg);
	border-radius: var(--ccl-tooltip-border-radius);
}

.fade {
	transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
	.fade {
		transition: none;
	}
}

.fade:not(.show) {
	opacity: 0;
}

.collapse:not(.show) {
	display: none;
}

.collapsing {
	height: 0;
	overflow: hidden;
	transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
	.collapsing {
		transition: none;
	}
}

.collapsing.collapse-horizontal {
	width: 0;
	height: auto;
	transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
	.collapsing.collapse-horizontal {
		transition: none;
	}
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("/wp-content/themes/custom-coach-and-limousine/assets/fonts/Inter-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "Inter";
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url("/wp-content/themes/custom-coach-and-limousine/assets/fonts/Inter-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("/wp-content/themes/custom-coach-and-limousine/assets/fonts/Inter-Medium.woff2") format("woff2");
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("/wp-content/themes/custom-coach-and-limousine/assets/fonts/Inter-Bold.woff2") format("woff2");
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url("/wp-content/themes/custom-coach-and-limousine/assets/fonts/Inter-ExtraBold.woff2") format("woff2");
}

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

@media (prefers-reduced-motion: no-preference) {
	:root {
		scroll-behavior: smooth;
	}
}

body {
	margin: 0;
	font-family: var(--ccl-body-font-family);
	font-size: var(--ccl-body-font-size);
	font-weight: var(--ccl-body-font-weight);
	line-height: var(--ccl-body-line-height);
	color: var(--ccl-body-color);
	text-align: var(--ccl-body-text-align);
	background-color: var(--ccl-body-bg);
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
	margin: 1rem 0;
	color: inherit;
	border: 0;
	border-top: var(--bs-border-width) solid;
	opacity: 0.25;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
	color: var(--ccl-heading-color);
}

h1, .h1 {
	font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
	h1, .h1 {
		font-size: 2.5rem;
	}
}

h2, .h2 {
	font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
	h2, .h2 {
		font-size: 2rem;
	}
}

h3, .h3 {
	font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
	h3, .h3 {
		font-size: 1.75rem;
	}
}

h4, .h4 {
	font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
	h4, .h4 {
		font-size: 1.5rem;
	}
}

h5, .h5 {
	font-size: 1.25rem;
}

h6, .h6 {
	font-size: 1rem;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit;
}

ol,
ul {
	padding-left: 2rem;
}

ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
	margin-bottom: 0;
}

b,
strong {
	font-weight: bolder;
}

a {
	color: rgba(var(--ccl-link-color-rgb), var(--ccl-link-opacity, 1));
	text-decoration: underline;
}

a:hover {
	--ccl-link-color-rgb: var(--ccl-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
	color: inherit;
	text-decoration: none;
}

figure {
	margin: 0 0 1rem;
}

img,
svg {
	vertical-align: middle;
}

label {
	display: inline-block;
}

button {
	border-radius: 0;
}

button:focus:not(:focus-visible) {
	outline: 0;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
select {
	text-transform: none;
}

[role="button"] {
	cursor: pointer;
}

select {
	word-wrap: normal;
}

select:disabled {
	opacity: 1;
}

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
	display: none !important;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
	cursor: pointer;
}

::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

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

header#masthead {
	background-color: #212529;
	transition: background-color 0.3s ease;
}

header#masthead nav .navbar-brand {
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-align: center;
	white-space: normal;
}

@media (max-width: 1399.98px) {
	header#masthead nav .navbar-brand {
		max-width: 202px;
	}
}

@media (min-width: 1400px) {
	header#masthead nav .navbar-brand {
		font-size: 25px;
		max-width: 280px;
		position: relative;
		padding-top: calc(1rem + 2px);
		padding-bottom: calc(1rem + 2px);
	}
	header#masthead nav .navbar-brand::after {
		display: flex;
		content: "";
		position: absolute;
		z-index: -1;
		width: 100%;
		height: 100%;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		user-select: none;
		pointer-events: none;
	}
	header#masthead nav .navbar-brand::after {
		background-color: #808080;
		width: 1px;
		top: 4px;
		transform: rotate(20deg);
		transform-origin: top;
	}
	header#masthead nav .navbar-brand::after {
		right: -80px;
		left: auto;
		height: 122px;
		top: 4px;
	}
}

@media (max-width: 1600px) and (min-width: 1400px) {
	header#masthead nav .navbar-brand::after {
		right: -20px;
	}
}

@media (max-width: 1399.98px) {
	header#masthead nav .navbar-nav {
		row-gap: 1rem;
	}
	header#masthead nav .navbar-nav:first-of-type {
		margin-bottom: 1rem;
	}
}

header#masthead nav .navbar-toggler {
	border: 0;
}

header#masthead nav #menu-right-menu {
	position: relative;
}

@media (max-width: 1399.98px) {
	header#masthead nav #menu-right-menu {
		width: fit-content;
		margin: 0 auto;
	}
}

header#masthead nav #menu-right-menu::after {
	display: none !important;
}

header#masthead nav #menu-right-menu::after {
	display: flex;
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	user-select: none;
	pointer-events: none;
}

header#masthead nav #menu-right-menu::after {
	background-color: #808080;
	width: 1px;
	top: 4px;
	transform: rotate(20deg);
	transform-origin: top;
}

@media (min-width: 1400px) {
	header#masthead nav #menu-right-menu::after {
		display: flex;
		height: 122px;
		top: 4px;
		right: auto;
		left: 0px;
	}
}

header#masthead nav #menu-right-menu .nav-link {
	font-size: 22px;
	letter-spacing: -0.035em;
	background-color: #808080;
	padding-top: 0.625rem;
	padding-right: 2.125rem;
	padding-bottom: 0.625rem;
	padding-left: 2.125rem;
	border-radius: 0;
	line-height: 1.5;
	font-size: 28px;
	color: #fff;
	letter-spacing: 0.015em;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}

header#masthead nav #menu-right-menu .nav-link:hover {
	opacity: 1;
	color: #fff;
	background-color: var(--ccl-secondary);
}

@media (min-width: 1400px) {
	header#masthead nav #menu-right-menu .nav-link {
		font-size: 27px;
	}
}

@media (max-width: 1600px) and (min-width: 1400px) {
	header#masthead nav #menu-right-menu .nav-link {
		font-size: 20px;
	}
}

header#masthead nav .nav-link {
	font-size: 20px;
	line-height: 1;
	letter-spacing: 0.02em;
}

@media (min-width: 1400px) {
	header#masthead nav .nav-link {
		font-size: 24px;
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
}

@media (max-width: 1600px) and (min-width: 1400px) {
	header#masthead nav .nav-link {
		font-size: 20px;
	}
}

@media (min-width: 1400px) {
	body.home header#masthead {
		background-color: rgba(0, 0, 0, 0.3);
	}
	body.home header#masthead.scroll {
		background-color: #212529;
	}
}

footer .logo {
	font-weight: 700;
	font-size: 18px;
	line-height: 1.75;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-align: center;
	white-space: normal;
}

@media (max-width: 1399.98px) {
	footer .logo {
		max-width: 202px;
	}
}

@media (min-width: 1400px) {
	footer .logo {
		font-size: 25px;
		max-width: 280px;
		position: relative;
	}
}

footer a {
	text-decoration: none;
	color: #fff;
	opacity: 1;
}

footer a:hover {
	color: var(--ccl-nav-link-hover-color);
}

footer a.nav-link {
	font-weight: 400;
	font-size: 18px;
}

footer a.nav-link:first-of-type {
	padding-top: 0;
}

footer p {
	margin: 0;
}

footer .copyright {
	font-size: 18px;
}

footer #contact-details {
	font-size: 18px;
}

@media (min-width: 1200px) {
	footer #contact-details {
		row-gap: 2rem;
	}
}

@media (max-width: 575.98px) {
	footer .row > * {
		padding-left: 24px;
		padding-right: 24px;
	}
}

.ti-widget.ti-goog .ti-widget-container {
	margin: 0 !important;
}

.ti-widget.ti-goog .ti-widget-container.ti-col-4 .ti-reviews-container .ti-reviews-container-wrapper {
	justify-content: space-between;
	column-gap: 2% !important;
}

.ti-widget.ti-goog .ti-widget-container.ti-col-4 .ti-reviews-container .ti-reviews-container-wrapper .ti-review-item {
	flex: 0 0 32% !important;
	max-width: 32% !important;
	padding: 0 !important;
}

.ti-widget.ti-goog .ti-widget-container .ti-footer {
	display: none;
}

:root {
	--icon-capacity: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M47.1057 23.5483C48.2493 19.0222 45.5393 14.4178 41.0528 13.2641C36.5663 12.1104 32.0023 14.8443 30.8587 19.3704C29.7151 23.8965 32.425 28.5009 36.9115 29.6546C41.398 30.8083 45.9621 28.0744 47.1057 23.5483Z' fill='%231e1e1e'/%3E%3Cpath d='M38.4252 60.8886L34.2196 40.8091C33.5277 37.5088 35.6209 34.2665 38.8923 33.5702C42.1619 32.8722 45.3758 34.9839 46.0677 38.2842L49.9544 56.8393H65.4138C69.8111 56.8393 74.1038 59.8618 75.6201 64.0272L80.6274 77.784C81.7794 80.9506 80.1708 84.4602 77.0318 85.6241C73.8929 86.7864 70.4141 85.1635 69.2603 81.995L64.551 69.0559H48.4084C43.6922 69.0559 39.3995 65.5446 38.4252 60.8904V60.8886Z' fill='%231e1e1e'/%3E%3Cpath d='M59.0435 73.4797H36.623C35.2775 73.4797 33.8414 72.2067 33.6706 70.8581L27.3038 20.9247C27.1435 19.6693 26.5108 18.5545 25.5191 17.7844C24.5326 17.0196 23.3091 16.6872 22.0717 16.8525C20.836 17.0143 19.7345 17.6508 18.9728 18.646C18.2129 19.6429 17.8801 20.879 18.0387 22.1274L24.4037 72.0608C25.1793 78.1409 30.5456 82.9041 36.6213 82.9041H59.0435C61.6195 82.9041 63.7145 80.7906 63.7145 78.1919C63.7145 75.5931 61.6195 73.4797 59.0435 73.4797Z' fill='%231e1e1e'/%3E%3C/svg%3E%0A");
	--icon-dvd-player: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M47.3316 58.0096C47.4693 58.0096 47.5427 58.0096 47.6162 58.0096C49.2687 58.028 50.9213 58.028 52.5738 58.0556C54.8598 58.0924 57.1458 58.1568 59.4226 58.258C62.1677 58.3776 64.9128 58.5431 67.6487 58.7639C69.6133 58.9203 71.5781 59.1135 73.5336 59.3343C77.0498 59.7391 80.5476 60.2358 83.9812 61.1282C85.2298 61.4502 86.4693 61.8181 87.6169 62.4069C88.0392 62.6277 88.4523 62.8761 88.7645 63.2441C89.2143 63.7776 89.196 64.3296 88.7094 64.8356C88.2411 65.3231 87.6444 65.6175 87.0385 65.8843C85.643 66.4915 84.1741 66.8686 82.696 67.1998C80.0611 67.7978 77.3895 68.221 74.6995 68.5429C71.7984 68.8925 68.8972 69.1685 65.9869 69.3801C63.554 69.5549 61.1303 69.6929 58.6974 69.7849C56.6776 69.8677 54.6579 69.9229 52.6381 69.9597C49.535 70.0149 46.4227 70.0057 43.3196 69.9781C41.511 69.9597 39.7024 69.9137 37.8937 69.8493C35.4884 69.7665 33.083 69.6469 30.6868 69.4905C28.6487 69.3525 26.6106 69.1961 24.5724 69.0029C21.6988 68.7269 18.8253 68.3958 15.97 67.9082C14.0237 67.5678 12.0774 67.209 10.177 66.6479C9.19461 66.3535 8.23059 66.0223 7.32169 65.5255C6.982 65.3415 6.66072 65.1299 6.39448 64.8448C5.84363 64.2652 5.87113 63.6028 6.46788 63.0693C7.03709 62.5633 7.71647 62.2597 8.41421 61.9745C10.0392 61.3122 11.7377 60.9166 13.4453 60.567C16.0068 60.0519 18.5865 59.6471 21.1847 59.3527C23.9298 59.0399 26.684 58.8099 29.4382 58.5983C31.6324 58.4328 33.8266 58.3316 36.03 58.2396C38.6374 58.1292 41.2539 58.0556 43.8613 58.0188C44.8987 58.0096 45.9453 57.9912 46.9827 57.9912H47.2398C47.0562 57.476 46.8909 56.9884 46.7165 56.5009C44.3019 49.6841 41.8782 42.8765 39.4544 36.0597C39.4269 35.9769 39.4361 35.8573 39.3259 35.8297C39.2341 35.8113 39.1239 35.8021 39.0597 35.8481C38.9862 35.8941 39.0597 35.9861 39.078 36.0597C39.2158 36.6117 39.3719 37.1636 39.5004 37.7156C39.8676 39.2887 39.8951 40.8342 39.3718 42.3981C38.4721 45.0568 36.8563 47.1542 34.5519 48.7365C32.5689 50.1073 30.3655 50.9996 28.0519 51.6436C25.72 52.2967 23.3514 52.7107 20.9368 52.9131C20.0004 52.9959 19.0639 53.0419 18.1183 53.0419C14.9326 53.0419 11.7469 53.0419 8.56113 53.0419C8.35915 53.0419 8.32241 53.0051 8.36831 52.7935C9.53427 47.7706 10.6911 42.7385 11.8387 37.7064C11.8754 37.55 11.9305 37.4856 12.1049 37.4856C14.8224 37.4856 17.5491 37.4856 20.2666 37.4856C20.4594 37.4856 20.487 37.5408 20.4411 37.7156C19.6515 41.1286 18.8711 44.5508 18.0816 47.9638C18.0357 48.1478 18.0632 48.1938 18.2652 48.203C20.4227 48.2306 22.5435 48.0098 24.6183 47.3842C26.1515 46.915 27.6113 46.3079 28.8139 45.2131C30.3471 43.8148 31.1 42.0761 30.9898 39.9879C30.9347 39.0311 30.4298 38.2952 29.6953 37.7156C28.8323 37.0256 27.8224 36.6485 26.7666 36.3725C25.3344 35.9861 23.8747 35.8205 22.3966 35.8113C19.1558 35.7929 15.9149 35.8113 12.6741 35.8113C12.3803 35.8113 12.3711 35.8113 12.4446 35.5261C12.8026 34.0818 13.1698 32.6375 13.5187 31.1932C13.5554 31.0368 13.6197 31 13.7758 31C24.398 31 35.0201 31 45.6515 31C45.8075 31 45.8718 31.046 45.9177 31.1932C47.4142 35.8665 48.9106 40.5398 50.4163 45.2131C50.4347 45.2591 50.453 45.3051 50.4714 45.3603C50.5632 45.3419 50.5908 45.2591 50.6367 45.2039C54.208 40.5582 57.7793 35.9033 61.3414 31.2576C61.4883 31.0644 61.6353 31 61.874 31C67.7772 31 73.6712 31.0184 79.5745 31C81.3739 31 83.1367 31.2944 84.881 31.6808C86.6345 32.0763 88.3146 32.6651 89.8937 33.5206C91.2065 34.229 92.3266 35.1674 93.0702 36.4921C94.1536 38.424 94.2638 40.4294 93.5385 42.5177C92.6204 45.1763 90.9495 47.2186 88.6543 48.8009C87.1486 49.8405 85.4869 50.5672 83.7609 51.156C81.3188 51.9931 78.8033 52.4991 76.251 52.7935C74.7178 52.9683 73.1846 53.0419 71.6423 53.0419C68.6861 53.0419 65.7299 53.0419 62.7737 53.0419C62.5258 53.0419 62.5257 53.0419 62.5808 52.8027C63.7468 47.789 64.9036 42.7753 66.0604 37.7616C66.1063 37.5776 66.1613 37.4948 66.3725 37.504C69.0625 37.5132 71.7617 37.504 74.4516 37.504C74.7087 37.504 74.7087 37.504 74.6536 37.7524C73.91 41.0182 73.1663 44.284 72.4135 47.5498C72.3768 47.7154 72.3492 47.8902 72.2941 48.0466C72.2482 48.1846 72.2941 48.2122 72.4227 48.2122C73.3316 48.2122 74.2496 48.203 75.1585 48.111C77.0039 47.927 78.7941 47.513 80.5017 46.7863C82.0625 46.1239 83.3753 45.158 84.275 43.7044C85.0095 42.5177 85.3217 41.2114 85.1656 39.8131C85.0646 38.9483 84.5872 38.2768 83.917 37.7432C83.0081 37.0164 81.9431 36.6117 80.8322 36.3449C79.345 35.9861 77.8393 35.8113 76.3061 35.8113C73.1479 35.8113 69.9897 35.8113 66.8315 35.8113C66.6755 35.8113 66.5745 35.8481 66.4643 35.9769C62.0851 41.009 57.7151 46.0319 53.3358 51.064C51.417 53.2627 49.5074 55.4613 47.5887 57.66C47.506 57.752 47.4325 57.844 47.3224 57.982L47.3316 58.0096ZM60.4968 64.0168C60.4968 62.9865 54.7037 62.1493 47.5611 62.1493C40.4184 62.1493 34.6254 62.9865 34.6254 64.0168C34.6254 65.0471 40.4184 65.8843 47.5611 65.8843C54.7037 65.8843 60.4968 65.0471 60.4968 64.0168Z' fill='%23a7a9ac'/%3E%3C/svg%3E%0A");
	--icon-outlets: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M59.5 36.5C61.99 36.5 64 38.51 64 41C64 41.32 63.96 41.65 63.9 41.96C53.56 44.81 46 54.46 46 65.75C46 67.35 46.15 68.91 46.44 70.43C44.89 71.15 43.23 71.7 41.5 72.05V86H32.5V72.05C22.23 69.84 14.5 60.88 14.5 50V45.5C12.02 45.5 10 43.49 10 41C10 38.51 12.02 36.5 14.5 36.5H59.5ZM23.5 14C25.99 14 28 16.02 28 18.5V32H19V18.5C19 16.02 21.02 14 23.5 14ZM50.5 14C52.99 14 55 16.02 55 18.5V32H46V18.5C46 16.02 48.01 14 50.5 14ZM50.5 65.75C50.5 54.57 59.57 45.5 70.75 45.5C81.93 45.5 91 54.57 91 65.75C91 76.93 81.93 86 70.75 86C59.57 86 50.5 76.93 50.5 65.75ZM75.37 54.27L61.87 64.39C61.29 64.83 60.93 65.59 61.28 66.27C61.51 66.96 62.15 67.42 62.88 67.42H67.89L63.66 75.04C63.28 75.73 63.42 76.6 64.03 77.12C64.64 77.65 65.52 77.56 66.15 77.2L79.65 67.08C80.23 66.64 80.47 65.88 80.24 65.2C80.01 64.51 79.37 64.05 78.64 64.05H73.63L77.86 56.43C78.24 55.74 78.1 54.87 77.49 54.22C76.88 53.81 76 53.78 75.37 54.26V54.27Z' fill='%23a7a9ac'/%3E%3C/svg%3E%0A");
	--icon-restrooms: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40.5046 55.33C41.2946 57.69 40.0146 60.24 37.6646 61.02C37.1846 61.18 36.7146 61.25 36.2446 61.25C34.9346 61.25 33.7146 60.65 32.8646 59.67V81.5C32.8646 83.98 30.9746 86 28.4946 86C26.0146 86 23.9946 83.98 23.9946 81.5V61.25H21.7446V81.5C21.7446 83.98 19.8546 86 17.3746 86C14.8946 86 12.8746 83.98 12.8746 81.5V59.73C11.7246 61.04 9.85457 61.61 8.07457 61.02C5.71457 60.23 4.44457 57.69 5.23457 55.33L10.9646 38.16C12.1846 34.48 15.6246 32 19.5046 32H26.5046C30.3846 32 33.8146 34.48 35.0546 38.16L40.5146 55.33H40.5046ZM16.2346 20.75C16.2346 17.02 19.2546 14 22.9846 14C26.7146 14 29.6046 17.02 29.6046 20.75C29.6046 24.48 26.7046 27.5 22.9846 27.5C19.2646 27.5 16.2346 24.48 16.2346 20.75ZM53.2346 17.38V82.63C53.2346 84.49 51.5946 86.01 49.8546 86.01C48.1146 86.01 46.6046 84.49 46.6046 82.63V17.38C46.6046 15.52 48.1246 14 49.8546 14C51.8346 14 53.3546 15.52 53.2346 17.38ZM91.4046 61.02C90.9346 61.18 90.4546 61.25 89.9846 61.25L92.2346 68H86.7346V81.5C86.7346 83.98 84.5946 86 82.2346 86C79.8746 86 77.8646 83.98 77.8646 81.5V68H75.6146V81.5C75.6146 83.98 73.4746 86 71.1146 86C68.7546 86 66.7446 83.98 66.7446 81.5V68H61.1246L63.5146 61.19C63.0346 61.19 62.5546 61.17 62.0746 61.01C59.7146 60.22 58.4446 57.68 59.2346 55.32L64.9646 38.15C66.1846 34.47 69.6146 32 73.4946 32H80.5046C84.3846 32 87.8146 34.48 89.0446 38.16L94.7646 55.33C95.5546 57.68 94.2846 60.24 91.4246 61.02H91.4046ZM70.2346 20.75C70.2346 17.02 73.0046 14 76.8546 14C80.7046 14 83.6046 17.02 83.6046 20.75C83.6046 24.48 80.5846 27.5 76.8546 27.5C73.1246 27.5 70.2346 24.48 70.2346 20.75Z' fill='%23a7a9ac'/%3E%3C/svg%3E%0A");
	--icon-satellite-tv: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M94.01 20.75V65.75C94.01 69.48 90.99 72.5 87.26 72.5H56.26L58.51 79.25H74.64C76.5 79.25 78.02 80.76 78.02 82.63C78.02 84.5 76.51 86.01 74.64 86.01H24.37C22.51 86.01 20.99 84.49 20.99 82.63C20.99 80.77 22.51 79.25 24.37 79.25H40.5L42.75 72.5H11.75C8.02 72.5 5 69.48 5 65.75V20.75C5 17.02 8.02 14 11.75 14H87.26C90.99 14 94.01 17.02 94.01 20.75ZM85.01 23H14V63.5H85.01V23ZM33.39 35.7H26.64L27.75 29.35H48.72L47.61 35.7H40.86L37.09 57.14H29.62L33.39 35.7ZM57.33 29.35L58.32 49.44L66.42 29.35H74.36L61.3 57.15H52.8L49.5 29.35H57.33Z' fill='%23a7a9ac'/%3E%3C/svg%3E%0A");
	--icon-seatbelt: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M75.22 33.01H81.37L81.36 33C82.41 33 83.26 33.85 83.26 34.9V63.21C83.26 64.26 82.41 65.11 81.36 65.11H75.2101C74.08 65.11 72.97 64.82 71.98 64.28L67.06 61.59H53.81C51.45 61.59 49.54 59.68 49.54 57.32V40.5C49.54 38.14 51.45 36.23 53.81 36.23H67.64L71.9901 33.84C72.9801 33.3 74.09 33.01 75.22 33.01ZM59.8801 56.65C60.83 56.65 61.6001 55.88 61.6001 54.93V42.82C61.6001 41.87 60.83 41.1 59.8801 41.1H56.4C55.45 41.1 54.68 41.87 54.68 42.82V54.93C54.68 55.88 55.45 56.65 56.4 56.65H59.8801Z' fill='%23a7a9ac'/%3E%3Cpath d='M11.6 36.62H6.3C5.58203 36.62 5 37.202 5 37.92V60.99C5 61.708 5.58203 62.29 6.3 62.29H11.6C12.318 62.29 12.9 61.708 12.9 60.99V37.92C12.9 37.202 12.318 36.62 11.6 36.62Z' fill='%23a7a9ac'/%3E%3Cpath d='M92.71 36.62H87.41C86.692 36.62 86.11 37.202 86.11 37.92V60.99C86.11 61.708 86.692 62.29 87.41 62.29H92.71C93.428 62.29 94.01 61.708 94.01 60.99V37.92C94.01 37.202 93.428 36.62 92.71 36.62Z' fill='%23a7a9ac'/%3E%3Cpath d='M26.58 43.2H35.1C35.9836 43.2 36.7 43.9163 36.7 44.8V53.32C36.7 54.2037 35.9836 54.92 35.1 54.92H26.58C25.6963 54.92 24.98 54.2037 24.98 53.32V44.8C24.98 43.9163 25.6963 43.2 26.58 43.2Z' fill='%23a7a9ac'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M43.32 33.01H18.77C17.0099 33.01 15.58 34.44 15.58 36.2V62.71C15.58 64.47 17.0099 65.9 18.77 65.9H43.32C45.08 65.9 46.5099 64.47 46.5099 62.71V36.2C46.5099 34.44 45.08 33.01 43.32 33.01ZM38.14 54.76C38.14 55.64 37.42 56.36 36.5399 56.36H25.1499C24.2699 56.36 23.55 55.64 23.55 54.76V43.37C23.55 42.49 24.2699 41.77 25.1499 41.77H36.5399C37.42 41.77 38.14 42.49 38.14 43.37V54.76Z' fill='%23a7a9ac'/%3E%3C/svg%3E%0A");
	--icon-wheelchair: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42.32 21.65C43.66 20.65 45.43 20.47 46.93 21.18L63.31 28.89C67.42 30.82 68.49 36.15 65.46 39.51L60.07 45.5H76.51C77.86 45.5 79.14 46.1 79.98 47.15C80.84 48.19 81.19 49.57 80.92 50.89L76.42 73.39C75.93 75.82 73.56 77.4 71.12 76.92C68.69 76.43 67.11 74.07 67.59 71.62L70.89 54.51H61.13C62.34 57.27 63 60.3 63 63.51C63 75.94 52.93 86.01 40.5 86.01C28.07 86.01 18 75.94 18 63.51C18 51.08 28.07 41.01 40.5 41.01C42.06 41.01 43.47 41.16 45.06 41.47L52.68 33.85L45.54 30.49L38.71 35.61C36.73 37.1 33.9 36.69 32.41 34.71C30.92 32.73 31.32 29.9 33.31 28.41L42.31 21.66L42.32 21.65ZM40.52 77C47.97 77 54.02 70.95 54.02 63.5C54.02 56.05 47.97 50 40.52 50C33.07 50 27.02 55.92 27.02 63.5C27.02 71.08 32.94 77 40.52 77ZM76.52 20.75C76.52 24.48 73.5 27.5 69.77 27.5C66.04 27.5 63.02 24.48 63.02 20.75C63.02 17.02 66.04 14 69.77 14C73.5 14 76.52 17.02 76.52 20.75Z' fill='%23a7a9ac'/%3E%3C/svg%3E%0A");
	--icon-wifi: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M93.7422 42.9C92.8622 43.82 91.6722 44.28 90.4922 44.28C89.3122 44.28 88.2522 43.86 87.3722 43.03C77.1522 33.34 64.0022 28 49.9922 28C35.9822 28 22.5822 33.22 12.6122 43.03C10.8122 44.74 7.96221 44.7 6.25221 42.9C4.53221 41.11 4.59222 38.26 6.38222 36.54C18.1722 25.23 33.6522 19 50.0022 19C66.3522 19 81.8222 25.23 93.6222 36.54C95.4122 38.14 95.4622 41.11 93.7422 42.9ZM76.7822 51.62C78.6522 53.27 78.8222 56.11 77.1722 57.97C76.2822 58.98 75.0422 59.49 73.7922 59.49C72.7422 59.49 71.6722 59.12 70.8122 58.37C65.0722 53.29 57.6622 50.49 49.9822 50.49C42.3022 50.49 34.9022 53.29 29.1522 58.37C27.2922 60.02 24.4522 59.83 22.7922 57.98C21.1422 56.11 21.3322 53.27 23.1822 51.5C30.5822 44.97 40.0922 41.37 49.9722 41.37C59.8522 41.37 69.3622 45.1 76.7622 51.62H76.7822ZM58.8722 72.88C58.8722 77.85 54.8422 81.88 49.8722 81.88C44.9022 81.88 40.8722 77.85 40.8722 72.88C40.8722 67.91 44.9022 63.88 49.8722 63.88C54.8422 63.88 58.8722 67.91 58.8722 72.88Z' fill='%23a7a9ac'/%3E%3C/svg%3E");
}

#vehicles {
	row-gap: 2rem;
}

.vehicle-card h2, .vehicle-card .h2 {
	margin-bottom: 0;
	font-weight: 700;
}

.vehicle-card img {
	margin-bottom: 12px;
}

.vehicle-card p {
	margin-bottom: 18px;
}

.vehicle-card .features {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	gap: 10px;
	z-index: 2;
	width: fit-content;
	height: 24px;
}

.vehicle-card .features li button {
	width: 24px;
	height: 24px;
	background-color: #fff;
	border: 0;
	background-size: contain;
	background-repeat: no-repeat;
}

.vehicle-card .features li button.passenger-capacity {
	background-image: var(--icon-capacity);
}

.vehicle-card .features li button.seatbelt-equipped, .vehicle-card .features li button.seatbelt-available {
	background-image: var(--icon-seatbelt);
}

.vehicle-card .features li button.dvd-player-available {
	background-image: var(--icon-dvd-player);
}

.vehicle-card .features li button.outlets-available {
	background-image: var(--icon-outlets);
}

.vehicle-card .features li button.restrooms-available {
	background-image: var(--icon-restrooms);
}

.vehicle-card .features li button.satellite-tv {
	background-image: var(--icon-satellite-tv);
}

.vehicle-card .features li button.wheelchair-accessible, .vehicle-card .features li button.wheelchair-available {
	background-image: var(--icon-wheelchair);
}

.vehicle-card .features li button.wifi-available {
	background-image: var(--icon-wifi);
}

.tooltip .tooltip-arrow::before {
	border-bottom-color: #d3d3d3 !important;
}

.tooltip .tooltip-inner {
	border: 0;
	border-radius: 5px;
	background-color: #d3d3d3;
	padding: 3px 10px 4px 10px;
	color: #000;
	font-size: 10px;
}

.bg-primary {
	--ccl-bg-opacity: 1;
	background-color: rgba(var(--ccl-primary-rgb), var(--ccl-bg-opacity)) !important;
}

.bg-secondary {
	--ccl-bg-opacity: 1;
	background-color: rgba(var(--ccl-secondary-rgb), var(--ccl-bg-opacity)) !important;
}

.bg-black {
	--ccl-bg-opacity: 1;
	background-color: rgba(var(--ccl-black-rgb), var(--ccl-bg-opacity)) !important;
}

.bg-white {
	--ccl-bg-opacity: 1;
	background-color: rgba(var(--ccl-white-rgb), var(--ccl-bg-opacity)) !important;
}

.bg-body {
	--ccl-bg-opacity: 1;
	background-color: rgba(var(--ccl-body-bg-rgb), var(--ccl-bg-opacity)) !important;
}

.bg-dark {
	--ccl-bg-opacity: 1;
	background-color: #000 !important;
}

.bg-transparent {
	--ccl-bg-opacity: 1;
	background-color: transparent !important;
}

.bg-body-secondary {
	--ccl-bg-opacity: 1;
	background-color: rgba(var(--ccl-secondary-bg-rgb), var(--ccl-bg-opacity)) !important;
}

.bg-body-tertiary {
	--ccl-bg-opacity: 1;
	background-color: rgba(var(--ccl-tertiary-bg-rgb), var(--ccl-bg-opacity)) !important;
}

.d-inline {
	display: inline !important;
}

.d-inline-block {
	display: inline-block !important;
}

.d-block {
	display: block !important;
}

.d-grid {
	display: grid !important;
}

.d-inline-grid {
	display: inline-grid !important;
}

.d-table {
	display: table !important;
}

.d-table-row {
	display: table-row !important;
}

.d-table-cell {
	display: table-cell !important;
}

.d-flex {
	display: flex !important;
}

.d-inline-flex {
	display: inline-flex !important;
}

.d-none {
	display: none !important;
}

.flex-fill {
	flex: 1 1 auto !important;
}

.flex-row {
	flex-direction: row !important;
}

.flex-column {
	flex-direction: column !important;
}

.flex-row-reverse {
	flex-direction: row-reverse !important;
}

.flex-column-reverse {
	flex-direction: column-reverse !important;
}

.flex-grow-0 {
	flex-grow: 0 !important;
}

.flex-grow-1 {
	flex-grow: 1 !important;
}

.flex-shrink-0 {
	flex-shrink: 0 !important;
}

.flex-shrink-1 {
	flex-shrink: 1 !important;
}

.flex-wrap {
	flex-wrap: wrap !important;
}

.flex-nowrap {
	flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
	flex-wrap: wrap-reverse !important;
}

.fw-normal {
	font-weight: 400 !important;
}

.fw-medium {
	font-weight: 500 !important;
}

.fw-bold {
	font-weight: 700 !important;
}

.justify-content-start {
	justify-content: flex-start !important;
}

.justify-content-end {
	justify-content: flex-end !important;
}

.justify-content-center {
	justify-content: center !important;
}

.justify-content-between {
	justify-content: space-between !important;
}

.justify-content-around {
	justify-content: space-around !important;
}

.justify-content-evenly {
	justify-content: space-evenly !important;
}

.align-items-start {
	align-items: flex-start !important;
}

.align-items-end {
	align-items: flex-end !important;
}

.align-items-center {
	align-items: center !important;
}

.align-items-baseline {
	align-items: baseline !important;
}

.align-items-stretch {
	align-items: stretch !important;
}

.align-content-start {
	align-content: flex-start !important;
}

.align-content-end {
	align-content: flex-end !important;
}

.align-content-center {
	align-content: center !important;
}

.align-content-between {
	align-content: space-between !important;
}

.align-content-around {
	align-content: space-around !important;
}

.align-content-stretch {
	align-content: stretch !important;
}

.align-self-auto {
	align-self: auto !important;
}

.align-self-start {
	align-self: flex-start !important;
}

.align-self-end {
	align-self: flex-end !important;
}

.align-self-center {
	align-self: center !important;
}

.align-self-baseline {
	align-self: baseline !important;
}

.align-self-stretch {
	align-self: stretch !important;
}

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

.m-1 {
	margin: 1rem !important;
}

.m-2 {
	margin: 2rem !important;
}

.m-3 {
	margin: 3rem !important;
}

.m-4 {
	margin: 4rem !important;
}

.m-5 {
	margin: 5rem !important;
}

.m-auto {
	margin: auto !important;
}

.mx-0 {
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.mx-1 {
	margin-right: 1rem !important;
	margin-left: 1rem !important;
}

.mx-2 {
	margin-right: 2rem !important;
	margin-left: 2rem !important;
}

.mx-3 {
	margin-right: 3rem !important;
	margin-left: 3rem !important;
}

.mx-4 {
	margin-right: 4rem !important;
	margin-left: 4rem !important;
}

.mx-5 {
	margin-right: 5rem !important;
	margin-left: 5rem !important;
}

.mx-auto {
	margin-right: auto !important;
	margin-left: auto !important;
}

.my-0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.my-1 {
	margin-top: 1rem !important;
	margin-bottom: 1rem !important;
}

.my-2 {
	margin-top: 2rem !important;
	margin-bottom: 2rem !important;
}

.my-3 {
	margin-top: 3rem !important;
	margin-bottom: 3rem !important;
}

.my-4 {
	margin-top: 4rem !important;
	margin-bottom: 4rem !important;
}

.my-5 {
	margin-top: 5rem !important;
	margin-bottom: 5rem !important;
}

.my-auto {
	margin-top: auto !important;
	margin-bottom: auto !important;
}

.mt-0 {
	margin-top: 0 !important;
}

.mt-1 {
	margin-top: 1rem !important;
}

.mt-2 {
	margin-top: 2rem !important;
}

.mt-3 {
	margin-top: 3rem !important;
}

.mt-4 {
	margin-top: 4rem !important;
}

.mt-5 {
	margin-top: 5rem !important;
}

.mt-auto {
	margin-top: auto !important;
}

.me-0 {
	margin-right: 0 !important;
}

.me-1 {
	margin-right: 1rem !important;
}

.me-2 {
	margin-right: 2rem !important;
}

.me-3 {
	margin-right: 3rem !important;
}

.me-4 {
	margin-right: 4rem !important;
}

.me-5 {
	margin-right: 5rem !important;
}

.me-auto {
	margin-right: auto !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-1 {
	margin-bottom: 1rem !important;
}

.mb-2 {
	margin-bottom: 2rem !important;
}

.mb-3 {
	margin-bottom: 3rem !important;
}

.mb-4 {
	margin-bottom: 4rem !important;
}

.mb-5 {
	margin-bottom: 5rem !important;
}

.mb-auto {
	margin-bottom: auto !important;
}

.ms-0 {
	margin-left: 0 !important;
}

.ms-1 {
	margin-left: 1rem !important;
}

.ms-2 {
	margin-left: 2rem !important;
}

.ms-3 {
	margin-left: 3rem !important;
}

.ms-4 {
	margin-left: 4rem !important;
}

.ms-5 {
	margin-left: 5rem !important;
}

.ms-auto {
	margin-left: auto !important;
}

.order-first {
	order: -1 !important;
}

.order-0 {
	order: 0 !important;
}

.order-1 {
	order: 1 !important;
}

.order-2 {
	order: 2 !important;
}

.order-3 {
	order: 3 !important;
}

.order-4 {
	order: 4 !important;
}

.order-5 {
	order: 5 !important;
}

.order-last {
	order: 6 !important;
}

.object-fit-contain {
	object-fit: contain !important;
}

.object-fit-cover {
	object-fit: cover !important;
}

.object-fit-fill {
	object-fit: fill !important;
}

.object-fit-scale {
	object-fit: scale-down !important;
}

.object-fit-none {
	object-fit: none !important;
}

.py-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.py-1 {
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
}

.py-2 {
	padding-top: 2rem !important;
	padding-bottom: 2rem !important;
}

.py-3 {
	padding-top: 3rem !important;
	padding-bottom: 3rem !important;
}

.py-4 {
	padding-top: 4rem !important;
	padding-bottom: 4rem !important;
}

.py-5 {
	padding-top: 5rem !important;
	padding-bottom: 5rem !important;
}

.px-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.px-1 {
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
}

.px-2 {
	padding-top: 2rem !important;
	padding-bottom: 2rem !important;
}

.px-3 {
	padding-top: 3rem !important;
	padding-bottom: 3rem !important;
}

.px-4 {
	padding-top: 4rem !important;
	padding-bottom: 4rem !important;
}

.px-5 {
	padding-top: 5rem !important;
	padding-bottom: 5rem !important;
}

.pt-0 {
	padding-top: 0 !important;
}

.pt-1 {
	padding-top: 1rem !important;
}

.pt-2 {
	padding-top: 2rem !important;
}

.pt-3 {
	padding-top: 3rem !important;
}

.pt-4 {
	padding-top: 4rem !important;
}

.pt-5 {
	padding-top: 5rem !important;
}

.pe-0 {
	padding-right: 0 !important;
}

.pe-1 {
	padding-right: 1rem !important;
}

.pe-2 {
	padding-right: 2rem !important;
}

.pe-3 {
	padding-right: 3rem !important;
}

.pe-4 {
	padding-right: 4rem !important;
}

.pe-5 {
	padding-right: 5rem !important;
}

.pb-0 {
	padding-bottom: 0 !important;
}

.pb-1 {
	padding-bottom: 1rem !important;
}

.pb-2 {
	padding-bottom: 2rem !important;
}

.pb-3 {
	padding-bottom: 3rem !important;
}

.pb-4 {
	padding-bottom: 4rem !important;
}

.pb-5 {
	padding-bottom: 5rem !important;
}

.ps-0 {
	padding-left: 0 !important;
}

.ps-1 {
	padding-left: 1rem !important;
}

.ps-2 {
	padding-left: 2rem !important;
}

.ps-3 {
	padding-left: 3rem !important;
}

.ps-4 {
	padding-left: 4rem !important;
}

.ps-5 {
	padding-left: 5rem !important;
}

.gap-0 {
	gap: 0 !important;
}

.gap-1 {
	gap: 1rem !important;
}

.gap-2 {
	gap: 2rem !important;
}

.gap-3 {
	gap: 3rem !important;
}

.gap-4 {
	gap: 4rem !important;
}

.gap-5 {
	gap: 5rem !important;
}

.row-gap-0 {
	row-gap: 0 !important;
}

.row-gap-1 {
	row-gap: 1rem !important;
}

.row-gap-2 {
	row-gap: 2rem !important;
}

.row-gap-3 {
	row-gap: 3rem !important;
}

.row-gap-4 {
	row-gap: 4rem !important;
}

.row-gap-5 {
	row-gap: 5rem !important;
}

.column-gap-0 {
	column-gap: 0 !important;
}

.column-gap-1 {
	column-gap: 1rem !important;
}

.column-gap-2 {
	column-gap: 2rem !important;
}

.column-gap-3 {
	column-gap: 3rem !important;
}

.column-gap-4 {
	column-gap: 4rem !important;
}

.column-gap-5 {
	column-gap: 5rem !important;
}

.position-relative {
	position: relative !important;
}

.position-absolute {
	position: absolute !important;
}

.position-fixed {
	position: fixed !important;
}

.position-sticky {
	position: sticky !important;
}

.text-start {
	text-align: left !important;
}

.text-end {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

.text-primary {
	--ccl-text-opacity: 1;
	color: rgba(var(--ccl-primary-rgb), var(--ccl-text-opacity)) !important;
}

.text-secondary {
	--ccl-text-opacity: 1;
	color: rgba(var(--ccl-secondary-rgb), var(--ccl-text-opacity)) !important;
}

.text-black {
	--ccl-text-opacity: 1;
	color: rgba(var(--ccl-black-rgb), var(--ccl-text-opacity)) !important;
}

.text-white {
	--ccl-text-opacity: 1;
	color: rgba(var(--ccl-white-rgb), var(--ccl-text-opacity)) !important;
}

.text-body {
	--ccl-text-opacity: 1;
	color: rgba(var(--ccl-body-color-rgb), var(--ccl-text-opacity)) !important;
}

.text-muted {
	--ccl-text-opacity: 1;
	color: var(--ccl-secondary-color) !important;
}

.text-black-50 {
	--ccl-text-opacity: 1;
	color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
	--ccl-text-opacity: 1;
	color: rgba(255, 255, 255, 0.5) !important;
}

.text-body-secondary {
	--ccl-text-opacity: 1;
	color: var(--ccl-secondary-color) !important;
}

.text-body-tertiary {
	--ccl-text-opacity: 1;
	color: var(--ccl-tertiary-color) !important;
}

.text-body-emphasis {
	--ccl-text-opacity: 1;
	color: var(--ccl-emphasis-color) !important;
}

.text-reset {
	--ccl-text-opacity: 1;
	color: inherit !important;
}

.text-opacity-25 {
	--ccl-text-opacity: 0.25;
}

.text-opacity-50 {
	--ccl-text-opacity: 0.5;
}

.text-opacity-75 {
	--ccl-text-opacity: 0.75;
}

.text-opacity-100 {
	--ccl-text-opacity: 1;
}

.text-primary-emphasis {
	color: var(--ccl-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
	color: var(--ccl-secondary-text-emphasis) !important;
}

.text-success-emphasis {
	color: var(--ccl-success-text-emphasis) !important;
}

.text-info-emphasis {
	color: var(--ccl-info-text-emphasis) !important;
}

.text-warning-emphasis {
	color: var(--ccl-warning-text-emphasis) !important;
}

.text-danger-emphasis {
	color: var(--ccl-danger-text-emphasis) !important;
}

.text-light-emphasis {
	color: var(--ccl-light-text-emphasis) !important;
}

.text-dark-emphasis {
	color: var(--ccl-dark-text-emphasis) !important;
}

.text-decoration-none {
	text-decoration: none !important;
}

.z-n1 {
	z-index: -1 !important;
}

.z-0 {
	z-index: 0 !important;
}

.z-1 {
	z-index: 1 !important;
}

.z-2 {
	z-index: 2 !important;
}

.z-3 {
	z-index: 3 !important;
}

@media (min-width: 576px) {
	.d-sm-inline {
		display: inline !important;
	}
	.d-sm-inline-block {
		display: inline-block !important;
	}
	.d-sm-block {
		display: block !important;
	}
	.d-sm-grid {
		display: grid !important;
	}
	.d-sm-inline-grid {
		display: inline-grid !important;
	}
	.d-sm-table {
		display: table !important;
	}
	.d-sm-table-row {
		display: table-row !important;
	}
	.d-sm-table-cell {
		display: table-cell !important;
	}
	.d-sm-flex {
		display: flex !important;
	}
	.d-sm-inline-flex {
		display: inline-flex !important;
	}
	.d-sm-none {
		display: none !important;
	}
	.flex-sm-row {
		flex-direction: row !important;
	}
	.flex-sm-column {
		flex-direction: column !important;
	}
	.flex-sm-row-reverse {
		flex-direction: row-reverse !important;
	}
	.flex-sm-column-reverse {
		flex-direction: column-reverse !important;
	}
	.justify-content-sm-start {
		justify-content: flex-start !important;
	}
	.justify-content-sm-end {
		justify-content: flex-end !important;
	}
	.justify-content-sm-center {
		justify-content: center !important;
	}
	.justify-content-sm-between {
		justify-content: space-between !important;
	}
	.justify-content-sm-around {
		justify-content: space-around !important;
	}
	.justify-content-sm-evenly {
		justify-content: space-evenly !important;
	}
	.align-items-sm-start {
		align-items: flex-start !important;
	}
	.align-items-sm-end {
		align-items: flex-end !important;
	}
	.align-items-sm-center {
		align-items: center !important;
	}
	.align-items-sm-baseline {
		align-items: baseline !important;
	}
	.align-items-sm-stretch {
		align-items: stretch !important;
	}
	.m-sm-0 {
		margin: 0 !important;
	}
	.m-sm-1 {
		margin: 1rem !important;
	}
	.m-sm-2 {
		margin: 2rem !important;
	}
	.m-sm-3 {
		margin: 3rem !important;
	}
	.m-sm-4 {
		margin: 4rem !important;
	}
	.m-sm-5 {
		margin: 5rem !important;
	}
	.m-sm-auto {
		margin: auto !important;
	}
	.mx-sm-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	.mx-sm-1 {
		margin-right: 1rem !important;
		margin-left: 1rem !important;
	}
	.mx-sm-2 {
		margin-right: 2rem !important;
		margin-left: 2rem !important;
	}
	.mx-sm-3 {
		margin-right: 3rem !important;
		margin-left: 3rem !important;
	}
	.mx-sm-4 {
		margin-right: 4rem !important;
		margin-left: 4rem !important;
	}
	.mx-sm-5 {
		margin-right: 5rem !important;
		margin-left: 5rem !important;
	}
	.mx-sm-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}
	.my-sm-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	.my-sm-1 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}
	.my-sm-2 {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important;
	}
	.my-sm-3 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}
	.my-sm-4 {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important;
	}
	.my-sm-5 {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important;
	}
	.my-sm-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}
	.mt-sm-0 {
		margin-top: 0 !important;
	}
	.mt-sm-1 {
		margin-top: 1rem !important;
	}
	.mt-sm-2 {
		margin-top: 2rem !important;
	}
	.mt-sm-3 {
		margin-top: 3rem !important;
	}
	.mt-sm-4 {
		margin-top: 4rem !important;
	}
	.mt-sm-5 {
		margin-top: 5rem !important;
	}
	.mt-sm-auto {
		margin-top: auto !important;
	}
	.me-sm-0 {
		margin-right: 0 !important;
	}
	.me-sm-1 {
		margin-right: 1rem !important;
	}
	.me-sm-2 {
		margin-right: 2rem !important;
	}
	.me-sm-3 {
		margin-right: 3rem !important;
	}
	.me-sm-4 {
		margin-right: 4rem !important;
	}
	.me-sm-5 {
		margin-right: 5rem !important;
	}
	.me-sm-auto {
		margin-right: auto !important;
	}
	.mb-sm-0 {
		margin-bottom: 0 !important;
	}
	.mb-sm-1 {
		margin-bottom: 1rem !important;
	}
	.mb-sm-2 {
		margin-bottom: 2rem !important;
	}
	.mb-sm-3 {
		margin-bottom: 3rem !important;
	}
	.mb-sm-4 {
		margin-bottom: 4rem !important;
	}
	.mb-sm-5 {
		margin-bottom: 5rem !important;
	}
	.mb-sm-auto {
		margin-bottom: auto !important;
	}
	.ms-sm-0 {
		margin-left: 0 !important;
	}
	.ms-sm-1 {
		margin-left: 1rem !important;
	}
	.ms-sm-2 {
		margin-left: 2rem !important;
	}
	.ms-sm-3 {
		margin-left: 3rem !important;
	}
	.ms-sm-4 {
		margin-left: 4rem !important;
	}
	.ms-sm-5 {
		margin-left: 5rem !important;
	}
	.ms-sm-auto {
		margin-left: auto !important;
	}
	.py-sm-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.py-sm-1 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}
	.py-sm-2 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
	.py-sm-3 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}
	.py-sm-4 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}
	.py-sm-5 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}
	.px-sm-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.px-sm-1 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}
	.px-sm-2 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
	.px-sm-3 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}
	.px-sm-4 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}
	.px-sm-5 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}
	.pt-sm-0 {
		padding-top: 0 !important;
	}
	.pt-sm-1 {
		padding-top: 1rem !important;
	}
	.pt-sm-2 {
		padding-top: 2rem !important;
	}
	.pt-sm-3 {
		padding-top: 3rem !important;
	}
	.pt-sm-4 {
		padding-top: 4rem !important;
	}
	.pt-sm-5 {
		padding-top: 5rem !important;
	}
	.pe-sm-0 {
		padding-right: 0 !important;
	}
	.pe-sm-1 {
		padding-right: 1rem !important;
	}
	.pe-sm-2 {
		padding-right: 2rem !important;
	}
	.pe-sm-3 {
		padding-right: 3rem !important;
	}
	.pe-sm-4 {
		padding-right: 4rem !important;
	}
	.pe-sm-5 {
		padding-right: 5rem !important;
	}
	.pb-sm-0 {
		padding-bottom: 0 !important;
	}
	.pb-sm-1 {
		padding-bottom: 1rem !important;
	}
	.pb-sm-2 {
		padding-bottom: 2rem !important;
	}
	.pb-sm-3 {
		padding-bottom: 3rem !important;
	}
	.pb-sm-4 {
		padding-bottom: 4rem !important;
	}
	.pb-sm-5 {
		padding-bottom: 5rem !important;
	}
	.ps-sm-0 {
		padding-left: 0 !important;
	}
	.ps-sm-1 {
		padding-left: 1rem !important;
	}
	.ps-sm-2 {
		padding-left: 2rem !important;
	}
	.ps-sm-3 {
		padding-left: 3rem !important;
	}
	.ps-sm-4 {
		padding-left: 4rem !important;
	}
	.ps-sm-5 {
		padding-left: 5rem !important;
	}
	.gap-sm-0 {
		gap: 0 !important;
	}
	.gap-sm-1 {
		gap: 1rem !important;
	}
	.gap-sm-2 {
		gap: 2rem !important;
	}
	.gap-sm-3 {
		gap: 3rem !important;
	}
	.gap-sm-4 {
		gap: 4rem !important;
	}
	.gap-sm-5 {
		gap: 5rem !important;
	}
	.row-gap-sm-0 {
		row-gap: 0 !important;
	}
	.row-gap-sm-1 {
		row-gap: 1rem !important;
	}
	.row-gap-sm-2 {
		row-gap: 2rem !important;
	}
	.row-gap-sm-3 {
		row-gap: 3rem !important;
	}
	.row-gap-sm-4 {
		row-gap: 4rem !important;
	}
	.row-gap-sm-5 {
		row-gap: 5rem !important;
	}
	.column-gap-sm-0 {
		column-gap: 0 !important;
	}
	.column-gap-sm-1 {
		column-gap: 1rem !important;
	}
	.column-gap-sm-2 {
		column-gap: 2rem !important;
	}
	.column-gap-sm-3 {
		column-gap: 3rem !important;
	}
	.column-gap-sm-4 {
		column-gap: 4rem !important;
	}
	.column-gap-sm-5 {
		column-gap: 5rem !important;
	}
	.text-sm-start {
		text-align: left !important;
	}
	.text-sm-end {
		text-align: right !important;
	}
	.text-sm-center {
		text-align: center !important;
	}
}

@media (min-width: 768px) {
	.d-md-inline {
		display: inline !important;
	}
	.d-md-inline-block {
		display: inline-block !important;
	}
	.d-md-block {
		display: block !important;
	}
	.d-md-grid {
		display: grid !important;
	}
	.d-md-inline-grid {
		display: inline-grid !important;
	}
	.d-md-table {
		display: table !important;
	}
	.d-md-table-row {
		display: table-row !important;
	}
	.d-md-table-cell {
		display: table-cell !important;
	}
	.d-md-flex {
		display: flex !important;
	}
	.d-md-inline-flex {
		display: inline-flex !important;
	}
	.d-md-none {
		display: none !important;
	}
	.flex-md-row {
		flex-direction: row !important;
	}
	.flex-md-column {
		flex-direction: column !important;
	}
	.flex-md-row-reverse {
		flex-direction: row-reverse !important;
	}
	.flex-md-column-reverse {
		flex-direction: column-reverse !important;
	}
	.justify-content-md-start {
		justify-content: flex-start !important;
	}
	.justify-content-md-end {
		justify-content: flex-end !important;
	}
	.justify-content-md-center {
		justify-content: center !important;
	}
	.justify-content-md-between {
		justify-content: space-between !important;
	}
	.justify-content-md-around {
		justify-content: space-around !important;
	}
	.justify-content-md-evenly {
		justify-content: space-evenly !important;
	}
	.align-items-md-start {
		align-items: flex-start !important;
	}
	.align-items-md-end {
		align-items: flex-end !important;
	}
	.align-items-md-center {
		align-items: center !important;
	}
	.align-items-md-baseline {
		align-items: baseline !important;
	}
	.align-items-md-stretch {
		align-items: stretch !important;
	}
	.m-md-0 {
		margin: 0 !important;
	}
	.m-md-1 {
		margin: 1rem !important;
	}
	.m-md-2 {
		margin: 2rem !important;
	}
	.m-md-3 {
		margin: 3rem !important;
	}
	.m-md-4 {
		margin: 4rem !important;
	}
	.m-md-5 {
		margin: 5rem !important;
	}
	.m-md-auto {
		margin: auto !important;
	}
	.mx-md-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	.mx-md-1 {
		margin-right: 1rem !important;
		margin-left: 1rem !important;
	}
	.mx-md-2 {
		margin-right: 2rem !important;
		margin-left: 2rem !important;
	}
	.mx-md-3 {
		margin-right: 3rem !important;
		margin-left: 3rem !important;
	}
	.mx-md-4 {
		margin-right: 4rem !important;
		margin-left: 4rem !important;
	}
	.mx-md-5 {
		margin-right: 5rem !important;
		margin-left: 5rem !important;
	}
	.mx-md-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}
	.my-md-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	.my-md-1 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}
	.my-md-2 {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important;
	}
	.my-md-3 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}
	.my-md-4 {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important;
	}
	.my-md-5 {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important;
	}
	.my-md-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}
	.mt-md-0 {
		margin-top: 0 !important;
	}
	.mt-md-1 {
		margin-top: 1rem !important;
	}
	.mt-md-2 {
		margin-top: 2rem !important;
	}
	.mt-md-3 {
		margin-top: 3rem !important;
	}
	.mt-md-4 {
		margin-top: 4rem !important;
	}
	.mt-md-5 {
		margin-top: 5rem !important;
	}
	.mt-md-auto {
		margin-top: auto !important;
	}
	.me-md-0 {
		margin-right: 0 !important;
	}
	.me-md-1 {
		margin-right: 1rem !important;
	}
	.me-md-2 {
		margin-right: 2rem !important;
	}
	.me-md-3 {
		margin-right: 3rem !important;
	}
	.me-md-4 {
		margin-right: 4rem !important;
	}
	.me-md-5 {
		margin-right: 5rem !important;
	}
	.me-md-auto {
		margin-right: auto !important;
	}
	.mb-md-0 {
		margin-bottom: 0 !important;
	}
	.mb-md-1 {
		margin-bottom: 1rem !important;
	}
	.mb-md-2 {
		margin-bottom: 2rem !important;
	}
	.mb-md-3 {
		margin-bottom: 3rem !important;
	}
	.mb-md-4 {
		margin-bottom: 4rem !important;
	}
	.mb-md-5 {
		margin-bottom: 5rem !important;
	}
	.mb-md-auto {
		margin-bottom: auto !important;
	}
	.ms-md-0 {
		margin-left: 0 !important;
	}
	.ms-md-1 {
		margin-left: 1rem !important;
	}
	.ms-md-2 {
		margin-left: 2rem !important;
	}
	.ms-md-3 {
		margin-left: 3rem !important;
	}
	.ms-md-4 {
		margin-left: 4rem !important;
	}
	.ms-md-5 {
		margin-left: 5rem !important;
	}
	.ms-md-auto {
		margin-left: auto !important;
	}
	.py-md-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.py-md-1 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}
	.py-md-2 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
	.py-md-3 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}
	.py-md-4 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}
	.py-md-5 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}
	.px-md-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.px-md-1 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}
	.px-md-2 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
	.px-md-3 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}
	.px-md-4 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}
	.px-md-5 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}
	.pt-md-0 {
		padding-top: 0 !important;
	}
	.pt-md-1 {
		padding-top: 1rem !important;
	}
	.pt-md-2 {
		padding-top: 2rem !important;
	}
	.pt-md-3 {
		padding-top: 3rem !important;
	}
	.pt-md-4 {
		padding-top: 4rem !important;
	}
	.pt-md-5 {
		padding-top: 5rem !important;
	}
	.pe-md-0 {
		padding-right: 0 !important;
	}
	.pe-md-1 {
		padding-right: 1rem !important;
	}
	.pe-md-2 {
		padding-right: 2rem !important;
	}
	.pe-md-3 {
		padding-right: 3rem !important;
	}
	.pe-md-4 {
		padding-right: 4rem !important;
	}
	.pe-md-5 {
		padding-right: 5rem !important;
	}
	.pb-md-0 {
		padding-bottom: 0 !important;
	}
	.pb-md-1 {
		padding-bottom: 1rem !important;
	}
	.pb-md-2 {
		padding-bottom: 2rem !important;
	}
	.pb-md-3 {
		padding-bottom: 3rem !important;
	}
	.pb-md-4 {
		padding-bottom: 4rem !important;
	}
	.pb-md-5 {
		padding-bottom: 5rem !important;
	}
	.ps-md-0 {
		padding-left: 0 !important;
	}
	.ps-md-1 {
		padding-left: 1rem !important;
	}
	.ps-md-2 {
		padding-left: 2rem !important;
	}
	.ps-md-3 {
		padding-left: 3rem !important;
	}
	.ps-md-4 {
		padding-left: 4rem !important;
	}
	.ps-md-5 {
		padding-left: 5rem !important;
	}
	.gap-md-0 {
		gap: 0 !important;
	}
	.gap-md-1 {
		gap: 1rem !important;
	}
	.gap-md-2 {
		gap: 2rem !important;
	}
	.gap-md-3 {
		gap: 3rem !important;
	}
	.gap-md-4 {
		gap: 4rem !important;
	}
	.gap-md-5 {
		gap: 5rem !important;
	}
	.row-gap-md-0 {
		row-gap: 0 !important;
	}
	.row-gap-md-1 {
		row-gap: 1rem !important;
	}
	.row-gap-md-2 {
		row-gap: 2rem !important;
	}
	.row-gap-md-3 {
		row-gap: 3rem !important;
	}
	.row-gap-md-4 {
		row-gap: 4rem !important;
	}
	.row-gap-md-5 {
		row-gap: 5rem !important;
	}
	.column-gap-md-0 {
		column-gap: 0 !important;
	}
	.column-gap-md-1 {
		column-gap: 1rem !important;
	}
	.column-gap-md-2 {
		column-gap: 2rem !important;
	}
	.column-gap-md-3 {
		column-gap: 3rem !important;
	}
	.column-gap-md-4 {
		column-gap: 4rem !important;
	}
	.column-gap-md-5 {
		column-gap: 5rem !important;
	}
	.text-md-start {
		text-align: left !important;
	}
	.text-md-end {
		text-align: right !important;
	}
	.text-md-center {
		text-align: center !important;
	}
}

@media (min-width: 992px) {
	.d-lg-inline {
		display: inline !important;
	}
	.d-lg-inline-block {
		display: inline-block !important;
	}
	.d-lg-block {
		display: block !important;
	}
	.d-lg-grid {
		display: grid !important;
	}
	.d-lg-inline-grid {
		display: inline-grid !important;
	}
	.d-lg-table {
		display: table !important;
	}
	.d-lg-table-row {
		display: table-row !important;
	}
	.d-lg-table-cell {
		display: table-cell !important;
	}
	.d-lg-flex {
		display: flex !important;
	}
	.d-lg-inline-flex {
		display: inline-flex !important;
	}
	.d-lg-none {
		display: none !important;
	}
	.flex-lg-row {
		flex-direction: row !important;
	}
	.flex-lg-column {
		flex-direction: column !important;
	}
	.flex-lg-row-reverse {
		flex-direction: row-reverse !important;
	}
	.flex-lg-column-reverse {
		flex-direction: column-reverse !important;
	}
	.justify-content-lg-start {
		justify-content: flex-start !important;
	}
	.justify-content-lg-end {
		justify-content: flex-end !important;
	}
	.justify-content-lg-center {
		justify-content: center !important;
	}
	.justify-content-lg-between {
		justify-content: space-between !important;
	}
	.justify-content-lg-around {
		justify-content: space-around !important;
	}
	.justify-content-lg-evenly {
		justify-content: space-evenly !important;
	}
	.align-items-lg-start {
		align-items: flex-start !important;
	}
	.align-items-lg-end {
		align-items: flex-end !important;
	}
	.align-items-lg-center {
		align-items: center !important;
	}
	.align-items-lg-baseline {
		align-items: baseline !important;
	}
	.align-items-lg-stretch {
		align-items: stretch !important;
	}
	.m-lg-0 {
		margin: 0 !important;
	}
	.m-lg-1 {
		margin: 1rem !important;
	}
	.m-lg-2 {
		margin: 2rem !important;
	}
	.m-lg-3 {
		margin: 3rem !important;
	}
	.m-lg-4 {
		margin: 4rem !important;
	}
	.m-lg-5 {
		margin: 5rem !important;
	}
	.m-lg-auto {
		margin: auto !important;
	}
	.mx-lg-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	.mx-lg-1 {
		margin-right: 1rem !important;
		margin-left: 1rem !important;
	}
	.mx-lg-2 {
		margin-right: 2rem !important;
		margin-left: 2rem !important;
	}
	.mx-lg-3 {
		margin-right: 3rem !important;
		margin-left: 3rem !important;
	}
	.mx-lg-4 {
		margin-right: 4rem !important;
		margin-left: 4rem !important;
	}
	.mx-lg-5 {
		margin-right: 5rem !important;
		margin-left: 5rem !important;
	}
	.mx-lg-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}
	.my-lg-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	.my-lg-1 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}
	.my-lg-2 {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important;
	}
	.my-lg-3 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}
	.my-lg-4 {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important;
	}
	.my-lg-5 {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important;
	}
	.my-lg-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}
	.mt-lg-0 {
		margin-top: 0 !important;
	}
	.mt-lg-1 {
		margin-top: 1rem !important;
	}
	.mt-lg-2 {
		margin-top: 2rem !important;
	}
	.mt-lg-3 {
		margin-top: 3rem !important;
	}
	.mt-lg-4 {
		margin-top: 4rem !important;
	}
	.mt-lg-5 {
		margin-top: 5rem !important;
	}
	.mt-lg-auto {
		margin-top: auto !important;
	}
	.me-lg-0 {
		margin-right: 0 !important;
	}
	.me-lg-1 {
		margin-right: 1rem !important;
	}
	.me-lg-2 {
		margin-right: 2rem !important;
	}
	.me-lg-3 {
		margin-right: 3rem !important;
	}
	.me-lg-4 {
		margin-right: 4rem !important;
	}
	.me-lg-5 {
		margin-right: 5rem !important;
	}
	.me-lg-auto {
		margin-right: auto !important;
	}
	.mb-lg-0 {
		margin-bottom: 0 !important;
	}
	.mb-lg-1 {
		margin-bottom: 1rem !important;
	}
	.mb-lg-2 {
		margin-bottom: 2rem !important;
	}
	.mb-lg-3 {
		margin-bottom: 3rem !important;
	}
	.mb-lg-4 {
		margin-bottom: 4rem !important;
	}
	.mb-lg-5 {
		margin-bottom: 5rem !important;
	}
	.mb-lg-auto {
		margin-bottom: auto !important;
	}
	.ms-lg-0 {
		margin-left: 0 !important;
	}
	.ms-lg-1 {
		margin-left: 1rem !important;
	}
	.ms-lg-2 {
		margin-left: 2rem !important;
	}
	.ms-lg-3 {
		margin-left: 3rem !important;
	}
	.ms-lg-4 {
		margin-left: 4rem !important;
	}
	.ms-lg-5 {
		margin-left: 5rem !important;
	}
	.ms-lg-auto {
		margin-left: auto !important;
	}
	.py-lg-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.py-lg-1 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}
	.py-lg-2 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
	.py-lg-3 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}
	.py-lg-4 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}
	.py-lg-5 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}
	.px-lg-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.px-lg-1 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}
	.px-lg-2 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
	.px-lg-3 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}
	.px-lg-4 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}
	.px-lg-5 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}
	.pt-lg-0 {
		padding-top: 0 !important;
	}
	.pt-lg-1 {
		padding-top: 1rem !important;
	}
	.pt-lg-2 {
		padding-top: 2rem !important;
	}
	.pt-lg-3 {
		padding-top: 3rem !important;
	}
	.pt-lg-4 {
		padding-top: 4rem !important;
	}
	.pt-lg-5 {
		padding-top: 5rem !important;
	}
	.pe-lg-0 {
		padding-right: 0 !important;
	}
	.pe-lg-1 {
		padding-right: 1rem !important;
	}
	.pe-lg-2 {
		padding-right: 2rem !important;
	}
	.pe-lg-3 {
		padding-right: 3rem !important;
	}
	.pe-lg-4 {
		padding-right: 4rem !important;
	}
	.pe-lg-5 {
		padding-right: 5rem !important;
	}
	.pb-lg-0 {
		padding-bottom: 0 !important;
	}
	.pb-lg-1 {
		padding-bottom: 1rem !important;
	}
	.pb-lg-2 {
		padding-bottom: 2rem !important;
	}
	.pb-lg-3 {
		padding-bottom: 3rem !important;
	}
	.pb-lg-4 {
		padding-bottom: 4rem !important;
	}
	.pb-lg-5 {
		padding-bottom: 5rem !important;
	}
	.ps-lg-0 {
		padding-left: 0 !important;
	}
	.ps-lg-1 {
		padding-left: 1rem !important;
	}
	.ps-lg-2 {
		padding-left: 2rem !important;
	}
	.ps-lg-3 {
		padding-left: 3rem !important;
	}
	.ps-lg-4 {
		padding-left: 4rem !important;
	}
	.ps-lg-5 {
		padding-left: 5rem !important;
	}
	.gap-lg-0 {
		gap: 0 !important;
	}
	.gap-lg-1 {
		gap: 1rem !important;
	}
	.gap-lg-2 {
		gap: 2rem !important;
	}
	.gap-lg-3 {
		gap: 3rem !important;
	}
	.gap-lg-4 {
		gap: 4rem !important;
	}
	.gap-lg-5 {
		gap: 5rem !important;
	}
	.row-gap-lg-0 {
		row-gap: 0 !important;
	}
	.row-gap-lg-1 {
		row-gap: 1rem !important;
	}
	.row-gap-lg-2 {
		row-gap: 2rem !important;
	}
	.row-gap-lg-3 {
		row-gap: 3rem !important;
	}
	.row-gap-lg-4 {
		row-gap: 4rem !important;
	}
	.row-gap-lg-5 {
		row-gap: 5rem !important;
	}
	.column-gap-lg-0 {
		column-gap: 0 !important;
	}
	.column-gap-lg-1 {
		column-gap: 1rem !important;
	}
	.column-gap-lg-2 {
		column-gap: 2rem !important;
	}
	.column-gap-lg-3 {
		column-gap: 3rem !important;
	}
	.column-gap-lg-4 {
		column-gap: 4rem !important;
	}
	.column-gap-lg-5 {
		column-gap: 5rem !important;
	}
	.text-lg-start {
		text-align: left !important;
	}
	.text-lg-end {
		text-align: right !important;
	}
	.text-lg-center {
		text-align: center !important;
	}
}

@media (min-width: 1200px) {
	.d-xl-inline {
		display: inline !important;
	}
	.d-xl-inline-block {
		display: inline-block !important;
	}
	.d-xl-block {
		display: block !important;
	}
	.d-xl-grid {
		display: grid !important;
	}
	.d-xl-inline-grid {
		display: inline-grid !important;
	}
	.d-xl-table {
		display: table !important;
	}
	.d-xl-table-row {
		display: table-row !important;
	}
	.d-xl-table-cell {
		display: table-cell !important;
	}
	.d-xl-flex {
		display: flex !important;
	}
	.d-xl-inline-flex {
		display: inline-flex !important;
	}
	.d-xl-none {
		display: none !important;
	}
	.flex-xl-row {
		flex-direction: row !important;
	}
	.flex-xl-column {
		flex-direction: column !important;
	}
	.flex-xl-row-reverse {
		flex-direction: row-reverse !important;
	}
	.flex-xl-column-reverse {
		flex-direction: column-reverse !important;
	}
	.justify-content-xl-start {
		justify-content: flex-start !important;
	}
	.justify-content-xl-end {
		justify-content: flex-end !important;
	}
	.justify-content-xl-center {
		justify-content: center !important;
	}
	.justify-content-xl-between {
		justify-content: space-between !important;
	}
	.justify-content-xl-around {
		justify-content: space-around !important;
	}
	.justify-content-xl-evenly {
		justify-content: space-evenly !important;
	}
	.align-items-xl-start {
		align-items: flex-start !important;
	}
	.align-items-xl-end {
		align-items: flex-end !important;
	}
	.align-items-xl-center {
		align-items: center !important;
	}
	.align-items-xl-baseline {
		align-items: baseline !important;
	}
	.align-items-xl-stretch {
		align-items: stretch !important;
	}
	.m-xl-0 {
		margin: 0 !important;
	}
	.m-xl-1 {
		margin: 1rem !important;
	}
	.m-xl-2 {
		margin: 2rem !important;
	}
	.m-xl-3 {
		margin: 3rem !important;
	}
	.m-xl-4 {
		margin: 4rem !important;
	}
	.m-xl-5 {
		margin: 5rem !important;
	}
	.m-xl-auto {
		margin: auto !important;
	}
	.mx-xl-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	.mx-xl-1 {
		margin-right: 1rem !important;
		margin-left: 1rem !important;
	}
	.mx-xl-2 {
		margin-right: 2rem !important;
		margin-left: 2rem !important;
	}
	.mx-xl-3 {
		margin-right: 3rem !important;
		margin-left: 3rem !important;
	}
	.mx-xl-4 {
		margin-right: 4rem !important;
		margin-left: 4rem !important;
	}
	.mx-xl-5 {
		margin-right: 5rem !important;
		margin-left: 5rem !important;
	}
	.mx-xl-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}
	.my-xl-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	.my-xl-1 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}
	.my-xl-2 {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important;
	}
	.my-xl-3 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}
	.my-xl-4 {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important;
	}
	.my-xl-5 {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important;
	}
	.my-xl-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}
	.mt-xl-0 {
		margin-top: 0 !important;
	}
	.mt-xl-1 {
		margin-top: 1rem !important;
	}
	.mt-xl-2 {
		margin-top: 2rem !important;
	}
	.mt-xl-3 {
		margin-top: 3rem !important;
	}
	.mt-xl-4 {
		margin-top: 4rem !important;
	}
	.mt-xl-5 {
		margin-top: 5rem !important;
	}
	.mt-xl-auto {
		margin-top: auto !important;
	}
	.me-xl-0 {
		margin-right: 0 !important;
	}
	.me-xl-1 {
		margin-right: 1rem !important;
	}
	.me-xl-2 {
		margin-right: 2rem !important;
	}
	.me-xl-3 {
		margin-right: 3rem !important;
	}
	.me-xl-4 {
		margin-right: 4rem !important;
	}
	.me-xl-5 {
		margin-right: 5rem !important;
	}
	.me-xl-auto {
		margin-right: auto !important;
	}
	.mb-xl-0 {
		margin-bottom: 0 !important;
	}
	.mb-xl-1 {
		margin-bottom: 1rem !important;
	}
	.mb-xl-2 {
		margin-bottom: 2rem !important;
	}
	.mb-xl-3 {
		margin-bottom: 3rem !important;
	}
	.mb-xl-4 {
		margin-bottom: 4rem !important;
	}
	.mb-xl-5 {
		margin-bottom: 5rem !important;
	}
	.mb-xl-auto {
		margin-bottom: auto !important;
	}
	.ms-xl-0 {
		margin-left: 0 !important;
	}
	.ms-xl-1 {
		margin-left: 1rem !important;
	}
	.ms-xl-2 {
		margin-left: 2rem !important;
	}
	.ms-xl-3 {
		margin-left: 3rem !important;
	}
	.ms-xl-4 {
		margin-left: 4rem !important;
	}
	.ms-xl-5 {
		margin-left: 5rem !important;
	}
	.ms-xl-auto {
		margin-left: auto !important;
	}
	.py-xl-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.py-xl-1 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}
	.py-xl-2 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
	.py-xl-3 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}
	.py-xl-4 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}
	.py-xl-5 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}
	.px-xl-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.px-xl-1 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}
	.px-xl-2 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
	.px-xl-3 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}
	.px-xl-4 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}
	.px-xl-5 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}
	.pt-xl-0 {
		padding-top: 0 !important;
	}
	.pt-xl-1 {
		padding-top: 1rem !important;
	}
	.pt-xl-2 {
		padding-top: 2rem !important;
	}
	.pt-xl-3 {
		padding-top: 3rem !important;
	}
	.pt-xl-4 {
		padding-top: 4rem !important;
	}
	.pt-xl-5 {
		padding-top: 5rem !important;
	}
	.pe-xl-0 {
		padding-right: 0 !important;
	}
	.pe-xl-1 {
		padding-right: 1rem !important;
	}
	.pe-xl-2 {
		padding-right: 2rem !important;
	}
	.pe-xl-3 {
		padding-right: 3rem !important;
	}
	.pe-xl-4 {
		padding-right: 4rem !important;
	}
	.pe-xl-5 {
		padding-right: 5rem !important;
	}
	.pb-xl-0 {
		padding-bottom: 0 !important;
	}
	.pb-xl-1 {
		padding-bottom: 1rem !important;
	}
	.pb-xl-2 {
		padding-bottom: 2rem !important;
	}
	.pb-xl-3 {
		padding-bottom: 3rem !important;
	}
	.pb-xl-4 {
		padding-bottom: 4rem !important;
	}
	.pb-xl-5 {
		padding-bottom: 5rem !important;
	}
	.ps-xl-0 {
		padding-left: 0 !important;
	}
	.ps-xl-1 {
		padding-left: 1rem !important;
	}
	.ps-xl-2 {
		padding-left: 2rem !important;
	}
	.ps-xl-3 {
		padding-left: 3rem !important;
	}
	.ps-xl-4 {
		padding-left: 4rem !important;
	}
	.ps-xl-5 {
		padding-left: 5rem !important;
	}
	.gap-xl-0 {
		gap: 0 !important;
	}
	.gap-xl-1 {
		gap: 1rem !important;
	}
	.gap-xl-2 {
		gap: 2rem !important;
	}
	.gap-xl-3 {
		gap: 3rem !important;
	}
	.gap-xl-4 {
		gap: 4rem !important;
	}
	.gap-xl-5 {
		gap: 5rem !important;
	}
	.row-gap-xl-0 {
		row-gap: 0 !important;
	}
	.row-gap-xl-1 {
		row-gap: 1rem !important;
	}
	.row-gap-xl-2 {
		row-gap: 2rem !important;
	}
	.row-gap-xl-3 {
		row-gap: 3rem !important;
	}
	.row-gap-xl-4 {
		row-gap: 4rem !important;
	}
	.row-gap-xl-5 {
		row-gap: 5rem !important;
	}
	.column-gap-xl-0 {
		column-gap: 0 !important;
	}
	.column-gap-xl-1 {
		column-gap: 1rem !important;
	}
	.column-gap-xl-2 {
		column-gap: 2rem !important;
	}
	.column-gap-xl-3 {
		column-gap: 3rem !important;
	}
	.column-gap-xl-4 {
		column-gap: 4rem !important;
	}
	.column-gap-xl-5 {
		column-gap: 5rem !important;
	}
	.text-xl-start {
		text-align: left !important;
	}
	.text-xl-end {
		text-align: right !important;
	}
	.text-xl-center {
		text-align: center !important;
	}
}

@media (min-width: 1400px) {
	.d-xxl-inline {
		display: inline !important;
	}
	.d-xxl-inline-block {
		display: inline-block !important;
	}
	.d-xxl-block {
		display: block !important;
	}
	.d-xxl-grid {
		display: grid !important;
	}
	.d-xxl-inline-grid {
		display: inline-grid !important;
	}
	.d-xxl-table {
		display: table !important;
	}
	.d-xxl-table-row {
		display: table-row !important;
	}
	.d-xxl-table-cell {
		display: table-cell !important;
	}
	.d-xxl-flex {
		display: flex !important;
	}
	.d-xxl-inline-flex {
		display: inline-flex !important;
	}
	.d-xxl-none {
		display: none !important;
	}
	.flex-xxl-row {
		flex-direction: row !important;
	}
	.flex-xxl-column {
		flex-direction: column !important;
	}
	.flex-xxl-row-reverse {
		flex-direction: row-reverse !important;
	}
	.flex-xxl-column-reverse {
		flex-direction: column-reverse !important;
	}
	.justify-content-xxl-start {
		justify-content: flex-start !important;
	}
	.justify-content-xxl-end {
		justify-content: flex-end !important;
	}
	.justify-content-xxl-center {
		justify-content: center !important;
	}
	.justify-content-xxl-between {
		justify-content: space-between !important;
	}
	.justify-content-xxl-around {
		justify-content: space-around !important;
	}
	.justify-content-xxl-evenly {
		justify-content: space-evenly !important;
	}
	.align-items-xxl-start {
		align-items: flex-start !important;
	}
	.align-items-xxl-end {
		align-items: flex-end !important;
	}
	.align-items-xxl-center {
		align-items: center !important;
	}
	.align-items-xxl-baseline {
		align-items: baseline !important;
	}
	.align-items-xxl-stretch {
		align-items: stretch !important;
	}
	.m-xxl-0 {
		margin: 0 !important;
	}
	.m-xxl-1 {
		margin: 1rem !important;
	}
	.m-xxl-2 {
		margin: 2rem !important;
	}
	.m-xxl-3 {
		margin: 3rem !important;
	}
	.m-xxl-4 {
		margin: 4rem !important;
	}
	.m-xxl-5 {
		margin: 5rem !important;
	}
	.m-xxl-auto {
		margin: auto !important;
	}
	.mx-xxl-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	.mx-xxl-1 {
		margin-right: 1rem !important;
		margin-left: 1rem !important;
	}
	.mx-xxl-2 {
		margin-right: 2rem !important;
		margin-left: 2rem !important;
	}
	.mx-xxl-3 {
		margin-right: 3rem !important;
		margin-left: 3rem !important;
	}
	.mx-xxl-4 {
		margin-right: 4rem !important;
		margin-left: 4rem !important;
	}
	.mx-xxl-5 {
		margin-right: 5rem !important;
		margin-left: 5rem !important;
	}
	.mx-xxl-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}
	.my-xxl-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	.my-xxl-1 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}
	.my-xxl-2 {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important;
	}
	.my-xxl-3 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}
	.my-xxl-4 {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important;
	}
	.my-xxl-5 {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important;
	}
	.my-xxl-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}
	.mt-xxl-0 {
		margin-top: 0 !important;
	}
	.mt-xxl-1 {
		margin-top: 1rem !important;
	}
	.mt-xxl-2 {
		margin-top: 2rem !important;
	}
	.mt-xxl-3 {
		margin-top: 3rem !important;
	}
	.mt-xxl-4 {
		margin-top: 4rem !important;
	}
	.mt-xxl-5 {
		margin-top: 5rem !important;
	}
	.mt-xxl-auto {
		margin-top: auto !important;
	}
	.me-xxl-0 {
		margin-right: 0 !important;
	}
	.me-xxl-1 {
		margin-right: 1rem !important;
	}
	.me-xxl-2 {
		margin-right: 2rem !important;
	}
	.me-xxl-3 {
		margin-right: 3rem !important;
	}
	.me-xxl-4 {
		margin-right: 4rem !important;
	}
	.me-xxl-5 {
		margin-right: 5rem !important;
	}
	.me-xxl-auto {
		margin-right: auto !important;
	}
	.mb-xxl-0 {
		margin-bottom: 0 !important;
	}
	.mb-xxl-1 {
		margin-bottom: 1rem !important;
	}
	.mb-xxl-2 {
		margin-bottom: 2rem !important;
	}
	.mb-xxl-3 {
		margin-bottom: 3rem !important;
	}
	.mb-xxl-4 {
		margin-bottom: 4rem !important;
	}
	.mb-xxl-5 {
		margin-bottom: 5rem !important;
	}
	.mb-xxl-auto {
		margin-bottom: auto !important;
	}
	.ms-xxl-0 {
		margin-left: 0 !important;
	}
	.ms-xxl-1 {
		margin-left: 1rem !important;
	}
	.ms-xxl-2 {
		margin-left: 2rem !important;
	}
	.ms-xxl-3 {
		margin-left: 3rem !important;
	}
	.ms-xxl-4 {
		margin-left: 4rem !important;
	}
	.ms-xxl-5 {
		margin-left: 5rem !important;
	}
	.ms-xxl-auto {
		margin-left: auto !important;
	}
	.py-xxl-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.py-xxl-1 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}
	.py-xxl-2 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
	.py-xxl-3 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}
	.py-xxl-4 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}
	.py-xxl-5 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}
	.px-xxl-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.px-xxl-1 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}
	.px-xxl-2 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
	.px-xxl-3 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}
	.px-xxl-4 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}
	.px-xxl-5 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}
	.pt-xxl-0 {
		padding-top: 0 !important;
	}
	.pt-xxl-1 {
		padding-top: 1rem !important;
	}
	.pt-xxl-2 {
		padding-top: 2rem !important;
	}
	.pt-xxl-3 {
		padding-top: 3rem !important;
	}
	.pt-xxl-4 {
		padding-top: 4rem !important;
	}
	.pt-xxl-5 {
		padding-top: 5rem !important;
	}
	.pe-xxl-0 {
		padding-right: 0 !important;
	}
	.pe-xxl-1 {
		padding-right: 1rem !important;
	}
	.pe-xxl-2 {
		padding-right: 2rem !important;
	}
	.pe-xxl-3 {
		padding-right: 3rem !important;
	}
	.pe-xxl-4 {
		padding-right: 4rem !important;
	}
	.pe-xxl-5 {
		padding-right: 5rem !important;
	}
	.pb-xxl-0 {
		padding-bottom: 0 !important;
	}
	.pb-xxl-1 {
		padding-bottom: 1rem !important;
	}
	.pb-xxl-2 {
		padding-bottom: 2rem !important;
	}
	.pb-xxl-3 {
		padding-bottom: 3rem !important;
	}
	.pb-xxl-4 {
		padding-bottom: 4rem !important;
	}
	.pb-xxl-5 {
		padding-bottom: 5rem !important;
	}
	.ps-xxl-0 {
		padding-left: 0 !important;
	}
	.ps-xxl-1 {
		padding-left: 1rem !important;
	}
	.ps-xxl-2 {
		padding-left: 2rem !important;
	}
	.ps-xxl-3 {
		padding-left: 3rem !important;
	}
	.ps-xxl-4 {
		padding-left: 4rem !important;
	}
	.ps-xxl-5 {
		padding-left: 5rem !important;
	}
	.gap-xxl-0 {
		gap: 0 !important;
	}
	.gap-xxl-1 {
		gap: 1rem !important;
	}
	.gap-xxl-2 {
		gap: 2rem !important;
	}
	.gap-xxl-3 {
		gap: 3rem !important;
	}
	.gap-xxl-4 {
		gap: 4rem !important;
	}
	.gap-xxl-5 {
		gap: 5rem !important;
	}
	.row-gap-xxl-0 {
		row-gap: 0 !important;
	}
	.row-gap-xxl-1 {
		row-gap: 1rem !important;
	}
	.row-gap-xxl-2 {
		row-gap: 2rem !important;
	}
	.row-gap-xxl-3 {
		row-gap: 3rem !important;
	}
	.row-gap-xxl-4 {
		row-gap: 4rem !important;
	}
	.row-gap-xxl-5 {
		row-gap: 5rem !important;
	}
	.column-gap-xxl-0 {
		column-gap: 0 !important;
	}
	.column-gap-xxl-1 {
		column-gap: 1rem !important;
	}
	.column-gap-xxl-2 {
		column-gap: 2rem !important;
	}
	.column-gap-xxl-3 {
		column-gap: 3rem !important;
	}
	.column-gap-xxl-4 {
		column-gap: 4rem !important;
	}
	.column-gap-xxl-5 {
		column-gap: 5rem !important;
	}
	.text-xxl-start {
		text-align: left !important;
	}
	.text-xxl-end {
		text-align: right !important;
	}
	.text-xxl-center {
		text-align: center !important;
	}
}

@media print {
	.d-print-inline {
		display: inline !important;
	}
	.d-print-inline-block {
		display: inline-block !important;
	}
	.d-print-block {
		display: block !important;
	}
	.d-print-grid {
		display: grid !important;
	}
	.d-print-inline-grid {
		display: inline-grid !important;
	}
	.d-print-table {
		display: table !important;
	}
	.d-print-table-row {
		display: table-row !important;
	}
	.d-print-table-cell {
		display: table-cell !important;
	}
	.d-print-flex {
		display: flex !important;
	}
	.d-print-inline-flex {
		display: inline-flex !important;
	}
	.d-print-none {
		display: none !important;
	}
}

h1, .h1 {
	font-weight: 900;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

@media (min-width: 1200px) {
	h1, .h1 {
		font-size: 66px;
	}
}

h2, .h2 {
	font-weight: 500;
	margin-bottom: 18px;
}

@media (min-width: 1200px) {
	h2, .h2 {
		font-size: 30px;
	}
}

#page-hero {
	background-color: #707070;
	padding-top: 126px;
}

@media (min-width: 1400px) {
	#page-hero {
		padding-top: 124px;
	}
}

.wp-element-button {
	background-color: #808080;
	padding-top: 0.625rem;
	padding-right: 2.125rem;
	padding-bottom: 0.625rem;
	padding-left: 2.125rem;
	border-radius: 0;
	line-height: 1.5;
	font-size: 28px;
	color: #fff;
	letter-spacing: 0.015em;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}

.wp-element-button:hover {
	opacity: 1;
	color: #fff;
	background-color: var(--ccl-secondary);
}

.wp-block-cover {
	min-height: 750px;
}

.center-overlap-button {
	text-align: center;
	width: 100%;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -31px);
}

@media screen and (min-width: 782px) {
	.d-mdlg-block {
		display: block !important;
	}
	.flex-basis-mdlg-50percent {
		flex-basis: 50% !important;
	}
	.px-mdlg-54px {
		padding-left: 54px !important;
		padding-right: 54px !important;
	}
	.flex-direction-mdlg-column-reverse {
		flex-direction: row-reverse;
	}
	.flexible-img {
		overflow: hidden;
	}
	.flexible-img img {
		height: 100%;
		max-width: none;
		width: auto;
		object-fit: cover;
	}
}

/*# sourceMappingURL=custom.css.map */