:root {
	--bs-blue: #0d6efd;
	--bs-indigo: #6610f2;
	--bs-purple: #6f42c1;
	--bs-pink: #d63384;
	--bs-red: #dc3545;
	--bs-orange: #fd7e14;
	--bs-yellow: #ffc107;
	--bs-green: #198754;
	--bs-teal: #20c997;
	--bs-cyan: #0dcaf0;
	--bs-black: #000;
	--bs-white: #fff;
	--bs-gray: #6c757d;
	--bs-gray-dark: #343a40;
	--bs-gray-100: #f8f9fa;
	--bs-gray-200: #e9ecef;
	--bs-gray-300: #dee2e6;
	--bs-gray-400: #ced4da;
	--bs-gray-500: #adb5bd;
	--bs-gray-600: #6c757d;
	--bs-gray-700: #495057;
	--bs-gray-800: #343a40;
	--bs-gray-900: #212529;
	--bs-primary: #0d6efd;
	--bs-secondary: #6c757d;
	--bs-success: #198754;
	--bs-info: #0dcaf0;
	--bs-warning: #ffc107;
	--bs-danger: #dc3545;
	--bs-light: #f8f9fa;
	--bs-dark: #212529;
	--bs-primary-rgb: 13, 110, 253;
	--bs-secondary-rgb: 108, 117, 125;
	--bs-success-rgb: 25, 135, 84;
	--bs-info-rgb: 13, 202, 240;
	--bs-warning-rgb: 255, 193, 7;
	--bs-danger-rgb: 220, 53, 69;
	--bs-light-rgb: 248, 249, 250;
	--bs-dark-rgb: 33, 37, 41;
	--bs-white-rgb: 255, 255, 255;
	--bs-black-rgb: 0, 0, 0;
	--bs-body-color-rgb: 33, 37, 41;
	--bs-body-bg-rgb: 255, 255, 255;
	--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--bs-gradient: linear-gradient(180deg, hsla(0, 0%, 100%, 0.15), hsla(0, 0%, 100%, 0));
	--bs-body-font-family: var(--bs-font-sans-serif);
	--bs-body-font-size: 1rem;
	--bs-body-font-weight: 400;
	--bs-body-line-height: 1.5;
	--bs-body-color: #212529;
	--bs-body-bg: #fff;
	--bs-border-width: 1px;
	--bs-border-style: solid;
	--bs-border-color: #dee2e6;
	--bs-border-color-translucent: rgba(0, 0, 0, 0.175);
	--bs-border-radius: 0.375rem;
	--bs-border-radius-sm: 0.25rem;
	--bs-border-radius-lg: 0.5rem;
	--bs-border-radius-xl: 1rem;
	--bs-border-radius-2xl: 2rem;
	--bs-border-radius-pill: 50rem;
	--bs-link-color: #0d6efd;
	--bs-link-hover-color: #0a58ca;
	--bs-code-color: #d63384;
	--bs-highlight-bg: #fff3cd
}

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

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

body {
	margin: 0;
	font-family: var(--bs-body-font-family);
	font-size: var(--bs-body-font-size);
	font-weight: var(--bs-body-font-weight);
	line-height: var(--bs-body-line-height);
	color: var(--bs-body-color);
	text-align: var(--bs-body-text-align);
	background-color: var(--bs-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: 1px solid;
	opacity: .25
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: .5rem;
	font-weight: 500;
	line-height: 1.2
}

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

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

h2 {
	font-size: calc(1.325rem + .9vw)
}

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

h3 {
	font-size: calc(1.3rem + .6vw)
}

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

h4 {
	font-size: calc(1.275rem + .3vw)
}

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

h5 {
	font-size: 1.25rem
}

h6 {
	font-size: 1rem
}

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

abbr[title] {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	cursor: help;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none
}

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

ol,
ul {
	padding-left: 2rem
}

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

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

dt {
	font-weight: 700
}

dd {
	margin-bottom: .5rem;
	margin-left: 0
}

blockquote {
	margin: 0 0 1rem
}

b,
strong {
	font-weight: bolder
}

small {
	font-size: .875em
}

mark {
	padding: .1875em;
	background-color: var(--bs-highlight-bg)
}

sub,
sup {
	position: relative;
	font-size: .75em;
	line-height: 0;
	vertical-align: baseline
}

sub {
	bottom: -.25em
}

sup {
	top: -.5em
}

a {
	color: var(--bs-link-color);
	text-decoration: underline
}

a:hover {
	color: var(--bs-link-hover-color)
}

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

code,
kbd,
pre,
samp {
	font-family: var(--bs-font-monospace);
	font-size: 1em
}

pre {
	display: block;
	margin-top: 0;
	margin-bottom: 1rem;
	overflow: auto;
	font-size: .875em
}

pre code {
	font-size: inherit;
	color: inherit;
	word-break: normal
}

code {
	font-size: .875em;
	color: var(--bs-code-color);
	word-wrap: break-word
}

a>code {
	color: inherit
}

kbd {
	padding: .1875rem .375rem;
	font-size: .875em;
	color: var(--bs-body-bg);
	background-color: var(--bs-body-color);
	border-radius: .25rem
}

kbd kbd {
	padding: 0;
	font-size: 1em
}

figure {
	margin: 0 0 1rem
}

img,
svg {
	vertical-align: middle
}

table {
	caption-side: bottom;
	border-collapse: collapse
}

caption {
	padding-top: .5rem;
	padding-bottom: .5rem;
	color: #6c757d;
	text-align: left
}

th {
	text-align: inherit;
	text-align: -webkit-match-parent
}

tbody,
td,
tfoot,
th,
thead,
tr {
	border: 0 solid;
	border-color: inherit
}

label {
	display: inline-block
}

button {
	border-radius: 0
}

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

button,
input,
optgroup,
select,
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
}

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

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

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

textarea {
	resize: vertical
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0
}

legend {
	float: left;
	width: 100%;
	padding: 0;
	margin-bottom: .5rem;
	font-size: calc(1.275rem + .3vw);
	line-height: inherit
}

@media(min-width: 1200px) {
	legend {
		font-size: 1.5rem
	}
}

legend+* {
	clear: left
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
	padding: 0
}

::-webkit-inner-spin-button {
	height: auto
}

[type=search] {
	outline-offset: -2px;
	-webkit-appearance: textfield
}

::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
	padding: 0
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button
}

::file-selector-button {
	font: inherit;
	-webkit-appearance: button
}

output {
	display: inline-block
}

iframe {
	border: 0
}

summary {
	display: list-item;
	cursor: pointer
}

progress {
	vertical-align: baseline
}

[hidden] {
	display: none !important
}

.img-fluid,
.img-thumbnail {
	max-width: 100%;
	height: auto
}

.img-thumbnail {
	padding: .25rem;
	background-color: #fff;
	border: 1px solid var(--bs-border-color);
	border-radius: .375rem
}

.figure {
	display: inline-block
}

.figure-img {
	margin-bottom: .5rem;
	line-height: 1
}

.figure-caption {
	font-size: .875em;
	color: #6c757d
}

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

@media(min-width: 576px) {

	.container,
	.container-sm {
		max-width: 540px
	}
}

@media(min-width: 768px) {

	.container,
	.container-md,
	.container-sm {
		max-width: 720px
	}
}

@media(min-width: 992px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm {
		max-width: 960px
	}
}

@media(min-width: 1200px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 1140px
	}
}

@media(min-width: 1400px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1340px
	}
}

@media(min-width: 1600px) {

	.container,
	.container-dxl,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1540px
	}
}

.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: calc(var(--bs-gutter-y)*-1);
	margin-right: calc(var(--bs-gutter-x)*-0.5);
	margin-left: calc(var(--bs-gutter-x)*-0.5)
}

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

.col {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 0%;
	flex: 1 0 0%
}

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

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

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

.row-cols-3>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 33.3333333333%
}

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

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

.row-cols-6>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 16.6666666667%
}

.row-cols-7>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 14.2857142857%
}

.row-cols-8>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 12.5%
}

.row-cols-9>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 11.1111111111%
}

.row-cols-10>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 10%
}

.row-cols-11>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 9.0909090909%
}

.row-cols-12>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 8.3333333333%
}

.row-cols-13>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 7.6923076923%
}

.row-cols-14>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 7.1428571429%
}

.row-cols-15>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 6.6666666667%
}

.row-cols-16>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 6.25%
}

.row-cols-17>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 5.8823529412%
}

.row-cols-18>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 5.5555555556%
}

.row-cols-19>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 5.2631578947%
}

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

.row-cols-21>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 4.7619047619%
}

.row-cols-22>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 4.5454545455%
}

.row-cols-23>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 4.347826087%
}

.row-cols-24>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 4.1666666667%
}

.col-auto {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto
}

.col-1 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 4.16666667%
}

.col-2 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 8.33333333%
}

.col-3 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 12.5%
}

.col-4 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 16.66666667%
}

.col-5 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 20.83333333%
}

.col-6 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 25%
}

.col-7 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 29.16666667%
}

.col-8 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 33.33333333%
}

.col-9 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 37.5%
}

.col-10 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 41.66666667%
}

.col-11 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 45.83333333%
}

.col-12 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 50%
}

.col-13 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 54.16666667%
}

.col-14 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 58.33333333%
}

.col-15 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 62.5%
}

.col-16 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 66.66666667%
}

.col-17 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 70.83333333%
}

.col-18 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 75%
}

.col-19 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 79.16666667%
}

.col-20 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 83.33333333%
}

.col-21 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 87.5%
}

.col-22 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 91.66666667%
}

.col-23 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 95.83333333%
}

.col-24 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 100%
}

.offset-1 {
	margin-left: 4.16666667%
}

.offset-2 {
	margin-left: 8.33333333%
}

.offset-3 {
	margin-left: 12.5%
}

.offset-4 {
	margin-left: 16.66666667%
}

.offset-5 {
	margin-left: 20.83333333%
}

.offset-6 {
	margin-left: 25%
}

.offset-7 {
	margin-left: 29.16666667%
}

.offset-8 {
	margin-left: 33.33333333%
}

.offset-9 {
	margin-left: 37.5%
}

.offset-10 {
	margin-left: 41.66666667%
}

.offset-11 {
	margin-left: 45.83333333%
}

.offset-12 {
	margin-left: 50%
}

.offset-13 {
	margin-left: 54.16666667%
}

.offset-14 {
	margin-left: 58.33333333%
}

.offset-15 {
	margin-left: 62.5%
}

.offset-16 {
	margin-left: 66.66666667%
}

.offset-17 {
	margin-left: 70.83333333%
}

.offset-18 {
	margin-left: 75%
}

.offset-19 {
	margin-left: 79.16666667%
}

.offset-20 {
	margin-left: 83.33333333%
}

.offset-21 {
	margin-left: 87.5%
}

.offset-22 {
	margin-left: 91.66666667%
}

.offset-23 {
	margin-left: 95.83333333%
}

.g-0,
.gx-0 {
	--bs-gutter-x: 0
}

.g-0,
.gy-0 {
	--bs-gutter-y: 0
}

.g-1,
.gx-1 {
	--bs-gutter-x: 0.25rem
}

.g-1,
.gy-1 {
	--bs-gutter-y: 0.25rem
}

.g-2,
.gx-2 {
	--bs-gutter-x: 0.5rem
}

.g-2,
.gy-2 {
	--bs-gutter-y: 0.5rem
}

.g-3,
.gx-3 {
	--bs-gutter-x: 1rem
}

.g-3,
.gy-3 {
	--bs-gutter-y: 1rem
}

.g-4,
.gx-4 {
	--bs-gutter-x: 1.5rem
}

.g-4,
.gy-4 {
	--bs-gutter-y: 1.5rem
}

.g-5,
.gx-5 {
	--bs-gutter-x: 3rem
}

.g-5,
.gy-5 {
	--bs-gutter-y: 3rem
}

@media(min-width: 576px) {
	.col-sm {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 0%;
		flex: 1 0 0%
	}

	.row-cols-sm-auto>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto
	}

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

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

	.row-cols-sm-3>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.3333333333%
	}

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

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

	.row-cols-sm-6>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.6666666667%
	}

	.row-cols-sm-7>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 14.2857142857%
	}

	.row-cols-sm-8>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 12.5%
	}

	.row-cols-sm-9>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 11.1111111111%
	}

	.row-cols-sm-10>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 10%
	}

	.row-cols-sm-11>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 9.0909090909%
	}

	.row-cols-sm-12>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.3333333333%
	}

	.row-cols-sm-13>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 7.6923076923%
	}

	.row-cols-sm-14>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 7.1428571429%
	}

	.row-cols-sm-15>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 6.6666666667%
	}

	.row-cols-sm-16>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 6.25%
	}

	.row-cols-sm-17>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.8823529412%
	}

	.row-cols-sm-18>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.5555555556%
	}

	.row-cols-sm-19>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.2631578947%
	}

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

	.row-cols-sm-21>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.7619047619%
	}

	.row-cols-sm-22>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.5454545455%
	}

	.row-cols-sm-23>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.347826087%
	}

	.row-cols-sm-24>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.1666666667%
	}

	.col-sm-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto
	}

	.col-sm-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.16666667%
	}

	.col-sm-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.33333333%
	}

	.col-sm-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 12.5%
	}

	.col-sm-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.66666667%
	}

	.col-sm-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 20.83333333%
	}

	.col-sm-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%
	}

	.col-sm-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 29.16666667%
	}

	.col-sm-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.33333333%
	}

	.col-sm-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 37.5%
	}

	.col-sm-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 41.66666667%
	}

	.col-sm-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 45.83333333%
	}

	.col-sm-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%
	}

	.col-sm-13 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 54.16666667%
	}

	.col-sm-14 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 58.33333333%
	}

	.col-sm-15 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 62.5%
	}

	.col-sm-16 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 66.66666667%
	}

	.col-sm-17 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 70.83333333%
	}

	.col-sm-18 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 75%
	}

	.col-sm-19 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 79.16666667%
	}

	.col-sm-20 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 83.33333333%
	}

	.col-sm-21 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 87.5%
	}

	.col-sm-22 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 91.66666667%
	}

	.col-sm-23 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 95.83333333%
	}

	.col-sm-24 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%
	}

	.offset-sm-0 {
		margin-left: 0
	}

	.offset-sm-1 {
		margin-left: 4.16666667%
	}

	.offset-sm-2 {
		margin-left: 8.33333333%
	}

	.offset-sm-3 {
		margin-left: 12.5%
	}

	.offset-sm-4 {
		margin-left: 16.66666667%
	}

	.offset-sm-5 {
		margin-left: 20.83333333%
	}

	.offset-sm-6 {
		margin-left: 25%
	}

	.offset-sm-7 {
		margin-left: 29.16666667%
	}

	.offset-sm-8 {
		margin-left: 33.33333333%
	}

	.offset-sm-9 {
		margin-left: 37.5%
	}

	.offset-sm-10 {
		margin-left: 41.66666667%
	}

	.offset-sm-11 {
		margin-left: 45.83333333%
	}

	.offset-sm-12 {
		margin-left: 50%
	}

	.offset-sm-13 {
		margin-left: 54.16666667%
	}

	.offset-sm-14 {
		margin-left: 58.33333333%
	}

	.offset-sm-15 {
		margin-left: 62.5%
	}

	.offset-sm-16 {
		margin-left: 66.66666667%
	}

	.offset-sm-17 {
		margin-left: 70.83333333%
	}

	.offset-sm-18 {
		margin-left: 75%
	}

	.offset-sm-19 {
		margin-left: 79.16666667%
	}

	.offset-sm-20 {
		margin-left: 83.33333333%
	}

	.offset-sm-21 {
		margin-left: 87.5%
	}

	.offset-sm-22 {
		margin-left: 91.66666667%
	}

	.offset-sm-23 {
		margin-left: 95.83333333%
	}

	.g-sm-0,
	.gx-sm-0 {
		--bs-gutter-x: 0
	}

	.g-sm-0,
	.gy-sm-0 {
		--bs-gutter-y: 0
	}

	.g-sm-1,
	.gx-sm-1 {
		--bs-gutter-x: 0.25rem
	}

	.g-sm-1,
	.gy-sm-1 {
		--bs-gutter-y: 0.25rem
	}

	.g-sm-2,
	.gx-sm-2 {
		--bs-gutter-x: 0.5rem
	}

	.g-sm-2,
	.gy-sm-2 {
		--bs-gutter-y: 0.5rem
	}

	.g-sm-3,
	.gx-sm-3 {
		--bs-gutter-x: 1rem
	}

	.g-sm-3,
	.gy-sm-3 {
		--bs-gutter-y: 1rem
	}

	.g-sm-4,
	.gx-sm-4 {
		--bs-gutter-x: 1.5rem
	}

	.g-sm-4,
	.gy-sm-4 {
		--bs-gutter-y: 1.5rem
	}

	.g-sm-5,
	.gx-sm-5 {
		--bs-gutter-x: 3rem
	}

	.g-sm-5,
	.gy-sm-5 {
		--bs-gutter-y: 3rem
	}
}

@media(min-width: 768px) {
	.col-md {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 0%;
		flex: 1 0 0%
	}

	.row-cols-md-auto>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto
	}

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

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

	.row-cols-md-3>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.3333333333%
	}

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

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

	.row-cols-md-6>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.6666666667%
	}

	.row-cols-md-7>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 14.2857142857%
	}

	.row-cols-md-8>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 12.5%
	}

	.row-cols-md-9>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 11.1111111111%
	}

	.row-cols-md-10>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 10%
	}

	.row-cols-md-11>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 9.0909090909%
	}

	.row-cols-md-12>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.3333333333%
	}

	.row-cols-md-13>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 7.6923076923%
	}

	.row-cols-md-14>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 7.1428571429%
	}

	.row-cols-md-15>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 6.6666666667%
	}

	.row-cols-md-16>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 6.25%
	}

	.row-cols-md-17>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.8823529412%
	}

	.row-cols-md-18>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.5555555556%
	}

	.row-cols-md-19>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.2631578947%
	}

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

	.row-cols-md-21>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.7619047619%
	}

	.row-cols-md-22>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.5454545455%
	}

	.row-cols-md-23>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.347826087%
	}

	.row-cols-md-24>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.1666666667%
	}

	.col-md-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto
	}

	.col-md-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.16666667%
	}

	.col-md-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.33333333%
	}

	.col-md-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 12.5%
	}

	.col-md-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.66666667%
	}

	.col-md-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 20.83333333%
	}

	.col-md-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%
	}

	.col-md-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 29.16666667%
	}

	.col-md-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.33333333%
	}

	.col-md-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 37.5%
	}

	.col-md-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 41.66666667%
	}

	.col-md-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 45.83333333%
	}

	.col-md-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%
	}

	.col-md-13 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 54.16666667%
	}

	.col-md-14 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 58.33333333%
	}

	.col-md-15 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 62.5%
	}

	.col-md-16 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 66.66666667%
	}

	.col-md-17 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 70.83333333%
	}

	.col-md-18 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 75%
	}

	.col-md-19 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 79.16666667%
	}

	.col-md-20 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 83.33333333%
	}

	.col-md-21 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 87.5%
	}

	.col-md-22 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 91.66666667%
	}

	.col-md-23 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 95.83333333%
	}

	.col-md-24 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%
	}

	.offset-md-0 {
		margin-left: 0
	}

	.offset-md-1 {
		margin-left: 4.16666667%
	}

	.offset-md-2 {
		margin-left: 8.33333333%
	}

	.offset-md-3 {
		margin-left: 12.5%
	}

	.offset-md-4 {
		margin-left: 16.66666667%
	}

	.offset-md-5 {
		margin-left: 20.83333333%
	}

	.offset-md-6 {
		margin-left: 25%
	}

	.offset-md-7 {
		margin-left: 29.16666667%
	}

	.offset-md-8 {
		margin-left: 33.33333333%
	}

	.offset-md-9 {
		margin-left: 37.5%
	}

	.offset-md-10 {
		margin-left: 41.66666667%
	}

	.offset-md-11 {
		margin-left: 45.83333333%
	}

	.offset-md-12 {
		margin-left: 50%
	}

	.offset-md-13 {
		margin-left: 54.16666667%
	}

	.offset-md-14 {
		margin-left: 58.33333333%
	}

	.offset-md-15 {
		margin-left: 62.5%
	}

	.offset-md-16 {
		margin-left: 66.66666667%
	}

	.offset-md-17 {
		margin-left: 70.83333333%
	}

	.offset-md-18 {
		margin-left: 75%
	}

	.offset-md-19 {
		margin-left: 79.16666667%
	}

	.offset-md-20 {
		margin-left: 83.33333333%
	}

	.offset-md-21 {
		margin-left: 87.5%
	}

	.offset-md-22 {
		margin-left: 91.66666667%
	}

	.offset-md-23 {
		margin-left: 95.83333333%
	}

	.g-md-0,
	.gx-md-0 {
		--bs-gutter-x: 0
	}

	.g-md-0,
	.gy-md-0 {
		--bs-gutter-y: 0
	}

	.g-md-1,
	.gx-md-1 {
		--bs-gutter-x: 0.25rem
	}

	.g-md-1,
	.gy-md-1 {
		--bs-gutter-y: 0.25rem
	}

	.g-md-2,
	.gx-md-2 {
		--bs-gutter-x: 0.5rem
	}

	.g-md-2,
	.gy-md-2 {
		--bs-gutter-y: 0.5rem
	}

	.g-md-3,
	.gx-md-3 {
		--bs-gutter-x: 1rem
	}

	.g-md-3,
	.gy-md-3 {
		--bs-gutter-y: 1rem
	}

	.g-md-4,
	.gx-md-4 {
		--bs-gutter-x: 1.5rem
	}

	.g-md-4,
	.gy-md-4 {
		--bs-gutter-y: 1.5rem
	}

	.g-md-5,
	.gx-md-5 {
		--bs-gutter-x: 3rem
	}

	.g-md-5,
	.gy-md-5 {
		--bs-gutter-y: 3rem
	}
}

@media(min-width: 992px) {
	.col-lg {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 0%;
		flex: 1 0 0%
	}

	.row-cols-lg-auto>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto
	}

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

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

	.row-cols-lg-3>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.3333333333%
	}

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

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

	.row-cols-lg-6>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.6666666667%
	}

	.row-cols-lg-7>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 14.2857142857%
	}

	.row-cols-lg-8>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 12.5%
	}

	.row-cols-lg-9>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 11.1111111111%
	}

	.row-cols-lg-10>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 10%
	}

	.row-cols-lg-11>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 9.0909090909%
	}

	.row-cols-lg-12>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.3333333333%
	}

	.row-cols-lg-13>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 7.6923076923%
	}

	.row-cols-lg-14>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 7.1428571429%
	}

	.row-cols-lg-15>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 6.6666666667%
	}

	.row-cols-lg-16>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 6.25%
	}

	.row-cols-lg-17>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.8823529412%
	}

	.row-cols-lg-18>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.5555555556%
	}

	.row-cols-lg-19>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.2631578947%
	}

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

	.row-cols-lg-21>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.7619047619%
	}

	.row-cols-lg-22>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.5454545455%
	}

	.row-cols-lg-23>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.347826087%
	}

	.row-cols-lg-24>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.1666666667%
	}

	.col-lg-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto
	}

	.col-lg-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.16666667%
	}

	.col-lg-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.33333333%
	}

	.col-lg-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 12.5%
	}

	.col-lg-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.66666667%
	}

	.col-lg-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 20.83333333%
	}

	.col-lg-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%
	}

	.col-lg-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 29.16666667%
	}

	.col-lg-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.33333333%
	}

	.col-lg-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 37.5%
	}

	.col-lg-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 41.66666667%
	}

	.col-lg-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 45.83333333%
	}

	.col-lg-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%
	}

	.col-lg-13 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 54.16666667%
	}

	.col-lg-14 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 58.33333333%
	}

	.col-lg-15 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 62.5%
	}

	.col-lg-16 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 66.66666667%
	}

	.col-lg-17 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 70.83333333%
	}

	.col-lg-18 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 75%
	}

	.col-lg-19 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 79.16666667%
	}

	.col-lg-20 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 83.33333333%
	}

	.col-lg-21 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 87.5%
	}

	.col-lg-22 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 91.66666667%
	}

	.col-lg-23 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 95.83333333%
	}

	.col-lg-24 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%
	}

	.offset-lg-0 {
		margin-left: 0
	}

	.offset-lg-1 {
		margin-left: 4.16666667%
	}

	.offset-lg-2 {
		margin-left: 8.33333333%
	}

	.offset-lg-3 {
		margin-left: 12.5%
	}

	.offset-lg-4 {
		margin-left: 16.66666667%
	}

	.offset-lg-5 {
		margin-left: 20.83333333%
	}

	.offset-lg-6 {
		margin-left: 25%
	}

	.offset-lg-7 {
		margin-left: 29.16666667%
	}

	.offset-lg-8 {
		margin-left: 33.33333333%
	}

	.offset-lg-9 {
		margin-left: 37.5%
	}

	.offset-lg-10 {
		margin-left: 41.66666667%
	}

	.offset-lg-11 {
		margin-left: 45.83333333%
	}

	.offset-lg-12 {
		margin-left: 50%
	}

	.offset-lg-13 {
		margin-left: 54.16666667%
	}

	.offset-lg-14 {
		margin-left: 58.33333333%
	}

	.offset-lg-15 {
		margin-left: 62.5%
	}

	.offset-lg-16 {
		margin-left: 66.66666667%
	}

	.offset-lg-17 {
		margin-left: 70.83333333%
	}

	.offset-lg-18 {
		margin-left: 75%
	}

	.offset-lg-19 {
		margin-left: 79.16666667%
	}

	.offset-lg-20 {
		margin-left: 83.33333333%
	}

	.offset-lg-21 {
		margin-left: 87.5%
	}

	.offset-lg-22 {
		margin-left: 91.66666667%
	}

	.offset-lg-23 {
		margin-left: 95.83333333%
	}

	.g-lg-0,
	.gx-lg-0 {
		--bs-gutter-x: 0
	}

	.g-lg-0,
	.gy-lg-0 {
		--bs-gutter-y: 0
	}

	.g-lg-1,
	.gx-lg-1 {
		--bs-gutter-x: 0.25rem
	}

	.g-lg-1,
	.gy-lg-1 {
		--bs-gutter-y: 0.25rem
	}

	.g-lg-2,
	.gx-lg-2 {
		--bs-gutter-x: 0.5rem
	}

	.g-lg-2,
	.gy-lg-2 {
		--bs-gutter-y: 0.5rem
	}

	.g-lg-3,
	.gx-lg-3 {
		--bs-gutter-x: 1rem
	}

	.g-lg-3,
	.gy-lg-3 {
		--bs-gutter-y: 1rem
	}

	.g-lg-4,
	.gx-lg-4 {
		--bs-gutter-x: 1.5rem
	}

	.g-lg-4,
	.gy-lg-4 {
		--bs-gutter-y: 1.5rem
	}

	.g-lg-5,
	.gx-lg-5 {
		--bs-gutter-x: 3rem
	}

	.g-lg-5,
	.gy-lg-5 {
		--bs-gutter-y: 3rem
	}
}

@media(min-width: 1200px) {
	.col-xl {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 0%;
		flex: 1 0 0%
	}

	.row-cols-xl-auto>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto
	}

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

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

	.row-cols-xl-3>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.3333333333%
	}

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

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

	.row-cols-xl-6>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.6666666667%
	}

	.row-cols-xl-7>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 14.2857142857%
	}

	.row-cols-xl-8>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 12.5%
	}

	.row-cols-xl-9>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 11.1111111111%
	}

	.row-cols-xl-10>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 10%
	}

	.row-cols-xl-11>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 9.0909090909%
	}

	.row-cols-xl-12>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.3333333333%
	}

	.row-cols-xl-13>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 7.6923076923%
	}

	.row-cols-xl-14>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 7.1428571429%
	}

	.row-cols-xl-15>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 6.6666666667%
	}

	.row-cols-xl-16>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 6.25%
	}

	.row-cols-xl-17>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.8823529412%
	}

	.row-cols-xl-18>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.5555555556%
	}

	.row-cols-xl-19>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.2631578947%
	}

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

	.row-cols-xl-21>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.7619047619%
	}

	.row-cols-xl-22>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.5454545455%
	}

	.row-cols-xl-23>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.347826087%
	}

	.row-cols-xl-24>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.1666666667%
	}

	.col-xl-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto
	}

	.col-xl-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.16666667%
	}

	.col-xl-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.33333333%
	}

	.col-xl-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 12.5%
	}

	.col-xl-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.66666667%
	}

	.col-xl-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 20.83333333%
	}

	.col-xl-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%
	}

	.col-xl-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 29.16666667%
	}

	.col-xl-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.33333333%
	}

	.col-xl-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 37.5%
	}

	.col-xl-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 41.66666667%
	}

	.col-xl-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 45.83333333%
	}

	.col-xl-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%
	}

	.col-xl-13 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 54.16666667%
	}

	.col-xl-14 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 58.33333333%
	}

	.col-xl-15 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 62.5%
	}

	.col-xl-16 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 66.66666667%
	}

	.col-xl-17 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 70.83333333%
	}

	.col-xl-18 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 75%
	}

	.col-xl-19 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 79.16666667%
	}

	.col-xl-20 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 83.33333333%
	}

	.col-xl-21 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 87.5%
	}

	.col-xl-22 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 91.66666667%
	}

	.col-xl-23 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 95.83333333%
	}

	.col-xl-24 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%
	}

	.offset-xl-0 {
		margin-left: 0
	}

	.offset-xl-1 {
		margin-left: 4.16666667%
	}

	.offset-xl-2 {
		margin-left: 8.33333333%
	}

	.offset-xl-3 {
		margin-left: 12.5%
	}

	.offset-xl-4 {
		margin-left: 16.66666667%
	}

	.offset-xl-5 {
		margin-left: 20.83333333%
	}

	.offset-xl-6 {
		margin-left: 25%
	}

	.offset-xl-7 {
		margin-left: 29.16666667%
	}

	.offset-xl-8 {
		margin-left: 33.33333333%
	}

	.offset-xl-9 {
		margin-left: 37.5%
	}

	.offset-xl-10 {
		margin-left: 41.66666667%
	}

	.offset-xl-11 {
		margin-left: 45.83333333%
	}

	.offset-xl-12 {
		margin-left: 50%
	}

	.offset-xl-13 {
		margin-left: 54.16666667%
	}

	.offset-xl-14 {
		margin-left: 58.33333333%
	}

	.offset-xl-15 {
		margin-left: 62.5%
	}

	.offset-xl-16 {
		margin-left: 66.66666667%
	}

	.offset-xl-17 {
		margin-left: 70.83333333%
	}

	.offset-xl-18 {
		margin-left: 75%
	}

	.offset-xl-19 {
		margin-left: 79.16666667%
	}

	.offset-xl-20 {
		margin-left: 83.33333333%
	}

	.offset-xl-21 {
		margin-left: 87.5%
	}

	.offset-xl-22 {
		margin-left: 91.66666667%
	}

	.offset-xl-23 {
		margin-left: 95.83333333%
	}

	.g-xl-0,
	.gx-xl-0 {
		--bs-gutter-x: 0
	}

	.g-xl-0,
	.gy-xl-0 {
		--bs-gutter-y: 0
	}

	.g-xl-1,
	.gx-xl-1 {
		--bs-gutter-x: 0.25rem
	}

	.g-xl-1,
	.gy-xl-1 {
		--bs-gutter-y: 0.25rem
	}

	.g-xl-2,
	.gx-xl-2 {
		--bs-gutter-x: 0.5rem
	}

	.g-xl-2,
	.gy-xl-2 {
		--bs-gutter-y: 0.5rem
	}

	.g-xl-3,
	.gx-xl-3 {
		--bs-gutter-x: 1rem
	}

	.g-xl-3,
	.gy-xl-3 {
		--bs-gutter-y: 1rem
	}

	.g-xl-4,
	.gx-xl-4 {
		--bs-gutter-x: 1.5rem
	}

	.g-xl-4,
	.gy-xl-4 {
		--bs-gutter-y: 1.5rem
	}

	.g-xl-5,
	.gx-xl-5 {
		--bs-gutter-x: 3rem
	}

	.g-xl-5,
	.gy-xl-5 {
		--bs-gutter-y: 3rem
	}
}

@media(min-width: 1400px) {
	.col-xxl {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 0%;
		flex: 1 0 0%
	}

	.row-cols-xxl-auto>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto
	}

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

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

	.row-cols-xxl-3>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.3333333333%
	}

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

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

	.row-cols-xxl-6>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.6666666667%
	}

	.row-cols-xxl-7>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 14.2857142857%
	}

	.row-cols-xxl-8>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 12.5%
	}

	.row-cols-xxl-9>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 11.1111111111%
	}

	.row-cols-xxl-10>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 10%
	}

	.row-cols-xxl-11>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 9.0909090909%
	}

	.row-cols-xxl-12>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.3333333333%
	}

	.row-cols-xxl-13>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 7.6923076923%
	}

	.row-cols-xxl-14>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 7.1428571429%
	}

	.row-cols-xxl-15>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 6.6666666667%
	}

	.row-cols-xxl-16>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 6.25%
	}

	.row-cols-xxl-17>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.8823529412%
	}

	.row-cols-xxl-18>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.5555555556%
	}

	.row-cols-xxl-19>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.2631578947%
	}

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

	.row-cols-xxl-21>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.7619047619%
	}

	.row-cols-xxl-22>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.5454545455%
	}

	.row-cols-xxl-23>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.347826087%
	}

	.row-cols-xxl-24>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.1666666667%
	}

	.col-xxl-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto
	}

	.col-xxl-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.16666667%
	}

	.col-xxl-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.33333333%
	}

	.col-xxl-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 12.5%
	}

	.col-xxl-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.66666667%
	}

	.col-xxl-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 20.83333333%
	}

	.col-xxl-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%
	}

	.col-xxl-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 29.16666667%
	}

	.col-xxl-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.33333333%
	}

	.col-xxl-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 37.5%
	}

	.col-xxl-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 41.66666667%
	}

	.col-xxl-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 45.83333333%
	}

	.col-xxl-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%
	}

	.col-xxl-13 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 54.16666667%
	}

	.col-xxl-14 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 58.33333333%
	}

	.col-xxl-15 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 62.5%
	}

	.col-xxl-16 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 66.66666667%
	}

	.col-xxl-17 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 70.83333333%
	}

	.col-xxl-18 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 75%
	}

	.col-xxl-19 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 79.16666667%
	}

	.col-xxl-20 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 83.33333333%
	}

	.col-xxl-21 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 87.5%
	}

	.col-xxl-22 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 91.66666667%
	}

	.col-xxl-23 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 95.83333333%
	}

	.col-xxl-24 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%
	}

	.offset-xxl-0 {
		margin-left: 0
	}

	.offset-xxl-1 {
		margin-left: 4.16666667%
	}

	.offset-xxl-2 {
		margin-left: 8.33333333%
	}

	.offset-xxl-3 {
		margin-left: 12.5%
	}

	.offset-xxl-4 {
		margin-left: 16.66666667%
	}

	.offset-xxl-5 {
		margin-left: 20.83333333%
	}

	.offset-xxl-6 {
		margin-left: 25%
	}

	.offset-xxl-7 {
		margin-left: 29.16666667%
	}

	.offset-xxl-8 {
		margin-left: 33.33333333%
	}

	.offset-xxl-9 {
		margin-left: 37.5%
	}

	.offset-xxl-10 {
		margin-left: 41.66666667%
	}

	.offset-xxl-11 {
		margin-left: 45.83333333%
	}

	.offset-xxl-12 {
		margin-left: 50%
	}

	.offset-xxl-13 {
		margin-left: 54.16666667%
	}

	.offset-xxl-14 {
		margin-left: 58.33333333%
	}

	.offset-xxl-15 {
		margin-left: 62.5%
	}

	.offset-xxl-16 {
		margin-left: 66.66666667%
	}

	.offset-xxl-17 {
		margin-left: 70.83333333%
	}

	.offset-xxl-18 {
		margin-left: 75%
	}

	.offset-xxl-19 {
		margin-left: 79.16666667%
	}

	.offset-xxl-20 {
		margin-left: 83.33333333%
	}

	.offset-xxl-21 {
		margin-left: 87.5%
	}

	.offset-xxl-22 {
		margin-left: 91.66666667%
	}

	.offset-xxl-23 {
		margin-left: 95.83333333%
	}

	.g-xxl-0,
	.gx-xxl-0 {
		--bs-gutter-x: 0
	}

	.g-xxl-0,
	.gy-xxl-0 {
		--bs-gutter-y: 0
	}

	.g-xxl-1,
	.gx-xxl-1 {
		--bs-gutter-x: 0.25rem
	}

	.g-xxl-1,
	.gy-xxl-1 {
		--bs-gutter-y: 0.25rem
	}

	.g-xxl-2,
	.gx-xxl-2 {
		--bs-gutter-x: 0.5rem
	}

	.g-xxl-2,
	.gy-xxl-2 {
		--bs-gutter-y: 0.5rem
	}

	.g-xxl-3,
	.gx-xxl-3 {
		--bs-gutter-x: 1rem
	}

	.g-xxl-3,
	.gy-xxl-3 {
		--bs-gutter-y: 1rem
	}

	.g-xxl-4,
	.gx-xxl-4 {
		--bs-gutter-x: 1.5rem
	}

	.g-xxl-4,
	.gy-xxl-4 {
		--bs-gutter-y: 1.5rem
	}

	.g-xxl-5,
	.gx-xxl-5 {
		--bs-gutter-x: 3rem
	}

	.g-xxl-5,
	.gy-xxl-5 {
		--bs-gutter-y: 3rem
	}
}

@media(min-width: 1600px) {
	.col-dxl {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 0%;
		flex: 1 0 0%
	}

	.row-cols-dxl-auto>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto
	}

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

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

	.row-cols-dxl-3>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.3333333333%
	}

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

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

	.row-cols-dxl-6>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.6666666667%
	}

	.row-cols-dxl-7>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 14.2857142857%
	}

	.row-cols-dxl-8>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 12.5%
	}

	.row-cols-dxl-9>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 11.1111111111%
	}

	.row-cols-dxl-10>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 10%
	}

	.row-cols-dxl-11>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 9.0909090909%
	}

	.row-cols-dxl-12>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.3333333333%
	}

	.row-cols-dxl-13>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 7.6923076923%
	}

	.row-cols-dxl-14>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 7.1428571429%
	}

	.row-cols-dxl-15>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 6.6666666667%
	}

	.row-cols-dxl-16>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 6.25%
	}

	.row-cols-dxl-17>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.8823529412%
	}

	.row-cols-dxl-18>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.5555555556%
	}

	.row-cols-dxl-19>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 5.2631578947%
	}

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

	.row-cols-dxl-21>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.7619047619%
	}

	.row-cols-dxl-22>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.5454545455%
	}

	.row-cols-dxl-23>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.347826087%
	}

	.row-cols-dxl-24>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.1666666667%
	}

	.col-dxl-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto
	}

	.col-dxl-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 4.16666667%
	}

	.col-dxl-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.33333333%
	}

	.col-dxl-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 12.5%
	}

	.col-dxl-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.66666667%
	}

	.col-dxl-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 20.83333333%
	}

	.col-dxl-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%
	}

	.col-dxl-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 29.16666667%
	}

	.col-dxl-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.33333333%
	}

	.col-dxl-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 37.5%
	}

	.col-dxl-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 41.66666667%
	}

	.col-dxl-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 45.83333333%
	}

	.col-dxl-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%
	}

	.col-dxl-13 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 54.16666667%
	}

	.col-dxl-14 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 58.33333333%
	}

	.col-dxl-15 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 62.5%
	}

	.col-dxl-16 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 66.66666667%
	}

	.col-dxl-17 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 70.83333333%
	}

	.col-dxl-18 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 75%
	}

	.col-dxl-19 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 79.16666667%
	}

	.col-dxl-20 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 83.33333333%
	}

	.col-dxl-21 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 87.5%
	}

	.col-dxl-22 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 91.66666667%
	}

	.col-dxl-23 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 95.83333333%
	}

	.col-dxl-24 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%
	}

	.offset-dxl-0 {
		margin-left: 0
	}

	.offset-dxl-1 {
		margin-left: 4.16666667%
	}

	.offset-dxl-2 {
		margin-left: 8.33333333%
	}

	.offset-dxl-3 {
		margin-left: 12.5%
	}

	.offset-dxl-4 {
		margin-left: 16.66666667%
	}

	.offset-dxl-5 {
		margin-left: 20.83333333%
	}

	.offset-dxl-6 {
		margin-left: 25%
	}

	.offset-dxl-7 {
		margin-left: 29.16666667%
	}

	.offset-dxl-8 {
		margin-left: 33.33333333%
	}

	.offset-dxl-9 {
		margin-left: 37.5%
	}

	.offset-dxl-10 {
		margin-left: 41.66666667%
	}

	.offset-dxl-11 {
		margin-left: 45.83333333%
	}

	.offset-dxl-12 {
		margin-left: 50%
	}

	.offset-dxl-13 {
		margin-left: 54.16666667%
	}

	.offset-dxl-14 {
		margin-left: 58.33333333%
	}

	.offset-dxl-15 {
		margin-left: 62.5%
	}

	.offset-dxl-16 {
		margin-left: 66.66666667%
	}

	.offset-dxl-17 {
		margin-left: 70.83333333%
	}

	.offset-dxl-18 {
		margin-left: 75%
	}

	.offset-dxl-19 {
		margin-left: 79.16666667%
	}

	.offset-dxl-20 {
		margin-left: 83.33333333%
	}

	.offset-dxl-21 {
		margin-left: 87.5%
	}

	.offset-dxl-22 {
		margin-left: 91.66666667%
	}

	.offset-dxl-23 {
		margin-left: 95.83333333%
	}

	.g-dxl-0,
	.gx-dxl-0 {
		--bs-gutter-x: 0
	}

	.g-dxl-0,
	.gy-dxl-0 {
		--bs-gutter-y: 0
	}

	.g-dxl-1,
	.gx-dxl-1 {
		--bs-gutter-x: 0.25rem
	}

	.g-dxl-1,
	.gy-dxl-1 {
		--bs-gutter-y: 0.25rem
	}

	.g-dxl-2,
	.gx-dxl-2 {
		--bs-gutter-x: 0.5rem
	}

	.g-dxl-2,
	.gy-dxl-2 {
		--bs-gutter-y: 0.5rem
	}

	.g-dxl-3,
	.gx-dxl-3 {
		--bs-gutter-x: 1rem
	}

	.g-dxl-3,
	.gy-dxl-3 {
		--bs-gutter-y: 1rem
	}

	.g-dxl-4,
	.gx-dxl-4 {
		--bs-gutter-x: 1.5rem
	}

	.g-dxl-4,
	.gy-dxl-4 {
		--bs-gutter-y: 1.5rem
	}

	.g-dxl-5,
	.gx-dxl-5 {
		--bs-gutter-x: 3rem
	}

	.g-dxl-5,
	.gy-dxl-5 {
		--bs-gutter-y: 3rem
	}
}

.table {
	--bs-table-color: var(--bs-body-color);
	--bs-table-bg: transparent;
	--bs-table-border-color: var(--bs-border-color);
	--bs-table-accent-bg: transparent;
	--bs-table-striped-color: var(--bs-body-color);
	--bs-table-striped-bg: rgba(0, 0, 0, 0.05);
	--bs-table-active-color: var(--bs-body-color);
	--bs-table-active-bg: rgba(0, 0, 0, 0.1);
	--bs-table-hover-color: var(--bs-body-color);
	--bs-table-hover-bg: rgba(0, 0, 0, 0.075);
	width: 100%;
	margin-bottom: 1rem;
	color: var(--bs-table-color);
	vertical-align: top;
	border-color: var(--bs-table-border-color)
}

.table>:not(caption)>*>* {
	padding: .5rem;
	background-color: var(--bs-table-bg);
	border-bottom-width: 1px;
	-webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
	box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg)
}

.table>tbody {
	vertical-align: inherit
}

.table>thead {
	vertical-align: bottom
}

.table-group-divider {
	border-top: 2px solid
}

.caption-top {
	caption-side: top
}

.table-sm>:not(caption)>*>* {
	padding: .25rem
}

.table-bordered>:not(caption)>* {
	border-width: 1px 0
}

.table-bordered>:not(caption)>*>* {
	border-width: 0 1px
}

.table-borderless>:not(caption)>*>* {
	border-bottom-width: 0
}

.table-borderless>:not(:first-child) {
	border-top-width: 0
}

.table-striped-columns>:not(caption)>tr>:nth-child(2n),
.table-striped>tbody>tr:nth-of-type(odd)>* {
	--bs-table-accent-bg: var(--bs-table-striped-bg);
	color: var(--bs-table-striped-color)
}

.table-active {
	--bs-table-accent-bg: var(--bs-table-active-bg);
	color: var(--bs-table-active-color)
}

.table-hover>tbody>tr:hover>* {
	--bs-table-accent-bg: var(--bs-table-hover-bg);
	color: var(--bs-table-hover-color)
}

.table-primary {
	--bs-table-color: #000;
	--bs-table-bg: #cfe2ff;
	--bs-table-border-color: #bacbe6;
	--bs-table-striped-bg: #c5d7f2;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #bacbe6;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #bfd1ec;
	--bs-table-hover-color: #000
}

.table-primary,
.table-secondary {
	color: var(--bs-table-color);
	border-color: var(--bs-table-border-color)
}

.table-secondary {
	--bs-table-color: #000;
	--bs-table-bg: #e2e3e5;
	--bs-table-border-color: #cbccce;
	--bs-table-striped-bg: #d7d8da;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #cbccce;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #d1d2d4;
	--bs-table-hover-color: #000
}

.table-success {
	--bs-table-color: #000;
	--bs-table-bg: #d1e7dd;
	--bs-table-border-color: #bcd0c7;
	--bs-table-striped-bg: #c7dbd2;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #bcd0c7;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #c1d6cc;
	--bs-table-hover-color: #000
}

.table-info,
.table-success {
	color: var(--bs-table-color);
	border-color: var(--bs-table-border-color)
}

.table-info {
	--bs-table-color: #000;
	--bs-table-bg: #cff4fc;
	--bs-table-border-color: #badce3;
	--bs-table-striped-bg: #c5e8ef;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #badce3;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #bfe2e9;
	--bs-table-hover-color: #000
}

.table-warning {
	--bs-table-color: #000;
	--bs-table-bg: #fff3cd;
	--bs-table-border-color: #e6dbb9;
	--bs-table-striped-bg: #f2e7c3;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #e6dbb9;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #ece1be;
	--bs-table-hover-color: #000
}

.table-danger,
.table-warning {
	color: var(--bs-table-color);
	border-color: var(--bs-table-border-color)
}

.table-danger {
	--bs-table-color: #000;
	--bs-table-bg: #f8d7da;
	--bs-table-border-color: #dfc2c4;
	--bs-table-striped-bg: #eccccf;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #dfc2c4;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #e5c7ca;
	--bs-table-hover-color: #000
}

.table-light {
	--bs-table-color: #000;
	--bs-table-bg: #f8f9fa;
	--bs-table-border-color: #dfe0e1;
	--bs-table-striped-bg: #ecedee;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #dfe0e1;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #e5e6e7;
	--bs-table-hover-color: #000
}

.table-dark,
.table-light {
	color: var(--bs-table-color);
	border-color: var(--bs-table-border-color)
}

.table-dark {
	--bs-table-color: #fff;
	--bs-table-bg: #212529;
	--bs-table-border-color: #373b3e;
	--bs-table-striped-bg: #2c3034;
	--bs-table-striped-color: #fff;
	--bs-table-active-bg: #373b3e;
	--bs-table-active-color: #fff;
	--bs-table-hover-bg: #323539;
	--bs-table-hover-color: #fff
}

.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch
}

@media(max-width: 575.98px) {
	.table-responsive-sm {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch
	}
}

@media(max-width: 767.98px) {
	.table-responsive-md {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch
	}
}

@media(max-width: 991.98px) {
	.table-responsive-lg {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch
	}
}

@media(max-width: 1199.98px) {
	.table-responsive-xl {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch
	}
}

@media(max-width: 1399.98px) {
	.table-responsive-xxl {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch
	}
}

@media(max-width: 1599.98px) {
	.table-responsive-dxl {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch
	}
}

.form-label {
	margin-bottom: .5rem
}

.col-form-label {
	padding-top: calc(.375rem + 1px);
	padding-bottom: calc(.375rem + 1px);
	margin-bottom: 0;
	font-size: inherit;
	line-height: 1.5
}

.col-form-label-lg {
	padding-top: calc(.5rem + 1px);
	padding-bottom: calc(.5rem + 1px);
	font-size: 1.25rem
}

.col-form-label-sm {
	padding-top: calc(.25rem + 1px);
	padding-bottom: calc(.25rem + 1px);
	font-size: .875rem
}

.form-text {
	margin-top: .25rem;
	font-size: .875em;
	color: #6c757d
}

.form-control {
	display: block;
	width: 100%;
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: .375rem;
	-webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
}

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

.form-control[type=file] {
	overflow: hidden
}

.form-control[type=file]:not(:disabled):not([readonly]) {
	cursor: pointer
}

.form-control:focus {
	color: #212529;
	background-color: #fff;
	border-color: #86b7fe;
	outline: 0;
	-webkit-box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
	box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.form-control::-webkit-date-and-time-value {
	height: 1.5em
}

.form-control::-webkit-input-placeholder {
	color: #6c757d;
	opacity: 1
}

.form-control::-moz-placeholder {
	color: #6c757d;
	opacity: 1
}

.form-control:-ms-input-placeholder {
	color: #6c757d;
	opacity: 1
}

.form-control::-ms-input-placeholder {
	color: #6c757d;
	opacity: 1
}

.form-control::placeholder {
	color: #6c757d;
	opacity: 1
}

.form-control:disabled {
	background-color: #e9ecef;
	opacity: 1
}

.form-control::-webkit-file-upload-button {
	padding: .375rem .75rem;
	margin: -.375rem -.75rem;
	-webkit-margin-end: .75rem;
	margin-inline-end: .75rem;
	color: #212529;
	background-color: #e9ecef;
	pointer-events: none;
	border: 0 solid;
	border-color: inherit;
	border-inline-end-width: 1px;
	border-radius: 0;
	-webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
}

.form-control::file-selector-button {
	padding: .375rem .75rem;
	margin: -.375rem -.75rem;
	-webkit-margin-end: .75rem;
	margin-inline-end: .75rem;
	color: #212529;
	background-color: #e9ecef;
	pointer-events: none;
	border: 0 solid;
	border-color: inherit;
	border-inline-end-width: 1px;
	border-radius: 0;
	-webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
	.form-control::-webkit-file-upload-button {
		-webkit-transition: none;
		transition: none
	}

	.form-control::file-selector-button {
		-webkit-transition: none;
		transition: none
	}
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
	background-color: #dde0e3
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
	background-color: #dde0e3
}

.form-control-plaintext {
	display: block;
	width: 100%;
	padding: .375rem 0;
	margin-bottom: 0;
	line-height: 1.5;
	color: #212529;
	background-color: transparent;
	border: solid transparent;
	border-width: 1px 0
}

.form-control-plaintext:focus {
	outline: 0
}

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
	padding-right: 0;
	padding-left: 0
}

.form-control-sm {
	min-height: calc(1.5em + .5rem + 2px);
	padding: .25rem .5rem;
	font-size: .875rem;
	border-radius: .25rem
}

.form-control-sm::-webkit-file-upload-button {
	padding: .25rem .5rem;
	margin: -.25rem -.5rem;
	-webkit-margin-end: .5rem;
	margin-inline-end: .5rem
}

.form-control-sm::file-selector-button {
	padding: .25rem .5rem;
	margin: -.25rem -.5rem;
	-webkit-margin-end: .5rem;
	margin-inline-end: .5rem
}

.form-control-lg {
	min-height: calc(1.5em + 1rem + 2px);
	padding: .5rem 1rem;
	font-size: 1.25rem;
	border-radius: .5rem
}

.form-control-lg::-webkit-file-upload-button {
	padding: .5rem 1rem;
	margin: -.5rem -1rem;
	-webkit-margin-end: 1rem;
	margin-inline-end: 1rem
}

.form-control-lg::file-selector-button {
	padding: .5rem 1rem;
	margin: -.5rem -1rem;
	-webkit-margin-end: 1rem;
	margin-inline-end: 1rem
}

textarea.form-control {
	min-height: calc(1.5em + .75rem + 2px)
}

textarea.form-control-sm {
	min-height: calc(1.5em + .5rem + 2px)
}

textarea.form-control-lg {
	min-height: calc(1.5em + 1rem + 2px)
}

.form-control-color {
	width: 3rem;
	height: calc(1.5em + .75rem + 2px);
	padding: .375rem
}

.form-control-color:not(:disabled):not([readonly]) {
	cursor: pointer
}

.form-control-color::-moz-color-swatch {
	border: 0 !important;
	border-radius: .375rem
}

.form-control-color::-webkit-color-swatch {
	border-radius: .375rem
}

.form-control-color.form-control-sm {
	height: calc(1.5em + .5rem + 2px)
}

.form-control-color.form-control-lg {
	height: calc(1.5em + 1rem + 2px)
}

.form-select {
	display: block;
	width: 100%;
	padding: .375rem 2.25rem .375rem .75rem;
	-moz-padding-start: calc(.75rem - 3px);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right .75rem center;
	background-size: 16px 12px;
	border: 1px solid #ced4da;
	border-radius: .375rem;
	-webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

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

.form-select:focus {
	border-color: #86b7fe;
	outline: 0;
	-webkit-box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
	box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.form-select[multiple],
.form-select[size]:not([size="1"]) {
	padding-right: .75rem;
	background-image: none
}

.form-select:disabled {
	background-color: #e9ecef
}

.form-select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #212529
}

.form-select-sm {
	padding-top: .25rem;
	padding-bottom: .25rem;
	padding-left: .5rem;
	font-size: .875rem;
	border-radius: .25rem
}

.form-select-lg {
	padding-top: .5rem;
	padding-bottom: .5rem;
	padding-left: 1rem;
	font-size: 1.25rem;
	border-radius: .5rem
}

.form-check {
	display: block;
	min-height: 1.5rem;
	padding-left: 1.5em;
	margin-bottom: .125rem
}

.form-check .form-check-input {
	float: left;
	margin-left: -1.5em
}

.form-check-reverse {
	padding-right: 1.5em;
	padding-left: 0;
	text-align: right
}

.form-check-reverse .form-check-input {
	float: right;
	margin-right: -1.5em;
	margin-left: 0
}

.form-check-input {
	width: 1em;
	height: 1em;
	margin-top: .25em;
	vertical-align: top;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: contain;
	border: 1px solid rgba(0, 0, 0, .25);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-print-color-adjust: exact;
	print-color-adjust: exact
}

.form-check-input[type=checkbox] {
	border-radius: .25em
}

.form-check-input[type=radio] {
	border-radius: 50%
}

.form-check-input:active {
	-webkit-filter: brightness(90%);
	filter: brightness(90%)
}

.form-check-input:focus {
	border-color: #86b7fe;
	outline: 0;
	-webkit-box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
	box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.form-check-input:checked {
	background-color: #0d6efd;
	border-color: #0d6efd
}

.form-check-input:checked[type=checkbox] {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3 6-6'/%3E%3C/svg%3E")
}

.form-check-input:checked[type=radio] {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%23fff'/%3E%3C/svg%3E")
}

.form-check-input[type=checkbox]:indeterminate {
	background-color: #0d6efd;
	border-color: #0d6efd;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3E%3C/svg%3E")
}

.form-check-input:disabled {
	pointer-events: none;
	-webkit-filter: none;
	filter: none;
	opacity: .5
}

.form-check-input:disabled~.form-check-label,
.form-check-input[disabled]~.form-check-label {
	cursor: default;
	opacity: .5
}

.form-switch {
	padding-left: 2.5em
}

.form-switch .form-check-input {
	width: 2em;
	margin-left: -2.5em;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='rgba(0, 0, 0, 0.25)'/%3E%3C/svg%3E");
	background-position: 0;
	border-radius: 2em;
	-webkit-transition: background-position .15s ease-in-out;
	transition: background-position .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
	.form-switch .form-check-input {
		-webkit-transition: none;
		transition: none
	}
}

.form-switch .form-check-input:focus {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%2386b7fe'/%3E%3C/svg%3E")
}

.form-switch .form-check-input:checked {
	background-position: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")
}

.form-switch.form-check-reverse {
	padding-right: 2.5em;
	padding-left: 0
}

.form-switch.form-check-reverse .form-check-input {
	margin-right: -2.5em;
	margin-left: 0
}

.form-check-inline {
	display: inline-block;
	margin-right: 1rem
}

.btn-check {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	pointer-events: none
}

.btn-check:disabled+.btn,
.btn-check[disabled]+.btn {
	pointer-events: none;
	-webkit-filter: none;
	filter: none;
	opacity: .65
}

.form-range {
	width: 100%;
	height: 1.5rem;
	padding: 0;
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

.form-range:focus {
	outline: 0
}

.form-range:focus::-webkit-slider-thumb {
	-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(13, 110, 253, .25);
	box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.form-range:focus::-moz-range-thumb {
	box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.form-range::-moz-focus-outer {
	border: 0
}

.form-range::-webkit-slider-thumb {
	width: 1rem;
	height: 1rem;
	margin-top: -.25rem;
	background-color: #0d6efd;
	border: 0;
	border-radius: 1rem;
	-webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	-webkit-appearance: none;
	appearance: none
}

@media(prefers-reduced-motion:reduce) {
	.form-range::-webkit-slider-thumb {
		-webkit-transition: none;
		transition: none
	}
}

.form-range::-webkit-slider-thumb:active {
	background-color: #b6d4fe
}

.form-range::-webkit-slider-runnable-track {
	width: 100%;
	height: .5rem;
	color: transparent;
	cursor: pointer;
	background-color: #dee2e6;
	border-color: transparent;
	border-radius: 1rem
}

.form-range::-moz-range-thumb {
	width: 1rem;
	height: 1rem;
	background-color: #0d6efd;
	border: 0;
	border-radius: 1rem;
	-moz-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	-moz-appearance: none;
	appearance: none
}

@media(prefers-reduced-motion:reduce) {
	.form-range::-moz-range-thumb {
		-moz-transition: none;
		transition: none
	}
}

.form-range::-moz-range-thumb:active {
	background-color: #b6d4fe
}

.form-range::-moz-range-track {
	width: 100%;
	height: .5rem;
	color: transparent;
	cursor: pointer;
	background-color: #dee2e6;
	border-color: transparent;
	border-radius: 1rem
}

.form-range:disabled {
	pointer-events: none
}

.form-range:disabled::-webkit-slider-thumb {
	background-color: #adb5bd
}

.form-range:disabled::-moz-range-thumb {
	background-color: #adb5bd
}

.form-floating {
	position: relative
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext,
.form-floating>.form-select {
	height: calc(3.5rem + 2px);
	line-height: 1.25
}

.form-floating>label {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 1rem .75rem;
	overflow: hidden;
	text-align: start;
	text-overflow: ellipsis;
	white-space: nowrap;
	pointer-events: none;
	border: 1px solid transparent;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transition: opacity .1s ease-in-out, -webkit-transform .1s ease-in-out;
	transition: opacity .1s ease-in-out, -webkit-transform .1s ease-in-out;
	transition: opacity .1s ease-in-out, transform .1s ease-in-out;
	transition: opacity .1s ease-in-out, transform .1s ease-in-out, -webkit-transform .1s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
	.form-floating>label {
		-webkit-transition: none;
		transition: none
	}
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext {
	padding: 1rem .75rem
}

.form-floating>.form-control-plaintext::-webkit-input-placeholder,
.form-floating>.form-control::-webkit-input-placeholder {
	color: transparent
}

.form-floating>.form-control-plaintext::-moz-placeholder,
.form-floating>.form-control::-moz-placeholder {
	color: transparent
}

.form-floating>.form-control-plaintext:-ms-input-placeholder,
.form-floating>.form-control:-ms-input-placeholder {
	color: transparent
}

.form-floating>.form-control-plaintext::-ms-input-placeholder,
.form-floating>.form-control::-ms-input-placeholder {
	color: transparent
}

.form-floating>.form-control-plaintext::placeholder,
.form-floating>.form-control::placeholder {
	color: transparent
}

.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),
.form-floating>.form-control:not(:-moz-placeholder-shown) {
	padding-top: 1.625rem;
	padding-bottom: .625rem
}

.form-floating>.form-control-plaintext:not(:-ms-input-placeholder),
.form-floating>.form-control:not(:-ms-input-placeholder) {
	padding-top: 1.625rem;
	padding-bottom: .625rem
}

.form-floating>.form-control-plaintext:focus,
.form-floating>.form-control-plaintext:not(:placeholder-shown),
.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
	padding-top: 1.625rem;
	padding-bottom: .625rem
}

.form-floating>.form-control-plaintext:-webkit-autofill,
.form-floating>.form-control:-webkit-autofill {
	padding-top: 1.625rem;
	padding-bottom: .625rem
}

.form-floating>.form-select {
	padding-top: 1.625rem;
	padding-bottom: .625rem
}

.form-floating>.form-control:not(:-moz-placeholder-shown)~label {
	opacity: .65;
	transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating>.form-control:not(:-ms-input-placeholder)~label {
	opacity: .65;
	transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
	opacity: .65;
	-webkit-transform: scale(.85) translateY(-.5rem) translateX(.15rem);
	transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating>.form-control:-webkit-autofill~label {
	opacity: .65;
	-webkit-transform: scale(.85) translateY(-.5rem) translateX(.15rem);
	transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating>.form-control-plaintext~label {
	border-width: 1px 0
}

.input-group {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%
}

.input-group>.form-control,
.input-group>.form-floating,
.input-group>.form-select {
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 1%;
	min-width: 0
}

.input-group>.form-control:focus,
.input-group>.form-floating:focus-within,
.input-group>.form-select:focus {
	z-index: 5
}

.input-group .btn {
	position: relative;
	z-index: 2
}

.input-group .btn:focus {
	z-index: 5
}

.input-group-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: center;
	white-space: nowrap;
	background-color: #e9ecef;
	border: 1px solid #ced4da;
	border-radius: .375rem
}

.input-group-lg>.btn,
.input-group-lg>.form-control,
.input-group-lg>.form-select,
.input-group-lg>.input-group-text {
	padding: .5rem 1rem;
	font-size: 1.25rem;
	border-radius: .5rem
}

.input-group-sm>.btn,
.input-group-sm>.form-control,
.input-group-sm>.form-select,
.input-group-sm>.input-group-text {
	padding: .25rem .5rem;
	font-size: .875rem;
	border-radius: .25rem
}

.input-group-lg>.form-select,
.input-group-sm>.form-select {
	padding-right: 3rem
}

.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,
.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
	margin-left: -1px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0
}

.input-group>.form-floating:not(:first-child)>.form-control,
.input-group>.form-floating:not(:first-child)>.form-select {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0
}

.valid-feedback {
	display: none;
	width: 100%;
	margin-top: .25rem;
	font-size: .875em;
	color: #198754
}

.valid-tooltip {
	position: absolute;
	top: 100%;
	z-index: 5;
	display: none;
	max-width: 100%;
	padding: .25rem .5rem;
	margin-top: .1rem;
	font-size: .875rem;
	color: #fff;
	background-color: rgba(25, 135, 84, .9);
	border-radius: .375rem
}

.is-valid~.valid-feedback,
.is-valid~.valid-tooltip,
.was-validated :valid~.valid-feedback,
.was-validated :valid~.valid-tooltip {
	display: block
}

.form-control.is-valid,
.was-validated .form-control:valid {
	border-color: #198754;
	padding-right: calc(1.5em + .75rem);
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right calc(.375em + .1875rem) center;
	background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
	border-color: #198754;
	-webkit-box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25);
	box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25)
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
	padding-right: calc(1.5em + .75rem);
	background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.form-select.is-valid,
.was-validated .form-select:valid {
	border-color: #198754
}

.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"],
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"] {
	padding-right: 4.125rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E"), url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
	background-position: right .75rem center, center right 2.25rem;
	background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-select.is-valid:focus,
.was-validated .form-select:valid:focus {
	border-color: #198754;
	-webkit-box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25);
	box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25)
}

.form-control-color.is-valid,
.was-validated .form-control-color:valid {
	width: calc(3.75rem + 1.5em)
}

.form-check-input.is-valid,
.was-validated .form-check-input:valid {
	border-color: #198754
}

.form-check-input.is-valid:checked,
.was-validated .form-check-input:valid:checked {
	background-color: #198754
}

.form-check-input.is-valid:focus,
.was-validated .form-check-input:valid:focus {
	-webkit-box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25);
	box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25)
}

.form-check-input.is-valid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
	color: #198754
}

.form-check-inline .form-check-input~.valid-feedback {
	margin-left: .5em
}

.input-group>.form-control:not(:focus).is-valid,
.input-group>.form-floating:not(:focus-within).is-valid,
.input-group>.form-select:not(:focus).is-valid,
.was-validated .input-group>.form-control:not(:focus):valid,
.was-validated .input-group>.form-floating:not(:focus-within):valid,
.was-validated .input-group>.form-select:not(:focus):valid {
	z-index: 3
}

.invalid-feedback {
	display: none;
	width: 100%;
	margin-top: .25rem;
	font-size: .875em;
	color: #dc3545
}

.invalid-tooltip {
	position: absolute;
	top: 100%;
	z-index: 5;
	display: none;
	max-width: 100%;
	padding: .25rem .5rem;
	margin-top: .1rem;
	font-size: .875rem;
	color: #fff;
	background-color: rgba(220, 53, 69, .9);
	border-radius: .375rem
}

.is-invalid~.invalid-feedback,
.is-invalid~.invalid-tooltip,
.was-validated :invalid~.invalid-feedback,
.was-validated :invalid~.invalid-tooltip {
	display: block
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
	border-color: #dc3545;
	padding-right: calc(1.5em + .75rem);
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right calc(.375em + .1875rem) center;
	background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
	border-color: #dc3545;
	-webkit-box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25);
	box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25)
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
	padding-right: calc(1.5em + .75rem);
	background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.form-select.is-invalid,
.was-validated .form-select:invalid {
	border-color: #dc3545
}

.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"],
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"] {
	padding-right: 4.125rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E"), url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
	background-position: right .75rem center, center right 2.25rem;
	background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-select.is-invalid:focus,
.was-validated .form-select:invalid:focus {
	border-color: #dc3545;
	-webkit-box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25);
	box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25)
}

.form-control-color.is-invalid,
.was-validated .form-control-color:invalid {
	width: calc(3.75rem + 1.5em)
}

.form-check-input.is-invalid,
.was-validated .form-check-input:invalid {
	border-color: #dc3545
}

.form-check-input.is-invalid:checked,
.was-validated .form-check-input:invalid:checked {
	background-color: #dc3545
}

.form-check-input.is-invalid:focus,
.was-validated .form-check-input:invalid:focus {
	-webkit-box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25);
	box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25)
}

.form-check-input.is-invalid~.form-check-label,
.was-validated .form-check-input:invalid~.form-check-label {
	color: #dc3545
}

.form-check-inline .form-check-input~.invalid-feedback {
	margin-left: .5em
}

.input-group>.form-control:not(:focus).is-invalid,
.input-group>.form-floating:not(:focus-within).is-invalid,
.input-group>.form-select:not(:focus).is-invalid,
.was-validated .input-group>.form-control:not(:focus):invalid,
.was-validated .input-group>.form-floating:not(:focus-within):invalid,
.was-validated .input-group>.form-select:not(:focus):invalid {
	z-index: 4
}

.nav {
	--bs-nav-link-padding-x: 1rem;
	--bs-nav-link-padding-y: 0.5rem;
	--bs-nav-link-font-weight: ;
	--bs-nav-link-color: var(--bs-link-color);
	--bs-nav-link-hover-color: var(--bs-link-hover-color);
	--bs-nav-link-disabled-color: #6c757d;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none
}

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

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

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

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

.nav-tabs {
	--bs-nav-tabs-border-width: 1px;
	--bs-nav-tabs-border-color: #dee2e6;
	--bs-nav-tabs-border-radius: 0.375rem;
	--bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
	--bs-nav-tabs-link-active-color: #495057;
	--bs-nav-tabs-link-active-bg: #fff;
	--bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
	border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)
}

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

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

.nav-tabs .nav-link.disabled,
.nav-tabs .nav-link:disabled {
	color: var(--bs-nav-link-disabled-color);
	background-color: transparent;
	border-color: transparent
}

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

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

.nav-pills {
	--bs-nav-pills-border-radius: 0.375rem;
	--bs-nav-pills-link-active-color: #fff;
	--bs-nav-pills-link-active-bg: #0d6efd
}

.nav-pills .nav-link {
	background: none;
	border: 0;
	border-radius: var(--bs-nav-pills-border-radius)
}

.nav-pills .nav-link:disabled {
	color: var(--bs-nav-link-disabled-color);
	background-color: transparent;
	border-color: transparent
}

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

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

.nav-justified .nav-item,
.nav-justified>.nav-link {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	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 {
	--bs-navbar-padding-x: 0;
	--bs-navbar-padding-y: 0.5rem;
	--bs-navbar-color: rgba(0, 0, 0, 0.55);
	--bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
	--bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
	--bs-navbar-active-color: rgba(0, 0, 0, 0.9);
	--bs-navbar-brand-padding-y: 0.3125rem;
	--bs-navbar-brand-margin-end: 1rem;
	--bs-navbar-brand-font-size: 1.25rem;
	--bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
	--bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
	--bs-navbar-nav-link-padding-x: 0.5rem;
	--bs-navbar-toggler-padding-y: 0.25rem;
	--bs-navbar-toggler-padding-x: 0.75rem;
	--bs-navbar-toggler-font-size: 1.25rem;
	--bs-navbar-toggler-icon-bg: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
	--bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
	--bs-navbar-toggler-border-radius: 0.375rem;
	--bs-navbar-toggler-focus-width: 0.25rem;
	--bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)
}

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

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

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

.navbar-nav {
	--bs-nav-link-padding-x: 0;
	--bs-nav-link-padding-y: 0.5rem;
	--bs-nav-link-font-weight: ;
	--bs-nav-link-color: var(--bs-navbar-color);
	--bs-nav-link-hover-color: var(--bs-navbar-hover-color);
	--bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
	color: var(--bs-navbar-active-color)
}

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

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

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

.navbar-collapse {
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

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

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

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

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

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

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

@media(min-width: 576px) {
	.navbar-expand-sm {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	.navbar-expand-sm .navbar-nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row
	}

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

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

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

	.navbar-expand-sm .navbar-collapse {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}

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

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

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

	.navbar-expand-sm .offcanvas .offcanvas-body {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-flex: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
		padding: 0;
		overflow-y: visible
	}
}

@media(min-width: 768px) {
	.navbar-expand-md {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	.navbar-expand-md .navbar-nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row
	}

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

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

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

	.navbar-expand-md .navbar-collapse {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}

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

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

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

	.navbar-expand-md .offcanvas .offcanvas-body {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-flex: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
		padding: 0;
		overflow-y: visible
	}
}

@media(min-width: 992px) {
	.navbar-expand-lg {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	.navbar-expand-lg .navbar-nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row
	}

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

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

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

	.navbar-expand-lg .navbar-collapse {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}

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

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

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

	.navbar-expand-lg .offcanvas .offcanvas-body {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-flex: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
		padding: 0;
		overflow-y: visible
	}
}

@media(min-width: 1200px) {
	.navbar-expand-xl {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	.navbar-expand-xl .navbar-nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row
	}

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

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

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

	.navbar-expand-xl .navbar-collapse {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}

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

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

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

	.navbar-expand-xl .offcanvas .offcanvas-body {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-flex: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
		padding: 0;
		overflow-y: visible
	}
}

@media(min-width: 1400px) {
	.navbar-expand-xxl {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	.navbar-expand-xxl .navbar-nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row
	}

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

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

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

	.navbar-expand-xxl .navbar-collapse {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}

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

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

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

	.navbar-expand-xxl .offcanvas .offcanvas-body {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-flex: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
		padding: 0;
		overflow-y: visible
	}
}

@media(min-width: 1600px) {
	.navbar-expand-dxl {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	.navbar-expand-dxl .navbar-nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row
	}

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

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

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

	.navbar-expand-dxl .navbar-collapse {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}

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

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

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

	.navbar-expand-dxl .offcanvas .offcanvas-body {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-flex: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
		padding: 0;
		overflow-y: visible
	}
}

.navbar-expand {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.navbar-expand .navbar-nav {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row
}

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

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

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

.navbar-expand .navbar-collapse {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-preferred-size: auto;
	flex-basis: auto
}

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

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

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

.navbar-expand .offcanvas .offcanvas-body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	padding: 0;
	overflow-y: visible
}

.navbar-dark {
	--bs-navbar-color: hsla(0, 0%, 100%, 0.55);
	--bs-navbar-hover-color: hsla(0, 0%, 100%, 0.75);
	--bs-navbar-disabled-color: hsla(0, 0%, 100%, 0.25);
	--bs-navbar-active-color: #fff;
	--bs-navbar-brand-color: #fff;
	--bs-navbar-brand-hover-color: #fff;
	--bs-navbar-toggler-border-color: hsla(0, 0%, 100%, 0.1);
	--bs-navbar-toggler-icon-bg: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.accordion {
	--bs-accordion-color: #212529;
	--bs-accordion-bg: #fff;
	--bs-accordion-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, border-radius 0.15s ease;
	--bs-accordion-border-color: var(--bs-border-color);
	--bs-accordion-border-width: 1px;
	--bs-accordion-border-radius: 0.375rem;
	--bs-accordion-inner-border-radius: calc(0.375rem - 1px);
	--bs-accordion-btn-padding-x: 1.25rem;
	--bs-accordion-btn-padding-y: 1rem;
	--bs-accordion-btn-color: #212529;
	--bs-accordion-btn-bg: var(--bs-accordion-bg);
	--bs-accordion-btn-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
	--bs-accordion-btn-icon-width: 1.25rem;
	--bs-accordion-btn-icon-transform: rotate(-180deg);
	--bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
	--bs-accordion-btn-active-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
	--bs-accordion-btn-focus-border-color: #86b7fe;
	--bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
	--bs-accordion-body-padding-x: 1.25rem;
	--bs-accordion-body-padding-y: 1rem;
	--bs-accordion-active-color: #0c63e4;
	--bs-accordion-active-bg: #e7f1ff
}

.accordion-button {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
	font-size: 1rem;
	color: var(--bs-accordion-btn-color);
	text-align: left;
	background-color: var(--bs-accordion-btn-bg);
	border: 0;
	border-radius: 0;
	overflow-anchor: none;
	-webkit-transition: var(--bs-accordion-transition);
	transition: var(--bs-accordion-transition)
}

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

.accordion-button:not(.collapsed) {
	color: var(--bs-accordion-active-color);
	background-color: var(--bs-accordion-active-bg);
	-webkit-box-shadow: inset 0 calc(var(--bs-accordion-border-width)*-1) 0 var(--bs-accordion-border-color);
	box-shadow: inset 0 calc(var(--bs-accordion-border-width)*-1) 0 var(--bs-accordion-border-color)
}

.accordion-button:not(.collapsed):after {
	background-image: var(--bs-accordion-btn-active-icon);
	-webkit-transform: var(--bs-accordion-btn-icon-transform);
	transform: var(--bs-accordion-btn-icon-transform)
}

.accordion-button:after {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: var(--bs-accordion-btn-icon-width);
	height: var(--bs-accordion-btn-icon-width);
	margin-left: auto;
	content: "";
	background-image: var(--bs-accordion-btn-icon);
	background-repeat: no-repeat;
	background-size: var(--bs-accordion-btn-icon-width);
	-webkit-transition: var(--bs-accordion-btn-icon-transition);
	transition: var(--bs-accordion-btn-icon-transition)
}

@media(prefers-reduced-motion:reduce) {
	.accordion-button:after {
		-webkit-transition: none;
		transition: none
	}
}

.accordion-button:hover {
	z-index: 2
}

.accordion-button:focus {
	z-index: 3;
	border-color: var(--bs-accordion-btn-focus-border-color);
	outline: 0;
	-webkit-box-shadow: var(--bs-accordion-btn-focus-box-shadow);
	box-shadow: var(--bs-accordion-btn-focus-box-shadow)
}

.accordion-header {
	margin-bottom: 0
}

.accordion-item {
	color: var(--bs-accordion-color);
	background-color: var(--bs-accordion-bg);
	border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)
}

.accordion-item:first-of-type {
	border-top-left-radius: var(--bs-accordion-border-radius);
	border-top-right-radius: var(--bs-accordion-border-radius)
}

.accordion-item:first-of-type .accordion-button {
	border-top-left-radius: var(--bs-accordion-inner-border-radius);
	border-top-right-radius: var(--bs-accordion-inner-border-radius)
}

.accordion-item:not(:first-of-type) {
	border-top: 0
}

.accordion-item:last-of-type {
	border-bottom-right-radius: var(--bs-accordion-border-radius);
	border-bottom-left-radius: var(--bs-accordion-border-radius)
}

.accordion-item:last-of-type .accordion-button.collapsed {
	border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
	border-bottom-left-radius: var(--bs-accordion-inner-border-radius)
}

.accordion-item:last-of-type .accordion-collapse {
	border-bottom-right-radius: var(--bs-accordion-border-radius);
	border-bottom-left-radius: var(--bs-accordion-border-radius)
}

.accordion-body {
	padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)
}

.accordion-flush .accordion-collapse {
	border-width: 0
}

.accordion-flush .accordion-item {
	border-right: 0;
	border-left: 0;
	border-radius: 0
}

.accordion-flush .accordion-item:first-child {
	border-top: 0
}

.accordion-flush .accordion-item:last-child {
	border-bottom: 0
}

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
	border-radius: 0
}

.placeholder {
	display: inline-block;
	min-height: 1em;
	vertical-align: middle;
	cursor: wait;
	background-color: currentcolor;
	opacity: .5
}

.placeholder.btn:before {
	display: inline-block;
	content: ""
}

.placeholder-xs {
	min-height: .6em
}

.placeholder-sm {
	min-height: .8em
}

.placeholder-lg {
	min-height: 1.2em
}

.placeholder-glow .placeholder {
	-webkit-animation: placeholder-glow 2s ease-in-out infinite;
	animation: placeholder-glow 2s ease-in-out infinite
}

@-webkit-keyframes placeholder-glow {
	50% {
		opacity: .2
	}
}

@keyframes placeholder-glow {
	50% {
		opacity: .2
	}
}

.placeholder-wave {
	-webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, .8) 75%, #000 95%);
	mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, .8) 75%, #000 95%);
	-webkit-mask-size: 200% 100%;
	mask-size: 200% 100%;
	-webkit-animation: placeholder-wave 2s linear infinite;
	animation: placeholder-wave 2s linear infinite
}

@-webkit-keyframes placeholder-wave {
	to {
		-webkit-mask-position: -200% 0;
		mask-position: -200% 0
	}
}

@keyframes placeholder-wave {
	to {
		-webkit-mask-position: -200% 0;
		mask-position: -200% 0
	}
}

.clearfix:after {
	display: block;
	clear: both;
	content: ""
}

.text-bg-primary {
	color: #fff !important;
	background-color: RGBA(13, 110, 253, var(--bs-bg-opacity, 1)) !important
}

.text-bg-secondary {
	color: #fff !important;
	background-color: RGBA(108, 117, 125, var(--bs-bg-opacity, 1)) !important
}

.text-bg-success {
	color: #fff !important;
	background-color: RGBA(25, 135, 84, var(--bs-bg-opacity, 1)) !important
}

.text-bg-info {
	color: #000 !important;
	background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important
}

.text-bg-warning {
	color: #000 !important;
	background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important
}

.text-bg-danger {
	color: #fff !important;
	background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important
}

.text-bg-light {
	color: #000 !important;
	background-color: RGBA(248, 249, 250, var(--bs-bg-opacity, 1)) !important
}

.text-bg-dark {
	color: #fff !important;
	background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important
}

.link-primary {
	color: #0d6efd !important
}

.link-primary:focus,
.link-primary:hover {
	color: #0a58ca !important
}

.link-secondary {
	color: #6c757d !important
}

.link-secondary:focus,
.link-secondary:hover {
	color: #565e64 !important
}

.link-success {
	color: #198754 !important
}

.link-success:focus,
.link-success:hover {
	color: #146c43 !important
}

.link-info {
	color: #0dcaf0 !important
}

.link-info:focus,
.link-info:hover {
	color: #3dd5f3 !important
}

.link-warning {
	color: #ffc107 !important
}

.link-warning:focus,
.link-warning:hover {
	color: #ffcd39 !important
}

.link-danger {
	color: #dc3545 !important
}

.link-danger:focus,
.link-danger:hover {
	color: #b02a37 !important
}

.link-light {
	color: #f8f9fa !important
}

.link-light:focus,
.link-light:hover {
	color: #f9fafb !important
}

.link-dark {
	color: #212529 !important
}

.link-dark:focus,
.link-dark:hover {
	color: #1a1e21 !important
}

.ratio {
	position: relative;
	width: 100%
}

.ratio:before {
	display: block;
	padding-top: var(--bs-aspect-ratio);
	content: ""
}

.ratio>* {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.ratio-1x1 {
	--bs-aspect-ratio: 100%
}

.ratio-4x3 {
	--bs-aspect-ratio: 75%
}

.ratio-16x9 {
	--bs-aspect-ratio: 56.25%
}

.ratio-21x9 {
	--bs-aspect-ratio: 42.8571428571%
}

.fixed-top {
	top: 0
}

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

.fixed-bottom {
	bottom: 0
}

.sticky-top {
	top: 0
}

.sticky-bottom,
.sticky-top {
	position: sticky;
	z-index: 1020
}

.sticky-bottom {
	bottom: 0
}

@media(min-width: 576px) {
	.sticky-sm-top {
		position: sticky;
		top: 0;
		z-index: 1020
	}

	.sticky-sm-bottom {
		position: sticky;
		bottom: 0;
		z-index: 1020
	}
}

@media(min-width: 768px) {
	.sticky-md-top {
		position: sticky;
		top: 0;
		z-index: 1020
	}

	.sticky-md-bottom {
		position: sticky;
		bottom: 0;
		z-index: 1020
	}
}

@media(min-width: 992px) {
	.sticky-lg-top {
		position: sticky;
		top: 0;
		z-index: 1020
	}

	.sticky-lg-bottom {
		position: sticky;
		bottom: 0;
		z-index: 1020
	}
}

@media(min-width: 1200px) {
	.sticky-xl-top {
		position: sticky;
		top: 0;
		z-index: 1020
	}

	.sticky-xl-bottom {
		position: sticky;
		bottom: 0;
		z-index: 1020
	}
}

@media(min-width: 1400px) {
	.sticky-xxl-top {
		position: sticky;
		top: 0;
		z-index: 1020
	}

	.sticky-xxl-bottom {
		position: sticky;
		bottom: 0;
		z-index: 1020
	}
}

@media(min-width: 1600px) {
	.sticky-dxl-top {
		position: sticky;
		top: 0;
		z-index: 1020
	}

	.sticky-dxl-bottom {
		position: sticky;
		bottom: 0;
		z-index: 1020
	}
}

.hstack {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.hstack,
.vstack {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-item-align: stretch;
	align-self: stretch
}

.vstack {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
	position: absolute !important;
	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
}

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

.text-truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.vr {
	display: inline-block;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	width: 1px;
	min-height: 1em;
	background-color: currentcolor;
	opacity: .25
}

.align-baseline {
	vertical-align: baseline !important
}

.align-top {
	vertical-align: top !important
}

.align-middle {
	vertical-align: middle !important
}

.align-bottom {
	vertical-align: bottom !important
}

.align-text-bottom {
	vertical-align: text-bottom !important
}

.align-text-top {
	vertical-align: text-top !important
}

.float-start {
	float: left !important
}

.float-end {
	float: right !important
}

.float-none {
	float: none !important
}

.opacity-0 {
	opacity: 0 !important
}

.opacity-25 {
	opacity: .25 !important
}

.opacity-50 {
	opacity: .5 !important
}

.opacity-75 {
	opacity: .75 !important
}

.opacity-100 {
	opacity: 1 !important
}

.overflow-auto {
	overflow: auto !important
}

.overflow-hidden {
	overflow: hidden !important
}

.overflow-visible {
	overflow: visible !important
}

.overflow-scroll {
	overflow: scroll !important
}

.d-inline {
	display: inline !important
}

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

.d-block {
	display: block !important
}

.d-grid {
	display: grid !important
}

.d-table {
	display: table !important
}

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

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

.d-flex {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important
}

.d-inline-flex {
	display: -webkit-inline-box !important;
	display: -ms-inline-flexbox !important;
	display: inline-flex !important
}

.d-none {
	display: none !important
}

.shadow {
	-webkit-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important
}

.shadow-sm {
	-webkit-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important
}

.shadow-lg {
	-webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important
}

.shadow-none {
	-webkit-box-shadow: none !important;
	box-shadow: none !important
}

.position-static {
	position: static !important
}

.position-relative {
	position: relative !important
}

.position-absolute {
	position: absolute !important
}

.position-fixed {
	position: fixed !important
}

.position-sticky {
	position: sticky !important
}

.top-0 {
	top: 0 !important
}

.top-50 {
	top: 50% !important
}

.top-100 {
	top: 100% !important
}

.bottom-0 {
	bottom: 0 !important
}

.bottom-50 {
	bottom: 50% !important
}

.bottom-100 {
	bottom: 100% !important
}

.start-0 {
	left: 0 !important
}

.start-50 {
	left: 50% !important
}

.start-100 {
	left: 100% !important
}

.end-0 {
	right: 0 !important
}

.end-50 {
	right: 50% !important
}

.end-100 {
	right: 100% !important
}

.translate-middle {
	-webkit-transform: translate(-50%, -50%) !important;
	transform: translate(-50%, -50%) !important
}

.translate-middle-x {
	-webkit-transform: translateX(-50%) !important;
	transform: translateX(-50%) !important
}

.translate-middle-y {
	-webkit-transform: translateY(-50%) !important;
	transform: translateY(-50%) !important
}

.border {
	border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-0 {
	border: 0 !important
}

.border-top {
	border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-top-0 {
	border-top: 0 !important
}

.border-end {
	border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-end-0 {
	border-right: 0 !important
}

.border-bottom {
	border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-bottom-0 {
	border-bottom: 0 !important
}

.border-start {
	border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-start-0 {
	border-left: 0 !important
}

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

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

.border-success {
	--bs-border-opacity: 1;
	border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important
}

.border-info {
	--bs-border-opacity: 1;
	border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important
}

.border-warning {
	--bs-border-opacity: 1;
	border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important
}

.border-danger {
	--bs-border-opacity: 1;
	border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important
}

.border-light {
	--bs-border-opacity: 1;
	border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important
}

.border-dark {
	--bs-border-opacity: 1;
	border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important
}

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

.border-1 {
	--bs-border-width: 1px
}

.border-2 {
	--bs-border-width: 2px
}

.border-3 {
	--bs-border-width: 3px
}

.border-4 {
	--bs-border-width: 4px
}

.border-5 {
	--bs-border-width: 5px
}

.border-opacity-10 {
	--bs-border-opacity: 0.1
}

.border-opacity-25 {
	--bs-border-opacity: 0.25
}

.border-opacity-50 {
	--bs-border-opacity: 0.5
}

.border-opacity-75 {
	--bs-border-opacity: 0.75
}

.border-opacity-100 {
	--bs-border-opacity: 1
}

.w-25 {
	width: 25% !important
}

.w-50 {
	width: 50% !important
}

.w-75 {
	width: 75% !important
}

.w-100 {
	width: 100% !important
}

.w-auto {
	width: auto !important
}

.mw-100 {
	max-width: 100% !important
}

.vw-100 {
	width: 100vw !important
}

.min-vw-100 {
	min-width: 100vw !important
}

.h-25 {
	height: 25% !important
}

.h-50 {
	height: 50% !important
}

.h-75 {
	height: 75% !important
}

.h-100 {
	height: 100% !important
}

.h-auto {
	height: auto !important
}

.mh-100 {
	max-height: 100% !important
}

.vh-100 {
	height: 100vh !important
}

.min-vh-100 {
	min-height: 100vh !important
}

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

.flex-row {
	-webkit-box-orient: horizontal !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: row !important;
	flex-direction: row !important
}

.flex-column {
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: column !important;
	flex-direction: column !important
}

.flex-row-reverse {
	-webkit-box-orient: horizontal !important;
	-webkit-box-direction: reverse !important;
	-ms-flex-direction: row-reverse !important;
	flex-direction: row-reverse !important
}

.flex-column-reverse {
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: reverse !important;
	-ms-flex-direction: column-reverse !important;
	flex-direction: column-reverse !important
}

.flex-grow-0 {
	-webkit-box-flex: 0 !important;
	-ms-flex-positive: 0 !important;
	flex-grow: 0 !important
}

.flex-grow-1 {
	-webkit-box-flex: 1 !important;
	-ms-flex-positive: 1 !important;
	flex-grow: 1 !important
}

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

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

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

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

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

.justify-content-start {
	-webkit-box-pack: start !important;
	-ms-flex-pack: start !important;
	justify-content: flex-start !important
}

.justify-content-end {
	-webkit-box-pack: end !important;
	-ms-flex-pack: end !important;
	justify-content: flex-end !important
}

.justify-content-center {
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important
}

.justify-content-between {
	-webkit-box-pack: justify !important;
	-ms-flex-pack: justify !important;
	justify-content: space-between !important
}

.justify-content-around {
	-ms-flex-pack: distribute !important;
	justify-content: space-around !important
}

.justify-content-evenly {
	-webkit-box-pack: space-evenly !important;
	-ms-flex-pack: space-evenly !important;
	justify-content: space-evenly !important
}

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

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

.align-items-center {
	-webkit-box-align: center !important;
	-ms-flex-align: center !important;
	align-items: center !important
}

.align-items-baseline {
	-webkit-box-align: baseline !important;
	-ms-flex-align: baseline !important;
	align-items: baseline !important
}

.align-items-stretch {
	-webkit-box-align: stretch !important;
	-ms-flex-align: stretch !important;
	align-items: stretch !important
}

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

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

.align-content-center {
	-ms-flex-line-pack: center !important;
	align-content: center !important
}

.align-content-between {
	-ms-flex-line-pack: justify !important;
	align-content: space-between !important
}

.align-content-around {
	-ms-flex-line-pack: distribute !important;
	align-content: space-around !important
}

.align-content-stretch {
	-ms-flex-line-pack: stretch !important;
	align-content: stretch !important
}

.align-self-auto {
	-ms-flex-item-align: auto !important;
	align-self: auto !important
}

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

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

.align-self-center {
	-ms-flex-item-align: center !important;
	align-self: center !important
}

.align-self-baseline {
	-ms-flex-item-align: baseline !important;
	align-self: baseline !important
}

.align-self-stretch {
	-ms-flex-item-align: stretch !important;
	align-self: stretch !important
}

.order-first {
	-webkit-box-ordinal-group: 0 !important;
	-ms-flex-order: -1 !important;
	order: -1 !important
}

.order-0 {
	-webkit-box-ordinal-group: 1 !important;
	-ms-flex-order: 0 !important;
	order: 0 !important
}

.order-1 {
	-webkit-box-ordinal-group: 2 !important;
	-ms-flex-order: 1 !important;
	order: 1 !important
}

.order-2 {
	-webkit-box-ordinal-group: 3 !important;
	-ms-flex-order: 2 !important;
	order: 2 !important
}

.order-3 {
	-webkit-box-ordinal-group: 4 !important;
	-ms-flex-order: 3 !important;
	order: 3 !important
}

.order-4 {
	-webkit-box-ordinal-group: 5 !important;
	-ms-flex-order: 4 !important;
	order: 4 !important
}

.order-5 {
	-webkit-box-ordinal-group: 6 !important;
	-ms-flex-order: 5 !important;
	order: 5 !important
}

.order-last {
	-webkit-box-ordinal-group: 7 !important;
	-ms-flex-order: 6 !important;
	order: 6 !important
}

.m-0 {
	margin: 0 !important
}

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

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

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

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

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

.m-auto {
	margin: auto !important
}

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

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

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

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

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

.mx-5 {
	margin-right: 3rem !important;
	margin-left: 3rem !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: .25rem !important;
	margin-bottom: .25rem !important
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-0 {
	padding: 0 !important
}

.p-1 {
	padding: .25rem !important
}

.p-2 {
	padding: .5rem !important
}

.p-3 {
	padding: 1rem !important
}

.p-4 {
	padding: 1.5rem !important
}

.p-5 {
	padding: 3rem !important
}

.px-0 {
	padding-right: 0 !important;
	padding-left: 0 !important
}

.px-1 {
	padding-right: .25rem !important;
	padding-left: .25rem !important
}

.px-2 {
	padding-right: .5rem !important;
	padding-left: .5rem !important
}

.px-3 {
	padding-right: 1rem !important;
	padding-left: 1rem !important
}

.px-4 {
	padding-right: 1.5rem !important;
	padding-left: 1.5rem !important
}

.px-5 {
	padding-right: 3rem !important;
	padding-left: 3rem !important
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gap-0 {
	gap: 0 !important
}

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

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

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

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

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

.font-monospace {
	font-family: var(--bs-font-monospace) !important
}

.fs-1 {
	font-size: calc(1.375rem + 1.5vw) !important
}

.fs-2 {
	font-size: calc(1.325rem + .9vw) !important
}

.fs-3 {
	font-size: calc(1.3rem + .6vw) !important
}

.fs-4 {
	font-size: calc(1.275rem + .3vw) !important
}

.fs-5 {
	font-size: 1.25rem !important
}

.fs-6 {
	font-size: 1rem !important
}

.fst-italic {
	font-style: italic !important
}

.fst-normal {
	font-style: normal !important
}

.fw-light {
	font-weight: 300 !important
}

.fw-lighter {
	font-weight: lighter !important
}

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

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

.fw-semibold {
	font-weight: 600 !important
}

.fw-bolder {
	font-weight: bolder !important
}

.lh-1 {
	line-height: 1 !important
}

.lh-sm {
	line-height: 1.25 !important
}

.lh-base {
	line-height: 1.5 !important
}

.lh-lg {
	line-height: 2 !important
}

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

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

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

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

.text-decoration-underline {
	text-decoration: underline !important
}

.text-decoration-line-through {
	text-decoration: line-through !important
}

.text-lowercase {
	text-transform: lowercase !important
}

.text-uppercase {
	text-transform: uppercase !important
}

.text-capitalize {
	text-transform: capitalize !important
}

.text-wrap {
	white-space: normal !important
}

.text-nowrap {
	white-space: nowrap !important
}

.text-break {
	word-wrap: break-word !important;
	word-break: break-word !important
}

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

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

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

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

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

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

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

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

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

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

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

.text-muted {
	--bs-text-opacity: 1;
	color: #6c757d !important
}

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

.text-white-50 {
	--bs-text-opacity: 1;
	color: hsla(0, 0%, 100%, .5) !important
}

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

.text-opacity-25 {
	--bs-text-opacity: 0.25
}

.text-opacity-50 {
	--bs-text-opacity: 0.5
}

.text-opacity-75 {
	--bs-text-opacity: 0.75
}

.text-opacity-100 {
	--bs-text-opacity: 1
}

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

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

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

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

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

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

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

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

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

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

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

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

.bg-opacity-10 {
	--bs-bg-opacity: 0.1
}

.bg-opacity-25 {
	--bs-bg-opacity: 0.25
}

.bg-opacity-50 {
	--bs-bg-opacity: 0.5
}

.bg-opacity-75 {
	--bs-bg-opacity: 0.75
}

.bg-opacity-100 {
	--bs-bg-opacity: 1
}

.bg-gradient {
	background-image: var(--bs-gradient) !important
}

.user-select-all {
	-webkit-user-select: all !important;
	-moz-user-select: all !important;
	user-select: all !important
}

.user-select-auto {
	-webkit-user-select: auto !important;
	-moz-user-select: auto !important;
	-ms-user-select: auto !important;
	user-select: auto !important
}

.user-select-none {
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important
}

.pe-none {
	pointer-events: none !important
}

.pe-auto {
	pointer-events: auto !important
}

.rounded {
	border-radius: var(--bs-border-radius) !important
}

.rounded-0 {
	border-radius: 0 !important
}

.rounded-1 {
	border-radius: var(--bs-border-radius-sm) !important
}

.rounded-2 {
	border-radius: var(--bs-border-radius) !important
}

.rounded-3 {
	border-radius: var(--bs-border-radius-lg) !important
}

.rounded-4 {
	border-radius: var(--bs-border-radius-xl) !important
}

.rounded-5 {
	border-radius: var(--bs-border-radius-2xl) !important
}

.rounded-circle {
	border-radius: 50% !important
}

.rounded-pill {
	border-radius: var(--bs-border-radius-pill) !important
}

.rounded-top {
	border-top-left-radius: var(--bs-border-radius) !important
}

.rounded-end,
.rounded-top {
	border-top-right-radius: var(--bs-border-radius) !important
}

.rounded-bottom,
.rounded-end {
	border-bottom-right-radius: var(--bs-border-radius) !important
}

.rounded-bottom,
.rounded-start {
	border-bottom-left-radius: var(--bs-border-radius) !important
}

.rounded-start {
	border-top-left-radius: var(--bs-border-radius) !important
}

.visible {
	visibility: visible !important
}

.invisible {
	visibility: hidden !important
}

@media(min-width: 576px) {
	.float-sm-start {
		float: left !important
	}

	.float-sm-end {
		float: right !important
	}

	.float-sm-none {
		float: none !important
	}

	.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-table {
		display: table !important
	}

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

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

	.d-sm-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important
	}

	.d-sm-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important
	}

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

	.flex-sm-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important
	}

	.flex-sm-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important
	}

	.flex-sm-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important
	}

	.flex-sm-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important
	}

	.flex-sm-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important
	}

	.flex-sm-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important
	}

	.flex-sm-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important
	}

	.flex-sm-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important
	}

	.flex-sm-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important
	}

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

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

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

	.justify-content-sm-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important
	}

	.justify-content-sm-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important
	}

	.justify-content-sm-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important
	}

	.justify-content-sm-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important
	}

	.justify-content-sm-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important
	}

	.justify-content-sm-evenly {
		-webkit-box-pack: space-evenly !important;
		-ms-flex-pack: space-evenly !important;
		justify-content: space-evenly !important
	}

	.align-items-sm-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important
	}

	.align-items-sm-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important
	}

	.align-items-sm-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important
	}

	.align-items-sm-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important
	}

	.align-items-sm-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important
	}

	.align-content-sm-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important
	}

	.align-content-sm-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important
	}

	.align-content-sm-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important
	}

	.align-content-sm-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important
	}

	.align-content-sm-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important
	}

	.align-content-sm-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important
	}

	.align-self-sm-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important
	}

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

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

	.align-self-sm-center {
		-ms-flex-item-align: center !important;
		align-self: center !important
	}

	.align-self-sm-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important
	}

	.align-self-sm-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important
	}

	.order-sm-first {
		-webkit-box-ordinal-group: 0 !important;
		-ms-flex-order: -1 !important;
		order: -1 !important
	}

	.order-sm-0 {
		-webkit-box-ordinal-group: 1 !important;
		-ms-flex-order: 0 !important;
		order: 0 !important
	}

	.order-sm-1 {
		-webkit-box-ordinal-group: 2 !important;
		-ms-flex-order: 1 !important;
		order: 1 !important
	}

	.order-sm-2 {
		-webkit-box-ordinal-group: 3 !important;
		-ms-flex-order: 2 !important;
		order: 2 !important
	}

	.order-sm-3 {
		-webkit-box-ordinal-group: 4 !important;
		-ms-flex-order: 3 !important;
		order: 3 !important
	}

	.order-sm-4 {
		-webkit-box-ordinal-group: 5 !important;
		-ms-flex-order: 4 !important;
		order: 4 !important
	}

	.order-sm-5 {
		-webkit-box-ordinal-group: 6 !important;
		-ms-flex-order: 5 !important;
		order: 5 !important
	}

	.order-sm-last {
		-webkit-box-ordinal-group: 7 !important;
		-ms-flex-order: 6 !important;
		order: 6 !important
	}

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

	.m-sm-1 {
		margin: .25rem !important
	}

	.m-sm-2 {
		margin: .5rem !important
	}

	.m-sm-3 {
		margin: 1rem !important
	}

	.m-sm-4 {
		margin: 1.5rem !important
	}

	.m-sm-5 {
		margin: 3rem !important
	}

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

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

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

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

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

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

	.mx-sm-5 {
		margin-right: 3rem !important;
		margin-left: 3rem !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: .25rem !important;
		margin-bottom: .25rem !important
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.p-sm-0 {
		padding: 0 !important
	}

	.p-sm-1 {
		padding: .25rem !important
	}

	.p-sm-2 {
		padding: .5rem !important
	}

	.p-sm-3 {
		padding: 1rem !important
	}

	.p-sm-4 {
		padding: 1.5rem !important
	}

	.p-sm-5 {
		padding: 3rem !important
	}

	.px-sm-0 {
		padding-right: 0 !important;
		padding-left: 0 !important
	}

	.px-sm-1 {
		padding-right: .25rem !important;
		padding-left: .25rem !important
	}

	.px-sm-2 {
		padding-right: .5rem !important;
		padding-left: .5rem !important
	}

	.px-sm-3 {
		padding-right: 1rem !important;
		padding-left: 1rem !important
	}

	.px-sm-4 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important
	}

	.px-sm-5 {
		padding-right: 3rem !important;
		padding-left: 3rem !important
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.gap-sm-1 {
		gap: .25rem !important
	}

	.gap-sm-2 {
		gap: .5rem !important
	}

	.gap-sm-3 {
		gap: 1rem !important
	}

	.gap-sm-4 {
		gap: 1.5rem !important
	}

	.gap-sm-5 {
		gap: 3rem !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) {
	.float-md-start {
		float: left !important
	}

	.float-md-end {
		float: right !important
	}

	.float-md-none {
		float: none !important
	}

	.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-table {
		display: table !important
	}

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

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

	.d-md-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important
	}

	.d-md-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important
	}

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

	.flex-md-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important
	}

	.flex-md-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important
	}

	.flex-md-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important
	}

	.flex-md-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important
	}

	.flex-md-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important
	}

	.flex-md-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important
	}

	.flex-md-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important
	}

	.flex-md-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important
	}

	.flex-md-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important
	}

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

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

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

	.justify-content-md-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important
	}

	.justify-content-md-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important
	}

	.justify-content-md-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important
	}

	.justify-content-md-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important
	}

	.justify-content-md-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important
	}

	.justify-content-md-evenly {
		-webkit-box-pack: space-evenly !important;
		-ms-flex-pack: space-evenly !important;
		justify-content: space-evenly !important
	}

	.align-items-md-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important
	}

	.align-items-md-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important
	}

	.align-items-md-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important
	}

	.align-items-md-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important
	}

	.align-items-md-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important
	}

	.align-content-md-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important
	}

	.align-content-md-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important
	}

	.align-content-md-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important
	}

	.align-content-md-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important
	}

	.align-content-md-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important
	}

	.align-content-md-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important
	}

	.align-self-md-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important
	}

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

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

	.align-self-md-center {
		-ms-flex-item-align: center !important;
		align-self: center !important
	}

	.align-self-md-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important
	}

	.align-self-md-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important
	}

	.order-md-first {
		-webkit-box-ordinal-group: 0 !important;
		-ms-flex-order: -1 !important;
		order: -1 !important
	}

	.order-md-0 {
		-webkit-box-ordinal-group: 1 !important;
		-ms-flex-order: 0 !important;
		order: 0 !important
	}

	.order-md-1 {
		-webkit-box-ordinal-group: 2 !important;
		-ms-flex-order: 1 !important;
		order: 1 !important
	}

	.order-md-2 {
		-webkit-box-ordinal-group: 3 !important;
		-ms-flex-order: 2 !important;
		order: 2 !important
	}

	.order-md-3 {
		-webkit-box-ordinal-group: 4 !important;
		-ms-flex-order: 3 !important;
		order: 3 !important
	}

	.order-md-4 {
		-webkit-box-ordinal-group: 5 !important;
		-ms-flex-order: 4 !important;
		order: 4 !important
	}

	.order-md-5 {
		-webkit-box-ordinal-group: 6 !important;
		-ms-flex-order: 5 !important;
		order: 5 !important
	}

	.order-md-last {
		-webkit-box-ordinal-group: 7 !important;
		-ms-flex-order: 6 !important;
		order: 6 !important
	}

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

	.m-md-1 {
		margin: .25rem !important
	}

	.m-md-2 {
		margin: .5rem !important
	}

	.m-md-3 {
		margin: 1rem !important
	}

	.m-md-4 {
		margin: 1.5rem !important
	}

	.m-md-5 {
		margin: 3rem !important
	}

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

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

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

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

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

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

	.mx-md-5 {
		margin-right: 3rem !important;
		margin-left: 3rem !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: .25rem !important;
		margin-bottom: .25rem !important
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.p-md-0 {
		padding: 0 !important
	}

	.p-md-1 {
		padding: .25rem !important
	}

	.p-md-2 {
		padding: .5rem !important
	}

	.p-md-3 {
		padding: 1rem !important
	}

	.p-md-4 {
		padding: 1.5rem !important
	}

	.p-md-5 {
		padding: 3rem !important
	}

	.px-md-0 {
		padding-right: 0 !important;
		padding-left: 0 !important
	}

	.px-md-1 {
		padding-right: .25rem !important;
		padding-left: .25rem !important
	}

	.px-md-2 {
		padding-right: .5rem !important;
		padding-left: .5rem !important
	}

	.px-md-3 {
		padding-right: 1rem !important;
		padding-left: 1rem !important
	}

	.px-md-4 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important
	}

	.px-md-5 {
		padding-right: 3rem !important;
		padding-left: 3rem !important
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.gap-md-1 {
		gap: .25rem !important
	}

	.gap-md-2 {
		gap: .5rem !important
	}

	.gap-md-3 {
		gap: 1rem !important
	}

	.gap-md-4 {
		gap: 1.5rem !important
	}

	.gap-md-5 {
		gap: 3rem !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) {
	.float-lg-start {
		float: left !important
	}

	.float-lg-end {
		float: right !important
	}

	.float-lg-none {
		float: none !important
	}

	.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-table {
		display: table !important
	}

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

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

	.d-lg-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important
	}

	.d-lg-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important
	}

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

	.flex-lg-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important
	}

	.flex-lg-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important
	}

	.flex-lg-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important
	}

	.flex-lg-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important
	}

	.flex-lg-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important
	}

	.flex-lg-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important
	}

	.flex-lg-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important
	}

	.flex-lg-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important
	}

	.flex-lg-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important
	}

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

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

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

	.justify-content-lg-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important
	}

	.justify-content-lg-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important
	}

	.justify-content-lg-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important
	}

	.justify-content-lg-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important
	}

	.justify-content-lg-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important
	}

	.justify-content-lg-evenly {
		-webkit-box-pack: space-evenly !important;
		-ms-flex-pack: space-evenly !important;
		justify-content: space-evenly !important
	}

	.align-items-lg-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important
	}

	.align-items-lg-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important
	}

	.align-items-lg-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important
	}

	.align-items-lg-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important
	}

	.align-items-lg-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important
	}

	.align-content-lg-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important
	}

	.align-content-lg-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important
	}

	.align-content-lg-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important
	}

	.align-content-lg-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important
	}

	.align-content-lg-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important
	}

	.align-content-lg-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important
	}

	.align-self-lg-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important
	}

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

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

	.align-self-lg-center {
		-ms-flex-item-align: center !important;
		align-self: center !important
	}

	.align-self-lg-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important
	}

	.align-self-lg-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important
	}

	.order-lg-first {
		-webkit-box-ordinal-group: 0 !important;
		-ms-flex-order: -1 !important;
		order: -1 !important
	}

	.order-lg-0 {
		-webkit-box-ordinal-group: 1 !important;
		-ms-flex-order: 0 !important;
		order: 0 !important
	}

	.order-lg-1 {
		-webkit-box-ordinal-group: 2 !important;
		-ms-flex-order: 1 !important;
		order: 1 !important
	}

	.order-lg-2 {
		-webkit-box-ordinal-group: 3 !important;
		-ms-flex-order: 2 !important;
		order: 2 !important
	}

	.order-lg-3 {
		-webkit-box-ordinal-group: 4 !important;
		-ms-flex-order: 3 !important;
		order: 3 !important
	}

	.order-lg-4 {
		-webkit-box-ordinal-group: 5 !important;
		-ms-flex-order: 4 !important;
		order: 4 !important
	}

	.order-lg-5 {
		-webkit-box-ordinal-group: 6 !important;
		-ms-flex-order: 5 !important;
		order: 5 !important
	}

	.order-lg-last {
		-webkit-box-ordinal-group: 7 !important;
		-ms-flex-order: 6 !important;
		order: 6 !important
	}

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

	.m-lg-1 {
		margin: .25rem !important
	}

	.m-lg-2 {
		margin: .5rem !important
	}

	.m-lg-3 {
		margin: 1rem !important
	}

	.m-lg-4 {
		margin: 1.5rem !important
	}

	.m-lg-5 {
		margin: 3rem !important
	}

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

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

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

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

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

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

	.mx-lg-5 {
		margin-right: 3rem !important;
		margin-left: 3rem !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: .25rem !important;
		margin-bottom: .25rem !important
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.p-lg-0 {
		padding: 0 !important
	}

	.p-lg-1 {
		padding: .25rem !important
	}

	.p-lg-2 {
		padding: .5rem !important
	}

	.p-lg-3 {
		padding: 1rem !important
	}

	.p-lg-4 {
		padding: 1.5rem !important
	}

	.p-lg-5 {
		padding: 3rem !important
	}

	.px-lg-0 {
		padding-right: 0 !important;
		padding-left: 0 !important
	}

	.px-lg-1 {
		padding-right: .25rem !important;
		padding-left: .25rem !important
	}

	.px-lg-2 {
		padding-right: .5rem !important;
		padding-left: .5rem !important
	}

	.px-lg-3 {
		padding-right: 1rem !important;
		padding-left: 1rem !important
	}

	.px-lg-4 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important
	}

	.px-lg-5 {
		padding-right: 3rem !important;
		padding-left: 3rem !important
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.gap-lg-1 {
		gap: .25rem !important
	}

	.gap-lg-2 {
		gap: .5rem !important
	}

	.gap-lg-3 {
		gap: 1rem !important
	}

	.gap-lg-4 {
		gap: 1.5rem !important
	}

	.gap-lg-5 {
		gap: 3rem !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) {
	.float-xl-start {
		float: left !important
	}

	.float-xl-end {
		float: right !important
	}

	.float-xl-none {
		float: none !important
	}

	.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-table {
		display: table !important
	}

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

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

	.d-xl-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important
	}

	.d-xl-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important
	}

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

	.flex-xl-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important
	}

	.flex-xl-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important
	}

	.flex-xl-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important
	}

	.flex-xl-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important
	}

	.flex-xl-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important
	}

	.flex-xl-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important
	}

	.flex-xl-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important
	}

	.flex-xl-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important
	}

	.flex-xl-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important
	}

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

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

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

	.justify-content-xl-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important
	}

	.justify-content-xl-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important
	}

	.justify-content-xl-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important
	}

	.justify-content-xl-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important
	}

	.justify-content-xl-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important
	}

	.justify-content-xl-evenly {
		-webkit-box-pack: space-evenly !important;
		-ms-flex-pack: space-evenly !important;
		justify-content: space-evenly !important
	}

	.align-items-xl-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important
	}

	.align-items-xl-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important
	}

	.align-items-xl-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important
	}

	.align-items-xl-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important
	}

	.align-items-xl-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important
	}

	.align-content-xl-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important
	}

	.align-content-xl-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important
	}

	.align-content-xl-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important
	}

	.align-content-xl-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important
	}

	.align-content-xl-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important
	}

	.align-content-xl-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important
	}

	.align-self-xl-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important
	}

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

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

	.align-self-xl-center {
		-ms-flex-item-align: center !important;
		align-self: center !important
	}

	.align-self-xl-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important
	}

	.align-self-xl-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important
	}

	.order-xl-first {
		-webkit-box-ordinal-group: 0 !important;
		-ms-flex-order: -1 !important;
		order: -1 !important
	}

	.order-xl-0 {
		-webkit-box-ordinal-group: 1 !important;
		-ms-flex-order: 0 !important;
		order: 0 !important
	}

	.order-xl-1 {
		-webkit-box-ordinal-group: 2 !important;
		-ms-flex-order: 1 !important;
		order: 1 !important
	}

	.order-xl-2 {
		-webkit-box-ordinal-group: 3 !important;
		-ms-flex-order: 2 !important;
		order: 2 !important
	}

	.order-xl-3 {
		-webkit-box-ordinal-group: 4 !important;
		-ms-flex-order: 3 !important;
		order: 3 !important
	}

	.order-xl-4 {
		-webkit-box-ordinal-group: 5 !important;
		-ms-flex-order: 4 !important;
		order: 4 !important
	}

	.order-xl-5 {
		-webkit-box-ordinal-group: 6 !important;
		-ms-flex-order: 5 !important;
		order: 5 !important
	}

	.order-xl-last {
		-webkit-box-ordinal-group: 7 !important;
		-ms-flex-order: 6 !important;
		order: 6 !important
	}

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

	.m-xl-1 {
		margin: .25rem !important
	}

	.m-xl-2 {
		margin: .5rem !important
	}

	.m-xl-3 {
		margin: 1rem !important
	}

	.m-xl-4 {
		margin: 1.5rem !important
	}

	.m-xl-5 {
		margin: 3rem !important
	}

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

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

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

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

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

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

	.mx-xl-5 {
		margin-right: 3rem !important;
		margin-left: 3rem !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: .25rem !important;
		margin-bottom: .25rem !important
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.p-xl-0 {
		padding: 0 !important
	}

	.p-xl-1 {
		padding: .25rem !important
	}

	.p-xl-2 {
		padding: .5rem !important
	}

	.p-xl-3 {
		padding: 1rem !important
	}

	.p-xl-4 {
		padding: 1.5rem !important
	}

	.p-xl-5 {
		padding: 3rem !important
	}

	.px-xl-0 {
		padding-right: 0 !important;
		padding-left: 0 !important
	}

	.px-xl-1 {
		padding-right: .25rem !important;
		padding-left: .25rem !important
	}

	.px-xl-2 {
		padding-right: .5rem !important;
		padding-left: .5rem !important
	}

	.px-xl-3 {
		padding-right: 1rem !important;
		padding-left: 1rem !important
	}

	.px-xl-4 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important
	}

	.px-xl-5 {
		padding-right: 3rem !important;
		padding-left: 3rem !important
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.gap-xl-1 {
		gap: .25rem !important
	}

	.gap-xl-2 {
		gap: .5rem !important
	}

	.gap-xl-3 {
		gap: 1rem !important
	}

	.gap-xl-4 {
		gap: 1.5rem !important
	}

	.gap-xl-5 {
		gap: 3rem !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) {
	.float-xxl-start {
		float: left !important
	}

	.float-xxl-end {
		float: right !important
	}

	.float-xxl-none {
		float: none !important
	}

	.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-table {
		display: table !important
	}

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

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

	.d-xxl-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important
	}

	.d-xxl-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important
	}

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

	.flex-xxl-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important
	}

	.flex-xxl-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important
	}

	.flex-xxl-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important
	}

	.flex-xxl-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important
	}

	.flex-xxl-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important
	}

	.flex-xxl-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important
	}

	.flex-xxl-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important
	}

	.flex-xxl-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important
	}

	.flex-xxl-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important
	}

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

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

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

	.justify-content-xxl-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important
	}

	.justify-content-xxl-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important
	}

	.justify-content-xxl-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important
	}

	.justify-content-xxl-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important
	}

	.justify-content-xxl-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important
	}

	.justify-content-xxl-evenly {
		-webkit-box-pack: space-evenly !important;
		-ms-flex-pack: space-evenly !important;
		justify-content: space-evenly !important
	}

	.align-items-xxl-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important
	}

	.align-items-xxl-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important
	}

	.align-items-xxl-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important
	}

	.align-items-xxl-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important
	}

	.align-items-xxl-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important
	}

	.align-content-xxl-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important
	}

	.align-content-xxl-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important
	}

	.align-content-xxl-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important
	}

	.align-content-xxl-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important
	}

	.align-content-xxl-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important
	}

	.align-content-xxl-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important
	}

	.align-self-xxl-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important
	}

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

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

	.align-self-xxl-center {
		-ms-flex-item-align: center !important;
		align-self: center !important
	}

	.align-self-xxl-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important
	}

	.align-self-xxl-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important
	}

	.order-xxl-first {
		-webkit-box-ordinal-group: 0 !important;
		-ms-flex-order: -1 !important;
		order: -1 !important
	}

	.order-xxl-0 {
		-webkit-box-ordinal-group: 1 !important;
		-ms-flex-order: 0 !important;
		order: 0 !important
	}

	.order-xxl-1 {
		-webkit-box-ordinal-group: 2 !important;
		-ms-flex-order: 1 !important;
		order: 1 !important
	}

	.order-xxl-2 {
		-webkit-box-ordinal-group: 3 !important;
		-ms-flex-order: 2 !important;
		order: 2 !important
	}

	.order-xxl-3 {
		-webkit-box-ordinal-group: 4 !important;
		-ms-flex-order: 3 !important;
		order: 3 !important
	}

	.order-xxl-4 {
		-webkit-box-ordinal-group: 5 !important;
		-ms-flex-order: 4 !important;
		order: 4 !important
	}

	.order-xxl-5 {
		-webkit-box-ordinal-group: 6 !important;
		-ms-flex-order: 5 !important;
		order: 5 !important
	}

	.order-xxl-last {
		-webkit-box-ordinal-group: 7 !important;
		-ms-flex-order: 6 !important;
		order: 6 !important
	}

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

	.m-xxl-1 {
		margin: .25rem !important
	}

	.m-xxl-2 {
		margin: .5rem !important
	}

	.m-xxl-3 {
		margin: 1rem !important
	}

	.m-xxl-4 {
		margin: 1.5rem !important
	}

	.m-xxl-5 {
		margin: 3rem !important
	}

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

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

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

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

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

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

	.mx-xxl-5 {
		margin-right: 3rem !important;
		margin-left: 3rem !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: .25rem !important;
		margin-bottom: .25rem !important
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.p-xxl-0 {
		padding: 0 !important
	}

	.p-xxl-1 {
		padding: .25rem !important
	}

	.p-xxl-2 {
		padding: .5rem !important
	}

	.p-xxl-3 {
		padding: 1rem !important
	}

	.p-xxl-4 {
		padding: 1.5rem !important
	}

	.p-xxl-5 {
		padding: 3rem !important
	}

	.px-xxl-0 {
		padding-right: 0 !important;
		padding-left: 0 !important
	}

	.px-xxl-1 {
		padding-right: .25rem !important;
		padding-left: .25rem !important
	}

	.px-xxl-2 {
		padding-right: .5rem !important;
		padding-left: .5rem !important
	}

	.px-xxl-3 {
		padding-right: 1rem !important;
		padding-left: 1rem !important
	}

	.px-xxl-4 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important
	}

	.px-xxl-5 {
		padding-right: 3rem !important;
		padding-left: 3rem !important
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.gap-xxl-1 {
		gap: .25rem !important
	}

	.gap-xxl-2 {
		gap: .5rem !important
	}

	.gap-xxl-3 {
		gap: 1rem !important
	}

	.gap-xxl-4 {
		gap: 1.5rem !important
	}

	.gap-xxl-5 {
		gap: 3rem !important
	}

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

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

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

@media(min-width: 1600px) {
	.float-dxl-start {
		float: left !important
	}

	.float-dxl-end {
		float: right !important
	}

	.float-dxl-none {
		float: none !important
	}

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

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

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

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

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

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

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

	.d-dxl-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important
	}

	.d-dxl-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important
	}

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

	.flex-dxl-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important
	}

	.flex-dxl-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important
	}

	.flex-dxl-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important
	}

	.flex-dxl-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important
	}

	.flex-dxl-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important
	}

	.flex-dxl-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important
	}

	.flex-dxl-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important
	}

	.flex-dxl-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important
	}

	.flex-dxl-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important
	}

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

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

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

	.justify-content-dxl-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important
	}

	.justify-content-dxl-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important
	}

	.justify-content-dxl-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important
	}

	.justify-content-dxl-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important
	}

	.justify-content-dxl-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important
	}

	.justify-content-dxl-evenly {
		-webkit-box-pack: space-evenly !important;
		-ms-flex-pack: space-evenly !important;
		justify-content: space-evenly !important
	}

	.align-items-dxl-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important
	}

	.align-items-dxl-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important
	}

	.align-items-dxl-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important
	}

	.align-items-dxl-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important
	}

	.align-items-dxl-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important
	}

	.align-content-dxl-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important
	}

	.align-content-dxl-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important
	}

	.align-content-dxl-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important
	}

	.align-content-dxl-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important
	}

	.align-content-dxl-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important
	}

	.align-content-dxl-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important
	}

	.align-self-dxl-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important
	}

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

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

	.align-self-dxl-center {
		-ms-flex-item-align: center !important;
		align-self: center !important
	}

	.align-self-dxl-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important
	}

	.align-self-dxl-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important
	}

	.order-dxl-first {
		-webkit-box-ordinal-group: 0 !important;
		-ms-flex-order: -1 !important;
		order: -1 !important
	}

	.order-dxl-0 {
		-webkit-box-ordinal-group: 1 !important;
		-ms-flex-order: 0 !important;
		order: 0 !important
	}

	.order-dxl-1 {
		-webkit-box-ordinal-group: 2 !important;
		-ms-flex-order: 1 !important;
		order: 1 !important
	}

	.order-dxl-2 {
		-webkit-box-ordinal-group: 3 !important;
		-ms-flex-order: 2 !important;
		order: 2 !important
	}

	.order-dxl-3 {
		-webkit-box-ordinal-group: 4 !important;
		-ms-flex-order: 3 !important;
		order: 3 !important
	}

	.order-dxl-4 {
		-webkit-box-ordinal-group: 5 !important;
		-ms-flex-order: 4 !important;
		order: 4 !important
	}

	.order-dxl-5 {
		-webkit-box-ordinal-group: 6 !important;
		-ms-flex-order: 5 !important;
		order: 5 !important
	}

	.order-dxl-last {
		-webkit-box-ordinal-group: 7 !important;
		-ms-flex-order: 6 !important;
		order: 6 !important
	}

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

	.m-dxl-1 {
		margin: .25rem !important
	}

	.m-dxl-2 {
		margin: .5rem !important
	}

	.m-dxl-3 {
		margin: 1rem !important
	}

	.m-dxl-4 {
		margin: 1.5rem !important
	}

	.m-dxl-5 {
		margin: 3rem !important
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.p-dxl-0 {
		padding: 0 !important
	}

	.p-dxl-1 {
		padding: .25rem !important
	}

	.p-dxl-2 {
		padding: .5rem !important
	}

	.p-dxl-3 {
		padding: 1rem !important
	}

	.p-dxl-4 {
		padding: 1.5rem !important
	}

	.p-dxl-5 {
		padding: 3rem !important
	}

	.px-dxl-0 {
		padding-right: 0 !important;
		padding-left: 0 !important
	}

	.px-dxl-1 {
		padding-right: .25rem !important;
		padding-left: .25rem !important
	}

	.px-dxl-2 {
		padding-right: .5rem !important;
		padding-left: .5rem !important
	}

	.px-dxl-3 {
		padding-right: 1rem !important;
		padding-left: 1rem !important
	}

	.px-dxl-4 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important
	}

	.px-dxl-5 {
		padding-right: 3rem !important;
		padding-left: 3rem !important
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.gap-dxl-1 {
		gap: .25rem !important
	}

	.gap-dxl-2 {
		gap: .5rem !important
	}

	.gap-dxl-3 {
		gap: 1rem !important
	}

	.gap-dxl-4 {
		gap: 1.5rem !important
	}

	.gap-dxl-5 {
		gap: 3rem !important
	}

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

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

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

@media(min-width: 1200px) {
	.fs-1 {
		font-size: 2.5rem !important
	}

	.fs-2 {
		font-size: 2rem !important
	}

	.fs-3 {
		font-size: 1.75rem !important
	}

	.fs-4 {
		font-size: 1.5rem !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-table {
		display: table !important
	}

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

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

	.d-print-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important
	}

	.d-print-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important
	}

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

:root {
	scroll-behavior: auto !important
}

@font-face {
	font-family: Mont;
	src: url(../fonts/4c7026e711d64c22d6c83e6c45694421.woff2) format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: Monschone;
	src: url(../fonts/3b70f4311e5803ca2d7637ff4bea048e.woff2) format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: Mont;
	src: url(../fonts/02201a192f68a83a89cbca8dfe5cfaf2.woff2) format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap
}

body,
html {
	font-family: Mont, sans-serif
}

.block-2__title,
.h1,
.moodboard__title,
.typo--xxl,
h1 {
	font-family: Monschone, serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(2.5rem, 4.95vw, 10rem);
	line-height: 1
}

.site-search__wrap input::-webkit-input-placeholder {
	font-family: Monschone, serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(2.25rem, 4.5vw, 8rem);
	line-height: 1
}

.site-search__wrap input::-moz-placeholder {
	font-family: Monschone, serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(2.25rem, 4.5vw, 8rem);
	line-height: 1
}

.site-search__wrap input:-ms-input-placeholder {
	font-family: Monschone, serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(2.25rem, 4.5vw, 8rem);
	line-height: 1
}

.site-search__wrap input::-ms-input-placeholder {
	font-family: Monschone, serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(2.25rem, 4.5vw, 8rem);
	line-height: 1
}

.aas-hero__title,
.block-3__title,
.block-6__title--2,
.block-6__title--3,
.block-7__title,
.block-c__title,
.block-numbers__box strong,
.freedom-hero__t,
.hero-1__title,
.home-intro__title,
.projects-hero__title,
.site-search__wrap input,
.site-search__wrap input::placeholder,
.typo--xl {
	font-family: Monschone, serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(2.25rem, 4.5vw, 8rem);
	line-height: 1
}

.aas-detail__downloads-t,
.block-3__title.medium,
.block-5__title,
.block-c__title.medium,
.block-contact__title,
.finiture__title,
.gform__top-title,
.typo--l {
	font-family: Monschone, serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(2rem, 3.25vw, 8rem);
	line-height: 1
}

.aas__scheme-title,
.block-1__title,
.block-4__title,
.block-9__title,
.block-faq__title,
.block-maplist .accordion-menu__l,
.block-maplist .results-title,
.footer__t--1,
.footer__t--2,
.header__menu-main a,
.typo--m {
	font-family: Monschone, serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(1.5rem, 2.75vw, 5rem);
	line-height: 1
}

.block-contact__title--2,
.block-maplist__title,
.gform__top-txt,
.map-popup__title,
.news-grid__box-title,
.site-search__result-title,
.typo--n {
	font-family: Mont, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1
}

.aas-hero__sub,
.block-gallery__title,
.block-maplist .results-none,
.finiture__box-t,
.finiture__subtitle,
.freedom-hero__s,
.home-hero__text,
.map-popup__ad,
.projects-block__t,
.typo--s,
.video-grid__box-title {
	font-family: Mont, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5rem
}

.aas-detail__features-desc,
.aas-detail__features-title,
.block-2__index,
.block-4__index,
.block-5__sub,
.block-7__sub,
.block-maplist__sub,
.finiture__box-st,
.h6,
.hero-1__sub,
.infobox h3,
.projects-block__label span,
.site-search__result-sub,
.typo--xs,
h6 {
	font-family: Mont, sans-serif;
	font-size: .875rem;
	line-height: 1
}

.h2,
.h3,
.h4,
.h5,
h2,
h3,
h4,
h5 {
	font-family: Monschone, serif;
	line-height: 1
}

.gwrap {
	padding: 0 clamp(.5rem, 3.75vw, 5rem);
	position: relative
}

@media(max-width: 991.98px) {
	.gwrap.gwrap--mp0 {
		padding: 0
	}
}

.fios,
.stagger-in__el {
	-webkit-filter: blur(8px);
	filter: blur(8px);
	opacity: 0;
	-webkit-transform: translateY(25%);
	transform: translateY(25%)
}

.block-1__cta,
.block-2__mcta,
.block-3__cta,
.block-5__cta,
.block-7__cta,
.block-c__cta,
.block-faq .accordion-content a,
.block-faq__cta,
.cta--1,
.hero-1__cta,
.home-intro__cta {
	--s: 0;
	display: inline-block;
	color: #fff;
	font-size: 1rem;
	text-transform: uppercase;
	text-decoration: none;
	padding: 1rem;
	margin-left: -1rem
}

.block-1__cta:before,
.block-2__mcta:before,
.block-3__cta:before,
.block-5__cta:before,
.block-7__cta:before,
.block-c__cta:before,
.block-faq .accordion-content a:before,
.block-faq__cta:before,
.cta--1:before,
.hero-1__cta:before,
.home-intro__cta:before {
	content: "";
	width: var(--s);
	height: var(--s);
	background: #fff;
	border-radius: 50%;
	position: relative;
	top: -1.5px;
	margin-right: .875rem;
	-webkit-transition: all .6s cubic-bezier(.18, .68, .91, .84);
	transition: all .6s cubic-bezier(.18, .68, .91, .84);
	vertical-align: middle;
	display: inline-block
}

.block-1__cta:hover,
.block-2__mcta:hover,
.block-3__cta:hover,
.block-5__cta:hover,
.block-7__cta:hover,
.block-c__cta:hover,
.block-faq .accordion-content a:hover,
.block-faq__cta:hover,
.cta--1:hover,
.hero-1__cta:hover,
.home-intro__cta:hover {
	color: #fff
}

.block-1__cta:hover:before,
.block-2__mcta:hover:before,
.block-3__cta:hover:before,
.block-5__cta:hover:before,
.block-7__cta:hover:before,
.block-c__cta:hover:before,
.block-faq .accordion-content a:hover:before,
.block-faq__cta:hover:before,
.cta--1:hover:before,
.hero-1__cta:hover:before,
.home-intro__cta:hover:before {
	width: 1.5rem;
	height: 1.5rem
}

.aas-detail__hero-ctas a,
.aas-detail__matc-cta,
.block-f__cta,
.cta--2,
.freedom-hero__cta,
.header__menu-bottom a.store-btn,
.list-materials-wrapMobile a,
.manifesto__cta,
.project-hero__cta {
	color: #000;
	text-decoration: none;
	text-transform: uppercase;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #000;
	border-radius: 2.5rem;
	padding: .75rem 1.25rem .65rem;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

@media(min-width: 992px) {

	.aas-detail__hero-ctas a,
	.aas-detail__matc-cta,
	.block-f__cta,
	.cta--2,
	.freedom-hero__cta,
	.header__menu-bottom a.store-btn,
	.list-materials-wrapMobile a,
	.manifesto__cta,
	.project-hero__cta {
		padding: .75rem 1.5rem .65rem
	}
}

.aas-detail__hero-ctas a svg path,
.aas-detail__matc-cta svg path,
.block-f__cta svg path,
.cta--2 svg path,
.freedom-hero__cta svg path,
.header__menu-bottom a.store-btn svg path,
.list-materials-wrapMobile a svg path,
.manifesto__cta svg path,
.project-hero__cta svg path {
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.aas-detail__hero-ctas a:hover,
.aas-detail__matc-cta:hover,
.block-f__cta:hover,
.cta--2:hover,
.freedom-hero__cta:hover,
.header__menu-bottom a.store-btn:hover,
.list-materials-wrapMobile a:hover,
.manifesto__cta:hover,
.project-hero__cta:hover {
	background: #000;
	color: #fff
}

.aas-detail__hero-ctas a:hover svg path,
.aas-detail__matc-cta:hover svg path,
.block-f__cta:hover svg path,
.cta--2:hover svg path,
.freedom-hero__cta:hover svg path,
.header__menu-bottom a.store-btn:hover svg path,
.list-materials-wrapMobile a:hover svg path,
.manifesto__cta:hover svg path,
.project-hero__cta:hover svg path {
	stroke: #fff
}

.aas-detail__hero-ctas a svg,
.aas-detail__matc-cta svg,
.block-f__cta svg,
.cta--2 svg,
.freedom-hero__cta svg,
.header__menu-bottom a.store-btn svg,
.list-materials-wrapMobile a svg,
.manifesto__cta svg,
.project-hero__cta svg {
	margin-right: .75rem
}

.aas-detail__hero-ctas a img,
.aas-detail__matc-cta img,
.block-f__cta img,
.cta--2 img,
.freedom-hero__cta img,
.header__menu-bottom a.store-btn img,
.list-materials-wrapMobile a img,
.manifesto__cta img,
.project-hero__cta img {
	margin-right: .75rem;
	position: relative;
	top: -1px
}

.aas-detail__hero-ctas a.pdf:hover svg path,
.cta--2.pdf:hover svg path,
.header__menu-bottom a.pdf.store-btn:hover svg path,
.list-materials-wrapMobile a.pdf:hover svg path,
.pdf.aas-detail__matc-cta:hover svg path,
.pdf.block-f__cta:hover svg path,
.pdf.freedom-hero__cta:hover svg path,
.pdf.manifesto__cta:hover svg path,
.pdf.project-hero__cta:hover svg path {
	stroke: none;
	fill: #fff
}

.checkbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.checkbox label {
	position: relative;
	height: 1rem;
	width: 1rem
}

.checkbox label span {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 1px solid grey;
	-webkit-transition: .1s ease-in;
	transition: .1s ease-in;
	cursor: pointer
}

.checkbox label span:after {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
	width: .5rem;
	height: .5rem;
	border-radius: 50%
}

.checkbox label input[type=checkbox] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative
}

.checkbox label input:checked+span:after {
	background: #000
}

.checkbox div {
	margin-left: 1rem;
	position: relative;
	top: 2px;
	color: #595959;
	text-transform: uppercase;
	font-size: .75rem
}

.checkbox div a {
	color: #595959
}

.block-2__title span,
.text-gradient {
	color: #000;
	--wPercent: 50%;
	background-image: -webkit-linear-gradient(90deg, #fff, #fff var(--wPercent), #000 51%, #000);
	background-clip: text;
	-webkit-background-clip: text;
	text-fill-color: transparent;
	-webkit-text-fill-color: transparent
}

.downloads-list {
	list-style: none
}

@media(max-width: 991.98px) {

	.downloads-list__l--1,
	.downloads-list__l--2 {
		text-transform: uppercase
	}

	.downloads-list__l--2 {
		font-size: .875rem;
		position: relative
	}
}

.downloads-list__icomb {
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
	display: inline-block;
	width: auto;
	text-align: center
}

.downloads-list__icomb img {
	margin: 0 !important
}

.downloads-list a {
	border: 1px solid #a6a6a6;
	border-radius: 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 1rem;
	color: #000;
	text-decoration: none;
	margin-bottom: 1rem;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.downloads-list a:last-child {
	margin-bottom: 0
}

@media(min-width: 992px) {
	.downloads-list a {
		border-left: none;
		border-right: none;
		border-top: none;
		border-radius: 0;
		margin-bottom: 0
	}
}

.downloads-list a strong {
	font-weight: 400;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.downloads-list a strong i {
	font-style: normal;
	display: inline-block;
	position: relative
}

.downloads-list a strong i:after {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	height: 1px;
	width: 100%;
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	background: #000
}

.downloads-list a strong img {
	margin-right: 1.5rem;
	position: relative;
	top: -1px
}

.downloads-list a.lock {
	opacity: .5
}

.downloads-list a:hover strong i:after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

.downloads-list--2 {
	list-style: none
}

.downloads-list--2 a {
	border-bottom: 1px solid #a6a6a6;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 1rem;
	color: #000;
	text-decoration: none
}

@media(min-width: 992px) {
	.downloads-list--2 a {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between
	}
}

.downloads-list--2 a img {
	margin-right: 1.5rem
}

.accordion-menu {
	color: #fff;
	padding: 1.5rem 1rem;
	font-size: 1.5rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.accordion-menu__r svg {
	-webkit-transition: all .5s;
	transition: all .5s
}

.accordion-group.active .accordion-menu__r svg {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}

.accordion-content {
	height: 0;
	overflow: hidden;
	font-size: 1rem;
	border-bottom: 1px solid #595959
}

.accordion-content__wrap {
	padding: 1.5rem 1rem
}

.accordion-content.expanded {
	height: 0;
	overflow: hidden
}

.hero__shadow {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .75)), color-stop(75%, hsla(0, 0%, 100%, 0)));
	background: linear-gradient(180deg, rgba(0, 0, 0, .75), hsla(0, 0%, 100%, 0) 75%)
}

.hero__shadow,
.hero__shadow--2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.hero__shadow--2 {
	z-index: 2
}

.breadcrumb {
	z-index: 10;
	pointer-events: all;
	position: absolute;
	left: 0;
	top: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transform: rotate(-90deg) translate3d(-50%, 1rem, 0);
	transform: rotate(-90deg) translate3d(-50%, 1rem, 0);
	font-size: .75rem;
	-webkit-transform-origin: left top;
	transform-origin: left top;
	display: none
}

@media(min-width: 992px) {
	.breadcrumb {
		display: block
	}
}

.breadcrumb i {
	margin: 0 .5rem
}

.breadcrumb a {
	color: #fff;
	text-decoration: none;
	-webkit-transition: all .5s;
	transition: all .5s
}

.breadcrumb a:hover {
	text-decoration: underline
}

.hero-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	width: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.hero-nav a {
	color: #fff;
	text-decoration: none;
	-webkit-transition: all .5s;
	transition: all .5s;
	margin-left: 2.5rem
}

.hero-nav a:first-child {
	margin-left: 0
}

.hero-nav a:hover {
	text-decoration: underline
}

.in-image {
	-webkit-transform: translate3d(0, 15%, 0) scale(.75);
	transform: translate3d(0, 15%, 0) scale(.75)
}

.spacer {
	padding-bottom: 5rem
}

.content__inner {
	position: relative
}

.pin-spacer {
	pointer-events: none
}

.ctast {
	--s: 1rem
}

.dolly,
.parallax-mask,
.wh-100 {
	width: 100%;
	height: 100%
}

.wh-100 {
	-webkit-transform: none !important;
	transform: none !important
}

.line-height-125 {
	line-height: 1.25
}

.line-height-150 {
	line-height: 1.5
}

input[type=email].input--1,
input[type=text].input--1 {
	color: #000;
	background: #f2f2f2;
	height: 4rem;
	border-radius: 10rem;
	border: none;
	width: 100%;
	padding: 0 2rem;
	text-transform: uppercase
}

input[type=email].input--1::-webkit-input-placeholder,
input[type=text].input--1::-webkit-input-placeholder {
	color: #a6a6a6
}

input[type=email].input--1::-moz-placeholder,
input[type=text].input--1::-moz-placeholder {
	color: #a6a6a6
}

input[type=email].input--1:-ms-input-placeholder,
input[type=text].input--1:-ms-input-placeholder {
	color: #a6a6a6
}

input[type=email].input--1::-ms-input-placeholder,
input[type=text].input--1::-ms-input-placeholder {
	color: #a6a6a6
}

input[type=email].input--1::placeholder,
input[type=text].input--1::placeholder {
	color: #a6a6a6
}

input[type=email].input--1.wpcf7-not-valid,
input[type=text].input--1.wpcf7-not-valid {
	background: rgba(215, 76, 76, .1)
}

input[type=email].input--1.wpcf7-not-valid.light,
input[type=text].input--1.wpcf7-not-valid.light {
	background: #f2f2f2
}

input[type=email].input--1.wpcf7-not-valid::-webkit-input-placeholder,
input[type=text].input--1.wpcf7-not-valid::-webkit-input-placeholder {
	color: #d74c4c
}

input[type=email].input--1.wpcf7-not-valid::-moz-placeholder,
input[type=text].input--1.wpcf7-not-valid::-moz-placeholder {
	color: #d74c4c
}

input[type=email].input--1.wpcf7-not-valid:-ms-input-placeholder,
input[type=text].input--1.wpcf7-not-valid:-ms-input-placeholder {
	color: #d74c4c
}

input[type=email].input--1.wpcf7-not-valid::-ms-input-placeholder,
input[type=text].input--1.wpcf7-not-valid::-ms-input-placeholder {
	color: #d74c4c
}

input[type=email].input--1.wpcf7-not-valid::placeholder,
input[type=text].input--1.wpcf7-not-valid::placeholder {
	color: #d74c4c
}

input[type=email].input--2,
input[type=text].input--2 {
	background: hsla(0, 0%, 100%, .1);
	color: #fff;
	height: 4rem;
	border-radius: 3rem;
	border: none;
	width: 100%;
	padding: 0 2rem;
	text-transform: uppercase
}

input[type=email].input--2::-webkit-input-placeholder,
input[type=text].input--2::-webkit-input-placeholder {
	color: #fff
}

input[type=email].input--2::-moz-placeholder,
input[type=text].input--2::-moz-placeholder {
	color: #fff
}

input[type=email].input--2:-ms-input-placeholder,
input[type=text].input--2:-ms-input-placeholder {
	color: #fff
}

input[type=email].input--2::-ms-input-placeholder,
input[type=text].input--2::-ms-input-placeholder {
	color: #fff
}

input[type=email].input--2::placeholder,
input[type=text].input--2::placeholder {
	color: #fff
}

input[type=email].input--2.light,
input[type=text].input--2.light {
	background: #f2f2f2;
	color: #000
}

input[type=email].input--2.light::-webkit-input-placeholder,
input[type=text].input--2.light::-webkit-input-placeholder {
	color: #a6a6a6
}

input[type=email].input--2.light::-moz-placeholder,
input[type=text].input--2.light::-moz-placeholder {
	color: #a6a6a6
}

input[type=email].input--2.light:-ms-input-placeholder,
input[type=text].input--2.light:-ms-input-placeholder {
	color: #a6a6a6
}

input[type=email].input--2.light::-ms-input-placeholder,
input[type=text].input--2.light::-ms-input-placeholder {
	color: #a6a6a6
}

input[type=email].input--2.light::placeholder,
input[type=text].input--2.light::placeholder {
	color: #a6a6a6
}

input[type=email].input--2.wpcf7-not-valid,
input[type=text].input--2.wpcf7-not-valid {
	background: rgba(215, 76, 76, .1)
}

input[type=email].input--2.wpcf7-not-valid.light,
input[type=text].input--2.wpcf7-not-valid.light {
	background: #f2f2f2
}

input[type=email].input--2.wpcf7-not-valid::-webkit-input-placeholder,
input[type=text].input--2.wpcf7-not-valid::-webkit-input-placeholder {
	color: #d74c4c
}

input[type=email].input--2.wpcf7-not-valid::-moz-placeholder,
input[type=text].input--2.wpcf7-not-valid::-moz-placeholder {
	color: #d74c4c
}

input[type=email].input--2.wpcf7-not-valid:-ms-input-placeholder,
input[type=text].input--2.wpcf7-not-valid:-ms-input-placeholder {
	color: #d74c4c
}

input[type=email].input--2.wpcf7-not-valid::-ms-input-placeholder,
input[type=text].input--2.wpcf7-not-valid::-ms-input-placeholder {
	color: #d74c4c
}

input[type=email].input--2.wpcf7-not-valid::placeholder,
input[type=text].input--2.wpcf7-not-valid::placeholder {
	color: #d74c4c
}

input[type=email].input--1[disabled],
input[type=email].input--2[disabled],
input[type=text].input--1[disabled],
input[type=text].input--2[disabled] {
	opacity: .75
}

textarea.input--2 {
	background: hsla(0, 0%, 100%, .1);
	color: #fff;
	height: 12rem;
	border-radius: 3rem;
	border: none;
	width: 100%;
	padding: 1.25rem 2rem;
	text-transform: uppercase
}

textarea.input--2::-webkit-input-placeholder {
	color: #fff
}

textarea.input--2::-moz-placeholder {
	color: #fff
}

textarea.input--2:-ms-input-placeholder {
	color: #fff
}

textarea.input--2::-ms-input-placeholder {
	color: #fff
}

textarea.input--2::placeholder {
	color: #fff
}

textarea.input--2.light {
	background: #f2f2f2;
	color: #000
}

textarea.input--2.light::-webkit-input-placeholder {
	color: #a6a6a6
}

textarea.input--2.light::-moz-placeholder {
	color: #a6a6a6
}

textarea.input--2.light:-ms-input-placeholder {
	color: #a6a6a6
}

textarea.input--2.light::-ms-input-placeholder {
	color: #a6a6a6
}

textarea.input--2.light::placeholder {
	color: #a6a6a6
}

.custom-select {
	position: relative
}

.custom-select.custom-select--2 {
	display: inline-block
}

.custom-select.custom-select--2 .select-selected {
	padding-right: 4rem;
	background: #fff;
	border: 1px solid #000;
	color: #000;
	height: 3rem;
	padding-top: .125rem
}

.custom-select.custom-select--2 .select-items {
	bottom: calc(100% + .5rem);
	top: auto;
	border: 1px solid #000;
	background: #fff
}

.custom-select.custom-select--2 .select-items div {
	height: 3rem;
	padding-top: .125rem
}

.custom-select select {
	display: none
}

.custom-autocomplete {
	position: relative
}

.select-selected {
	border: none;
	height: 4rem;
	color: #a6a6a6;
	background: #f2f2f2;
	border-radius: 10rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 2rem;
	text-transform: uppercase
}

.select-selected:after {
	position: absolute;
	content: "";
	top: 50%;
	right: 2rem;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
	width: 12px;
	height: 6px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjciIHZpZXdCb3g9IjAgMCAxMyA3IiB3aWR0aD0iMTMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTEyIC44OTQ1MzEtNS41IDUuMjEwNTI5LTUuNS01LjIxMDUzIiBzdHJva2U9IiMwMDAiLz48L3N2Zz4=);
	background-position: 50%;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.select-selected.select-arrow-active:after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}

.autocomplete-items div,
.select-items div {
	color: #000;
	padding: 0 2rem;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	font-size: .875rem;
	letter-spacing: .125rem;
	height: 4rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 2rem
}

.autocomplete-items,
.select-items {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99;
	background: #f2f2f2;
	border-radius: 2rem;
	max-height: 24rem;
	overflow: scroll
}

.autocomplete-items div.disabled,
.select-items div.disabled {
	opacity: .5;
	pointer-events: none
}

.autocomplete-items div.same-as-selected,
.select-hide,
.select-items div.same-as-selected {
	display: none
}

.autocomplete-items div:hover,
.same-as-selected,
.select-items div:hover {
	background-color: rgba(0, 0, 0, .1)
}

.custom-checkbox {
	text-transform: uppercase;
	font-size: .875rem;
	letter-spacing: .125rem;
	height: 2.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px solid;
	padding: .5rem 0
}

.custom-checkbox span {
	position: relative;
	top: -2px
}

.custom-checkbox input {
	position: relative;
	top: -3px
}

.form-1__row {
	margin: .5rem -.25rem 0
}

@media(min-width: 992px) {
	.form-1__row {
		margin: 1rem 0 0
	}
}

.form-1__row:first-child {
	margin: 0
}

.round {
	top: .075rem;
	margin-right: 1rem;
	top: 2px
}

.round,
.round label {
	position: relative;
	width: 1rem;
	height: 1rem
}

.round label {
	border: 1px solid #595959;
	border-radius: 50%
}

.round label:after {
	content: "";
	height: 6px;
	width: 6px;
	opacity: 0;
	position: absolute;
	top: 50%;
	background: #fff;
	border-radius: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0)
}

.round input[type=checkbox] {
	visibility: hidden;
	position: absolute
}

.round input[type=checkbox]:checked+label:after {
	opacity: 1
}

.round.light label:after {
	background: #000
}

@media(min-width: 992px) {
	.col-lg-5x {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 20%
	}
}

.wpcf7-not-valid-tip {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: .5rem 0 0 1rem
}

.privacy-error,
.wpcf7-not-valid-tip {
	color: #d74c4c;
	font-size: .75rem;
	font-weight: 400;
	text-transform: uppercase
}

.privacy-error {
	display: block;
	position: absolute;
	left: 0;
	top: 100%;
	opacity: 0
}

.wpcf7 form .wpcf7-response-output {
	color: #000;
	border-top: none;
	border-left: none;
	border-right: none;
	padding-left: 0;
	padding-right: 0;
	text-align: center;
	width: auto;
	display: inline-block
}

.site-search {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #595959;
	z-index: 1200;
	overflow: auto;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0)
}

.site-search__results {
	padding-top: 5rem;
	padding-bottom: 5rem
}

.site-search__input {
	position: relative
}

.site-search__input-res {
	position: absolute;
	top: 100%;
	left: 0;
	padding-top: 1.25rem;
	text-transform: uppercase;
	overflow: hidden
}

.site-search__input-resWrap {
	-webkit-transform: translateY(100%);
	transform: translateY(100%)
}

.site-search__input-res strong {
	color: #a6a6a6;
	font-weight: 400
}

.site-search__input-cta {
	position: absolute;
	top: 50%;
	right: 0;
	color: #fff;
	text-decoration: none
}

.site-search__input-cta span {
	text-transform: uppercase
}

.site-search__input-cta strong {
	position: relative
}

.site-search__input-cta .svg-e {
	opacity: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0)
}

.site-search__input-cta:hover {
	color: #fff
}

.site-search__input-cta span {
	margin-right: 1rem
}

.site-search__wrap {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%
}

.site-search__wrap input {
	background: none;
	width: 100%;
	height: 5rem;
	border: none;
	border-bottom: 1px solid #fff;
	line-height: 1;
	color: #fff;
	font-size: clamp(2.25rem, 4.5vw, 4rem)
}

.site-search__wrap input:focus {
	outline: none
}

.site-search__wrap input::-webkit-input-placeholder {
	font-size: clamp(2.25rem, 4.5vw, 4rem);
	line-height: 1
}

.site-search__wrap input::-moz-placeholder {
	font-size: clamp(2.25rem, 4.5vw, 4rem);
	line-height: 1
}

.site-search__wrap input:-ms-input-placeholder {
	font-size: clamp(2.25rem, 4.5vw, 4rem);
	line-height: 1
}

.site-search__wrap input::-ms-input-placeholder {
	font-size: clamp(2.25rem, 4.5vw, 4rem);
	line-height: 1
}

.site-search__wrap input::placeholder {
	font-size: clamp(2.25rem, 4.5vw, 4rem);
	line-height: 1
}

.site-search__close {
	position: absolute;
	left: 50%;
	top: 2.5rem;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-decoration: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	text-align: center
}

.site-search__close svg {
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.site-search__close span {
	margin: .5rem 0 0;
	display: block
}

.site-search__close:hover {
	color: #fff
}

.site-search__close:hover svg {
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}

.site-search__result {
	color: #fff;
	text-decoration: none;
	display: block;
	margin: 5rem 0 0
}

.site-search__result:hover {
	color: #fff
}

.site-search__result--last {
	margin-bottom: 10rem
}

.site-search__result-sub {
	text-transform: uppercase;
	margin: 0 0 .5rem
}

.site-search__result-title {
	margin: 0 0 1.5rem
}

.gform__form,
.gform__top {
	margin: 6rem 0 0
}

.gform__top {
	color: #000
}

.gform__top-title {
	font-family: Mont, sans-serif;
	line-height: 1.25;
	margin: 0 0 2.5rem
}

.gform__top-txt {
	line-height: 1.25
}

.gform__close {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-decoration: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #000;
	text-align: center
}

.gform__close svg {
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.gform__close span {
	margin: .5rem 0 0;
	display: block
}

.gform__close:hover {
	color: #000
}

.gform__close:hover svg {
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}

.gform-bg {
	background: #000;
	left: 0;
	z-index: 1080;
	opacity: 0
}

.gform-bg,
.gform-ct {
	position: fixed;
	top: 0;
	width: 100vw;
	height: 100vh;
	display: none
}

.gform-ct {
	right: 0;
	background: #fff;
	z-index: 1085;
	padding: 2.5rem;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	overflow: auto
}

@media(min-width: 992px) {
	.gform-ct {
		padding: 2.5rem 6rem;
		width: 50vw
	}
}

.wpcf7-form-control-wrap {
	display: inline-block;
	width: 100%
}

.block-1__anchors a,
.footer__nav a,
.footer__p a,
.footer__ra a,
.link-default {
	position: relative;
	display: inline-block
}

.block-1__anchors a:after,
.footer__nav a:after,
.footer__p a:after,
.footer__ra a:after,
.link-default:after {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	height: 1px;
	width: 100%;
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	background: #000
}

.block-1__anchors a:hover:after,
.footer__nav a:hover:after,
.footer__p a:hover:after,
.footer__ra a:hover:after,
.link-default:hover:after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

.infobox {
	padding: 1rem;
	color: #000
}

.infobox h3 {
	text-transform: uppercase
}

.infobox a {
	color: #000;
	text-decoration: none
}

.infobox a:hover {
	text-decoration: underline
}

.font-ss {
	font-family: Mont, sans-serif !important;
	line-height: 1.25 !important
}

.wpcf7-not-valid-tip:not(:first-of-type) {
	display: none !important
}

.lenis-stopped {
	overflow: hidden
}

.toggle-muted {
	position: absolute;
	bottom: 2rem;
	right: 2.5rem;
	z-index: 99;
	opacity: 0
}

@media(max-width: 991.98px) {
	.toggle-muted {
		bottom: 13.5rem
	}
}

.toggle-muted.active .toggle-muted__bar {
	opacity: 0
}

.video-fs {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	width: 100vw;
	height: 100vh;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	pointer-events: none;
	opacity: 0;
	background: rgba(0, 0, 0, .75)
}

.video-fs.active {
	pointer-events: all;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.video-fs__wrap {
	width: 80%;
	padding-bottom: 56%;
	position: relative
}

.video-fs__wrap .video-iframe__wrap,
.video-fs__wrap iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	max-height: 65vh;
	max-width: 960px;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0)
}

.video-fs__close {
	position: absolute;
	left: 50%;
	top: 5vh;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-decoration: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	text-align: center;
	z-index: 99
}

@media(max-width: 991.98px) {
	.video-fs__close {
		bottom: auto;
		top: 2rem
	}
}

.video-fs__close svg {
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.video-fs__close span {
	margin: .5rem 0 0;
	display: block
}

.video-fs__close:hover {
	color: #fff
}

.video-fs__close:hover svg {
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}

.p1 a,
.pp_link {
	color: #000
}

.header {
	position: fixed;
	width: 100%;
	z-index: 105;
	padding: 1.25rem clamp(.5rem, 3.75vw, 5rem);
	mix-blend-mode: difference;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

@media(min-width: 992px) {
	.header {
		padding: 2.25rem clamp(.5rem, 3.75vw, 5rem)
	}
}

.header.normal-b {
	mix-blend-mode: normal
}

.header.hide {
	-webkit-transform: translateY(-105%);
	transform: translateY(-105%)
}

@media(max-width: 991.98px) {
	.header.hide {
		-webkit-transform: translateY(-180%);
		transform: translateY(-180%)
	}
}

.header__menu {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 106;
	--pl: 2rem
}

@media(min-width: 992px) {
	.header__menu {
		--pl: 1rem
	}
}

@media(min-width: 1400px) {
	.header__menu {
		--pl: 5rem
	}
}

.header__menu-bottom {
	opacity: 0;
	-webkit-filter: blur(8px);
	filter: blur(8px);
	padding-left: var(--pl);
	padding-right: var(--pl);
	margin-bottom: 2.25rem;
	margin-left: -1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

@media(max-width: 991.98px) {
	.header__menu-bottom {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		padding-right: 0
	}
}

.header__menu-bottom a {
	padding: 1.25rem;
	color: #000;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block
}

.header__menu-bottom a span {
	position: relative;
	display: inline-block
}

@media(max-width: 991.98px) {
	.header__menu-bottom a span {
		display: none
	}
}

.header__menu-bottom a span:after {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	height: 1px;
	width: 100%;
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	background: #000
}

.header__menu-bottom a:hover span:after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

.header__menu-bottom a svg {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: 1px;
	margin-right: 1rem
}

.header__menu-bottom a.store-btn svg {
	top: 0
}

.header__menu-bottom a.store-btn:hover .tofill {
	fill: #fff
}

.header__menu-top {
	padding-left: var(--pl);
	margin-top: 2.25rem;
	margin-left: -1rem;
	opacity: 0;
	-webkit-filter: blur(8px);
	filter: blur(8px)
}

@media(max-width: 991.98px) {
	.header__menu-top {
		padding-left: 0;
		margin-left: 0;
		margin-top: 1.25rem
	}
}

.header__menu-top a {
	padding: 1.25rem;
	color: #000;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block
}

.header__menu-top a svg {
	vertical-align: middle;
	top: -1px;
	margin-right: 1rem
}

.header__menu-top a span,
.header__menu-top a svg {
	display: inline-block;
	position: relative
}

.header__menu-top a span:after {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	height: 1px;
	width: 100%;
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	background: #000
}

.header__menu-top a:hover span:after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

.header__menu-main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-left: var(--pl);
	position: relative;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

@media(max-width: 991.98px) {
	.header__menu-main {
		padding-left: .5rem
	}
}

.header__menu-main a {
	text-decoration: none;
	color: #000;
	margin: 2.5rem 0 0;
	display: inline-block;
}

@media(max-width: 991.98px) {
	.header__menu-main a {
		font-family: Mont, sans-serif
	}
}

.header__menu-main a.store-btn {
	font-family: Mont, sans-serif;
	border: 1px solid #000;
	border-radius: 2.5rem;
	padding: .75rem 1.25rem .65rem .75rem;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: .875rem;
	text-transform: uppercase
}

.header__menu-main a.store-btn:before {
	display: none
}

@media(max-width: 991.98px) {
	.header__menu-main a.store-btn {
		margin-left: 1rem
	}
}

.header__menu-main a.store-btn svg {
	margin-right: .5rem
}

.header__menu-main a:before {
	content: "";
	width: 0;
	height: 0;
	background: #000;
	border-radius: 50%;
	position: relative;
	top: -1.5px;
	margin-right: .875rem;
	-webkit-transition: all .6s cubic-bezier(.18, .68, .91, .84);
	transition: all .6s cubic-bezier(.18, .68, .91, .84);
	vertical-align: middle;
	display: inline-block
}

@media(min-width: 992px) {
	.header__menu-main a:hover:before {
		width: 1rem;
		height: 1rem
	}
}

.header__menu-wrap {
	position: absolute;
	transition: all ease 1s;
	top: 0;
	right: 0;
	width: 100vw;
	height: calc(var(--vh, 1vh)*100);
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

@media(min-width: 992px) {
	.header__menu-wrap {
		width: 50vw
	}
}

.header__menu-sub {
	position: absolute;
	top: 8rem;
	left: 5rem;
	width: calc(100% - 2rem);
	height: calc(100% - 8rem);
	background: #dadada;
	z-index: 10;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	color: #000;
	overflow: auto
}

.header__menu-sub a {
	color: #000;
	text-decoration: none
}

@media(max-width: 991.98px) {
	.header__menu-sub {
		top: 0;
		left: 0;
		width: 100%;
		height: 100%
	}

	.header__menu-sub a {
		-webkit-transform: translateY(.5rem);
		transform: translateY(.5rem)
	}
}

.header__menu-subWrap {
	padding: 2rem
}

@media(min-width: 992px) {
	.header__menu-subWrap {
		padding: 2.5rem 5rem
	}
}

.header__menu-subBack {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.header__menu-subBack span {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-transform-origin: left center;
	transform-origin: left center;
	position: relative;
	top: -2px
}

.header__menu-subCurrent {
	text-transform: uppercase;
	margin: 6rem 0 3rem
}

@media(max-height: 790px) {
	.header__menu-subCurrent {
		margin: 3rem 0 1.5rem
	}
}

.header__menu-subNav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

.header__menu-subLink {
	font-size: 1.125rem;
	padding: .5rem 0
}

@media(min-width: 992px) {
	.header__menu-subLink {
		font-size: 1.5rem
	}
}

.header__menu-subLink:before {
	content: "";
	width: 0;
	height: 0;
	background: #000;
	border-radius: 50%;
	position: relative;
	top: -1.5px;
	margin-right: .875rem;
	-webkit-transition: all .6s cubic-bezier(.18, .68, .91, .84);
	transition: all .6s cubic-bezier(.18, .68, .91, .84);
	vertical-align: middle;
	display: inline-block
}

@media(min-width: 992px) {
	.header__menu-subLink:hover:before {
		width: 1rem;
		height: 1rem
	}
}

.header__menu-subLink--1 {
	padding: .5rem 0 .5rem 1.5rem;
	text-transform: uppercase;
	position: relative;
	display: inline-block
}

.header__menu-subLink--1:after {
	content: "";
	position: absolute;
	left: 1.5rem;
	top: calc(100% - .5rem);
	height: 1px;
	width: calc(100% - 1.5rem);
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	background: #000
}

.header__menu-subLink--1:hover:after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

.header__menu-bg {
	position: absolute;
	transition: all ease 1s;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background: #000;
	opacity: 0;
	display: none
}

.header__menu-toggle {
	mix-blend-mode: difference;
	font-family: Monschone, serif;
	text-transform: none;
	font-size: 1.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	text-decoration: none;
	margin: 1.85rem clamp(.5rem, 3.75vw, 5rem);
	padding: 1.25rem;
	opacity: 0;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 110;
	--pl: 2rem
}

.header__menu-toggle.normal-b {
	mix-blend-mode: normal
}

.header__menu-toggle.hide {
	-webkit-transform: translateY(-180%);
	transform: translateY(-180%)
}

.header__menu-toggle.active {
	-webkit-transform: translateY(0) !important;
	transform: translateY(0) !important
}

@media(min-width: 992px) {
	.header__menu-toggle {
		--pl: 5rem
	}
}

@media(max-width: 991.98px) {
	.header__menu-toggle {
		padding-right: 0;
		margin: .85rem clamp(.5rem, 3.75vw, 5rem)
	}
}

.header__menu-toggle span {
	position: relative;
	overflow: hidden;
	padding: 0 .125rem
}

.header__menu-toggle em {
	display: block;
	font-style: normal;
	min-width: 4.75rem;
	text-align: right
}

.header__menu-toggle i {
	position: absolute;
	font-style: normal;
	left: 0;
	top: 100%
}

.header__menu-toggle:hover {
	color: #fff
}

.header__menu-toggle:after {
	content: "";
	width: 2rem;
	height: 2rem;
	background: #fff;
	border-radius: 50%;
	margin-left: .875rem;
	position: relative;
	top: -1.5px;
	-webkit-transition: all .6s cubic-bezier(.18, .68, .91, .84);
	transition: all .6s cubic-bezier(.18, .68, .91, .84)
}

@media(max-width: 991.98px) {
	.header__menu-toggle:after {
		width: 1.25rem;
		height: 1.25rem
	}
}

.header__menu-toggle:hover:after {
	-webkit-transform: scale(1.25);
	transform: scale(1.25)
}

.header__top {
	z-index: 15;
	position: relative
}

.header__logo {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(0, -55%, 0);
	transform: translate3d(0, -55%, 0);
	opacity: 0;
	z-index: 20;
	margin: 1.85rem clamp(1.25rem, 3.75vw, 5rem)
}

.header__logo svg {
	-webkit-transform: scale(1.05) translate3d(-55%, 100%, 0);
	transform: scale(1.05) translate3d(-55%, 100%, 0);
	max-width: 40vw
}

@media(min-width: 992px) {
	.header__logo {
		left: 50% !important;
		-webkit-transform: translate3d(-50%, -70%, 0);
		transform: translate3d(-50%, -70%, 0);
		margin: 0
	}

	.header__logo svg {
		max-width: none;
		-webkit-transform: scale(1.05) translate3d(0, 100%, 0);
		transform: scale(1.05) translate3d(0, 100%, 0)
	}
}

.header__left-menu {
	opacity: 0;
	margin-left: -1.25rem;
	display: none
}

@media(min-width: 992px) {
	.header__left-menu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
}

.header__left-menu a {
	color: #fff;
	text-decoration: none;
	font-size: .875rem;
	text-transform: uppercase;
	padding: 1.25rem;
	position: relative
}

.header__left-menu a:after {
	position: absolute;
	border-radius: 50%;
	content: "";
	width: .75rem;
	height: .75rem;
	top: calc(100% - .5rem);
	left: 50%;
	background: #fff;
	-webkit-transform: scale(0) translate3d(-50%, -50%, 0);
	transform: scale(0) translate3d(-50%, -50%, 0);
	opacity: 0;
	-webkit-transition: all .4s;
	transition: all .4s;
	-webkit-transform-origin: left top;
	transform-origin: left top
}

.header__left-menu a:hover:after {
	opacity: 1;
	-webkit-transform: scale(1) translate3d(-50%, -50%, 0);
	transform: scale(1) translate3d(-50%, -50%, 0)
}

.header__right-menu {
	opacity: 0;
	margin-right: 8rem;
	display: none
}

@media(min-width: 992px) {
	.header__right-menu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
}

.header__right-menu span {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	padding: 1.25rem;
	position: relative
}

.header__right-menu span a.current-lang {
	padding: 0
}

.header__right-menu span a.current-lang b {
	font-weight: 400;
	margin-right: .35rem
}

.header__right-menu span a.current-lang svg {
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.header__right-menu span a.current-lang.open svg {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}

.header__right-menu span ul {
	display: none;
	padding: 0;
	list-style: none;
	position: absolute;
	top: calc(100% - .5rem);
	left: 0;
	margin: 0
}

.header__right-menu span ul li {
	opacity: 0
}

.header__right-menu span ul li a {
	display: inline-block;
	padding: .25rem 1.25rem
}

.header__right-menu a {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	padding: 1.25rem;
	position: relative
}

.header__right-menu a i {
	position: absolute;
	top: 100%;
	left: 50%;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	font-style: normal;
	font-size: .75rem;
	opacity: 0;
	-webkit-transition: all .6s cubic-bezier(.18, .68, .91, .84);
	transition: all .6s cubic-bezier(.18, .68, .91, .84)
}

.header__right-menu a:hover i {
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
	opacity: 1
}

.footer {
	position: relative;
	background: #e0e0e0;
	color: #000;
	padding: 6.5rem 0 2.5rem;
	z-index: 0
}

.footer__scrolltop {
	position: absolute;
	top: 30px;
	border: none;
	padding: 0;
	right: 40px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: transparent;
	pointer-events: all;
	z-index: 10
}

@media(max-width: 767.98px) {
	.footer__scrolltop {
		top: 220px
	}
}

.footer__scrolltop>svg {
	height: 3.5rem;
	background: inherit;
	fill: none
}

.footer__scrolltop>svg * {
	stroke: #000
}

.footer__ra {
	margin-top: 5rem
}

.footer__ra a {
	text-decoration: none;
	color: #000
}

.footer__t--1 {
	line-height: 1.25
}

@media(min-width: 992px) {
	.footer__t--1 {
		margin-bottom: 1.5rem
	}
}

.footer__t--2 {
	line-height: 1.25;
	margin: 3rem 0 2rem
}

@media(min-width: 992px) {
	.footer__t--2 {
		font-size: 2rem;
		margin: 0 0 3rem
	}
}

.footer__nav {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

@media(min-width: 992px) {
	.footer__nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		gap: 1.5rem
	}
}

@media(max-width: 991.98px) {
	.footer__nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 1.5rem
	}
}

@media(max-width: 767.98px) {
	.footer__nav {
		gap: .8rem
	}
}

.footer__nav a,
.footer__p a {
	text-decoration: none;
	color: #000
}

.footer__p a {
	line-height: 2
}

@media(min-width: 992px) {
	.footer__r--2 {
		margin-top: 6.5rem
	}
}

.footer__r--3 {
	font-size: .875rem;
	margin-top: 5rem
}

.footer__r--3 strong {
	text-align: center;
	display: block;
	margin-bottom: .5rem
}

@media(min-width: 992px) {
	.footer__r--3 strong {
		text-align: left;
		margin-bottom: 0
	}
}

.footer__r--3 a {
	text-transform: uppercase;
	text-decoration: none;
	color: #000
}

.footer__credits {
	font-weight: 700;
	text-transform: none;
	position: relative;
	top: -2px
}

.footer__credits svg {
	max-height: 1rem;
	max-width: 100%
}

.footer__credits:hover #we-go {
	fill: #f1b7ff
}

.footer__nl-p {
	margin: 1.5rem 0 0
}

.footer__nl-input {
	border: none;
	border-radius: 2rem;
	background: #f2f2f2;
	padding: 1.5rem 3rem
}

.footer__nl-input::-webkit-input-placeholder {
	text-transform: uppercase
}

.footer__nl-input::-moz-placeholder {
	text-transform: uppercase
}

.footer__nl-input:-ms-input-placeholder {
	text-transform: uppercase
}

.footer__nl-input::-ms-input-placeholder {
	text-transform: uppercase
}

.footer__nl-input::placeholder {
	text-transform: uppercase
}

.footer__links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -1rem
}

.footer__links a {
	padding: .75rem 2rem .7rem;
	color: #000;
	border-radius: 2rem;
	border: 1px solid #a6a6a6;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-bottom: 1rem;
	margin-left: 1rem;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.footer__links a:hover {
	color: #000;
	border-color: #000
}

.mobile-menu-lang {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.mobile-menu-lang a {
	text-decoration: none;
	text-transform: uppercase;
	padding: 1.25rem;
	position: relative
}

.mobile-menu-lang a.current-lang {
	font-family: Monschone, serif !important;
	text-transform: capitalize
}

.mobile-menu-lang a i {
	position: absolute;
	top: 100%;
	left: 50%;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	font-style: normal;
	font-size: .75rem;
	opacity: 0;
	-webkit-transition: all .6s cubic-bezier(.18, .68, .91, .84);
	transition: all .6s cubic-bezier(.18, .68, .91, .84)
}

.mobile-menu-lang span {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	padding: 1.25rem;
	position: relative
}

.mobile-menu-lang span a.current-lang {
	padding: 0
}

.mobile-menu-lang span a.current-lang b {
	font-weight: 400;
	margin-right: .35rem
}

.mobile-menu-lang span a.current-lang svg {
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	top: -.5px
}

.mobile-menu-lang span a.current-lang.open svg {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg)
}

.mobile-menu-lang span ul {
	display: none;
	padding: 0;
	list-style: none;
	position: absolute;
	bottom: calc(100% - .5rem);
	left: 0;
	margin: 0
}

.mobile-menu-lang span ul li {
	opacity: 0
}

.mobile-menu-lang span ul li a {
	display: inline-block;
	padding: .25rem 1.25rem
}

.home-shadow__bg {
	position: absolute;
	top: -25%;
	left: 0;
	width: 100%;
	height: 120%;
	background-size: 100%;
	pointer-events: none;
	background-image: url(48f9d672c00a530d13333b90de418dee.png);
	background-image: -webkit-image-set(url(data:image/avif;base64,AAAAHGZ0eXBhdmlmAAAAAGF2aWZtaWYxbWlhZgAAAZhtZXRhAAAAAAAAACFoZGxyAAAAAAAAAABwaWN0AAAAAAAAAAAAAAAAAAAAAA5waXRtAAAAAAABAAAANGlsb2MAAAAAREAAAgACAAAAAAG8AAEAAAAAAAAEKgABAAAAAAXmAAEAAAAAAAAAOwAAADhpaW5mAAAAAAACAAAAFWluZmUCAAAAAAEAAGF2MDEAAAAAFWluZmUCAAAAAAIAAGF2MDEAAAAA12lwcnAAAACxaXBjbwAAABNjb2xybmNseAACAAIABoAAAAAMYXYxQ4EMHAAAAAAUaXNwZQAAAAAAAAeAAAAOdAAAAA5waXhpAAAAAAEIAAAAOGF1eEMAAAAAdXJuOm1wZWc6bXBlZ0I6Y2ljcDpzeXN0ZW1zOmF1eGlsaWFyeTphbHBoYQAAAAAMYXYxQ4EsAgAAAAAUaXNwZQAAAAAAAAeAAAAOdAAAABBwaXhpAAAAAAMICAgAAAAeaXBtYQAAAAAAAAACAAEEgYYHiAACBIIDhIUAAAAaaXJlZgAAAAAAAAAOYXV4bAACAAEAAQAABG1tZGF0EgAKBxsq+/858KgynAhEgABBFAD5e9X+aPaOHrmMQqSm/b81bkHL1bAIR/Z5qUWK+cFSUjMcVVP4SpQB60jVRvtmQsSqL+aEueWkn8CuSD228fvupRe9FCZJpHLhgt8eR63xEDaK6XPBCKf/VkUYu7mMzYefVo8REB+TrmY+KAoWTLY7yE/WrBbMfxYghBc+K+vAynoBaNS4JNHw5CBj7Y9IAt9tHNxLZN76U0wcxSpP6N2KqL3HWU/tBSHo+n3AGS1G3n+fXUyOyG9MRGsTaBXRdsmFEyayIhV2cHT11KjlMCHfghQdQhCE3sqD9Yc6K3Xe1OUNSNorM2tAcvmb8aOMa12U13LEOo6Tzu8xOh9wQJY/M2V/Xj3MFkSHFSJw+tb0StD/K3RZS2xbYkc1SExBnkUA5mt5gTHJ5vdmf1JXbju04MZP6XWlfaKp54utO9jd9jCpdVN9B+ZtK9JFhWoa3SVybyceQ/CHZLptIWakDEt1anNqVlvuFMIHTjnyQC4spXkbmcMxVwYNK5Ktg4firsTosq2Z8s/UAesC83WP8yOTwdGU3VvB+SvB/K0THMWmtcu1me6LEi30H/4QnspwDLReuJ72NbPvKchQMM/jJ9TAp2nm5ScOagVXo+MgeCUylNqL+DGoCstYRvXgOueGNqqZ/y8vVFv6SwYAQ1BlR+dwSJcjmOU6rDgSaOGhPwFt+1Mfy5AAnFjsZQfav9w0qI6GYsKhFXwxG10yDiU7oA/rT7fRIsH+DytrgpXxK6Gc+zfQa+bVEAZ1EE4KBV3TnZXznbfnj5fvjsIyxoeKdGibP1e1RLpyd0/CEWHY+YyZukoX7cGVkWnFUc05h1nMT+kMmDoanQiPG+CkHFCqXmJDjuipI6Lbj74mov6Y41upKnwsTBOMJlKMUISuRvqZYGwIpliE4lRghushbaBB/5s+ZGs+NCSf9pvNo0n8EqOfgWLT54IvTulw2wLwZwiL6YFU3Boh0gJ3X2JSIRd+OnK1G34ZGSpgjkoXz93gSqixMgKV6+ko5gkZIEaRpE8iKVyELGqaJmRh8L7qkZUCRnbdWpDHPjnGL2ag/i+4XuXbNXYSovcpoBUGQyboeFYqde4xKvFB5Eh35+FXUq7uMgwZ05N/RSq6r75kqw+1xZNLcUhH0XOawE1sjaJGakGq+c2Gnxph2G44YNdGUx10qYHdw/8ts4O8fSIvMTsfHDEQlH5O2UOhvbXDE3QER3mHuSplMj/UVeLDC25EXYK9MYQnW7HLwMB9YjfkZTc7L9MvcBqRPNCo8adkuRjI3SdP7xfyYhElizD/Ifbzf/J88XcEooSCbK7wyxkOoci9rDzJrKGGBCj8gObCuBS0OO5G0z918uJfX7S0QhYV5XvsB/pijGrFYJd7WbudCI21g/pNZgM8VUH6gBIACgo7Kvv/OfCBAQNIMisSAAAAEAOtBJDbDgwLCf8R+pUaIUj3W3OCqKZL7A2Xk3pjz0t5q34X4x7w) type("image/avif"), url(5889adddbe327e199f9b56ed74d162d3.webp) type("image/webp"));
	background-image: image-set(url(data:image/avif;base64,AAAAHGZ0eXBhdmlmAAAAAGF2aWZtaWYxbWlhZgAAAZhtZXRhAAAAAAAAACFoZGxyAAAAAAAAAABwaWN0AAAAAAAAAAAAAAAAAAAAAA5waXRtAAAAAAABAAAANGlsb2MAAAAAREAAAgACAAAAAAG8AAEAAAAAAAAEKgABAAAAAAXmAAEAAAAAAAAAOwAAADhpaW5mAAAAAAACAAAAFWluZmUCAAAAAAEAAGF2MDEAAAAAFWluZmUCAAAAAAIAAGF2MDEAAAAA12lwcnAAAACxaXBjbwAAABNjb2xybmNseAACAAIABoAAAAAMYXYxQ4EMHAAAAAAUaXNwZQAAAAAAAAeAAAAOdAAAAA5waXhpAAAAAAEIAAAAOGF1eEMAAAAAdXJuOm1wZWc6bXBlZ0I6Y2ljcDpzeXN0ZW1zOmF1eGlsaWFyeTphbHBoYQAAAAAMYXYxQ4EsAgAAAAAUaXNwZQAAAAAAAAeAAAAOdAAAABBwaXhpAAAAAAMICAgAAAAeaXBtYQAAAAAAAAACAAEEgYYHiAACBIIDhIUAAAAaaXJlZgAAAAAAAAAOYXV4bAACAAEAAQAABG1tZGF0EgAKBxsq+/858KgynAhEgABBFAD5e9X+aPaOHrmMQqSm/b81bkHL1bAIR/Z5qUWK+cFSUjMcVVP4SpQB60jVRvtmQsSqL+aEueWkn8CuSD228fvupRe9FCZJpHLhgt8eR63xEDaK6XPBCKf/VkUYu7mMzYefVo8REB+TrmY+KAoWTLY7yE/WrBbMfxYghBc+K+vAynoBaNS4JNHw5CBj7Y9IAt9tHNxLZN76U0wcxSpP6N2KqL3HWU/tBSHo+n3AGS1G3n+fXUyOyG9MRGsTaBXRdsmFEyayIhV2cHT11KjlMCHfghQdQhCE3sqD9Yc6K3Xe1OUNSNorM2tAcvmb8aOMa12U13LEOo6Tzu8xOh9wQJY/M2V/Xj3MFkSHFSJw+tb0StD/K3RZS2xbYkc1SExBnkUA5mt5gTHJ5vdmf1JXbju04MZP6XWlfaKp54utO9jd9jCpdVN9B+ZtK9JFhWoa3SVybyceQ/CHZLptIWakDEt1anNqVlvuFMIHTjnyQC4spXkbmcMxVwYNK5Ktg4firsTosq2Z8s/UAesC83WP8yOTwdGU3VvB+SvB/K0THMWmtcu1me6LEi30H/4QnspwDLReuJ72NbPvKchQMM/jJ9TAp2nm5ScOagVXo+MgeCUylNqL+DGoCstYRvXgOueGNqqZ/y8vVFv6SwYAQ1BlR+dwSJcjmOU6rDgSaOGhPwFt+1Mfy5AAnFjsZQfav9w0qI6GYsKhFXwxG10yDiU7oA/rT7fRIsH+DytrgpXxK6Gc+zfQa+bVEAZ1EE4KBV3TnZXznbfnj5fvjsIyxoeKdGibP1e1RLpyd0/CEWHY+YyZukoX7cGVkWnFUc05h1nMT+kMmDoanQiPG+CkHFCqXmJDjuipI6Lbj74mov6Y41upKnwsTBOMJlKMUISuRvqZYGwIpliE4lRghushbaBB/5s+ZGs+NCSf9pvNo0n8EqOfgWLT54IvTulw2wLwZwiL6YFU3Boh0gJ3X2JSIRd+OnK1G34ZGSpgjkoXz93gSqixMgKV6+ko5gkZIEaRpE8iKVyELGqaJmRh8L7qkZUCRnbdWpDHPjnGL2ag/i+4XuXbNXYSovcpoBUGQyboeFYqde4xKvFB5Eh35+FXUq7uMgwZ05N/RSq6r75kqw+1xZNLcUhH0XOawE1sjaJGakGq+c2Gnxph2G44YNdGUx10qYHdw/8ts4O8fSIvMTsfHDEQlH5O2UOhvbXDE3QER3mHuSplMj/UVeLDC25EXYK9MYQnW7HLwMB9YjfkZTc7L9MvcBqRPNCo8adkuRjI3SdP7xfyYhElizD/Ifbzf/J88XcEooSCbK7wyxkOoci9rDzJrKGGBCj8gObCuBS0OO5G0z918uJfX7S0QhYV5XvsB/pijGrFYJd7WbudCI21g/pNZgM8VUH6gBIACgo7Kvv/OfCBAQNIMisSAAAAEAOtBJDbDgwLCf8R+pUaIUj3W3OCqKZL7A2Xk3pjz0t5q34X4x7w) type("image/avif"), url(5889adddbe327e199f9b56ed74d162d3.webp) type("image/webp"))
}

@media(max-width: 991.98px) {
	.home-shadow__bg {
		left: -20%;
		width: 140%;
		opacity: .5
	}
}

.home-hero {
	position: relative;
	height: 100vh;
	min-height: 40rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	overflow: hidden
}

.home-hero__bg {
	position: absolute;
	opacity: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(1.125);
	transform: scale(1.125)
}

.home-hero__bg>img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.home-hero__shadow {
	position: absolute;
	background: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(2.5%, #000), color-stop(50%, hsla(0, 0%, 100%, 0)), color-stop(80%, rgba(0, 0, 0, .790835084)), to(#000));
	background: linear-gradient(180deg, #000, #000 2.5%, hsla(0, 0%, 100%, 0) 50%, rgba(0, 0, 0, .790835084) 80%, #000);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	z-index: 5
}

.home-hero__title {
	text-align: center;
	padding: 0 2rem;
	color: transparent;
	margin-bottom: 1rem;
	opacity: 0;
	-webkit-transform: scale(1.125) translate3d(0, -100%, 0);
	transform: scale(1.125) translate3d(0, -100%, 0);
	z-index: 10;
	position: relative
}

.home-hero__title div {
	-webkit-filter: blur(8px);
	filter: blur(8px)
}

@media(min-width: 992px) {
	.home-hero__title {
		padding: 0 2rem
	}

	.home-hero__title br {
		display: none
	}
}

.home-hero__text {
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 10rem;
	opacity: 0;
	-webkit-transform: translate3d(0, 50%, 0);
	transform: translate3d(0, 50%, 0);
	z-index: 10;
	position: relative;
	visibility: hidden
}

@media(min-width: 768px) {
	.home-hero__text {
		visibility: visible
	}
}

.home__scroll-down {
	opacity: 0;
	width: 13.5rem;
	height: 13.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	top: calc(100vh - 2.5rem);
	top: calc(var(--vh, 1vh)*100 - 2.5rem);
	left: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
	border: 1px solid hsla(0, 0%, 100%, .2);
	border-radius: 50%;
	z-index: 99;
	color: #fff;
	text-decoration: none;
	font-size: .75rem;
	cursor: pointer;
	overflow: hidden
}

@media(min-width: 992px) {
	.home__scroll-down {
		top: 100vh
	}
}

.home__scroll-down:before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-top: 1px solid #fff;
	border-radius: 50%;
	-webkit-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out
}

.home__scroll-down span {
	-webkit-animation: scrollKey 3s ease-in-out infinite;
	animation: scrollKey 3s ease-in-out infinite
}

.home__scroll-down:hover {
	color: #fff
}

.home__scroll-down:hover:before {
	-webkit-transform: rotate(1turn);
	transform: rotate(1turn)
}

.home__scroll-down span {
	position: absolute;
	top: 3.5rem;
	left: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.home__scroll-down i {
	font-style: normal;
	margin-top: .75rem
}

.home-intro {
	padding: 17rem 0 15rem;
	text-align: center;
	pointer-events: all
}

.home-intro__sub {
	font-family: Mont, sans-serif;
	font-size: 1rem;
	margin: 0 0 4rem
}

.home-intro__title {
	margin: 0 0 6rem
}

@media(max-width: 991.98px) {
	.home-intro__title br {
		display: none
	}
}

.home-shadow {
	background: #fff;
	position: relative;
	z-index: 10
}

@-webkit-keyframes scrollKey {
	25% {
		opacity: 0;
		-webkit-transform: translate3d(-50%, 150%, 0);
		transform: translate3d(-50%, 150%, 0)
	}

	50% {
		opacity: 0;
		-webkit-transform: translate3d(-50%, -100%, 0);
		transform: translate3d(-50%, -100%, 0)
	}

	75%,
	to {
		opacity: 1;
		-webkit-transform: translate3d(-50%, -50%, 0);
		transform: translate3d(-50%, -50%, 0)
	}
}

@keyframes scrollKey {
	25% {
		opacity: 0;
		-webkit-transform: translate3d(-50%, 150%, 0);
		transform: translate3d(-50%, 150%, 0)
	}

	50% {
		opacity: 0;
		-webkit-transform: translate3d(-50%, -100%, 0);
		transform: translate3d(-50%, -100%, 0)
	}

	75%,
	to {
		opacity: 1;
		-webkit-transform: translate3d(-50%, -50%, 0);
		transform: translate3d(-50%, -50%, 0)
	}
}

.aas-schema {
	margin: -1px 0
}

.aas-hero {
	height: 100vh;
	height: calc(var(--vh, 1vh)*100);
	min-height: 40rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative
}

.aas-hero__anchors {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	width: 100%;
	text-align: center
}

.aas-hero__anchors a {
	color: #000;
	text-decoration: none;
	padding: 1rem 1.5rem
}

.aas-hero__anchors a span {
	display: inline-block;
	position: relative
}

.aas-hero__anchors a span:after {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	height: 1px;
	width: 100%;
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	background: #000
}

.aas-hero__anchors a:hover {
	color: #000
}

.aas-hero__anchors a:hover span:after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

.aas-hero__bg {
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%
}

.aas-hero__c {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
	border-radius: 50%;
	width: 40vw;
	opacity: 0;
	min-width: 18rem
}

.aas-hero__c span {
	border: 1px solid hsla(0, 0%, 100%, .2);
	border-radius: 50%;
	z-index: 10
}

.aas-hero__c:before,
.aas-hero__c span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.aas-hero__c:before {
	display: block;
	content: "";
	border-top: 1px solid #000;
	border-radius: 50%;
	-webkit-animation: rot 8s infinite;
	animation: rot 8s infinite;
	z-index: 20
}

.aas-hero__c:after {
	content: "";
	display: block;
	padding-bottom: 100%
}

.aas-hero__wrap {
	position: relative
}

.aas-hero__sub {
	text-transform: uppercase;
	margin: 0 0 3rem;
	color: #000;
	text-align: center
}

.aas-hero__title {
	text-align: center;
	margin: 0;
	color: #000;
	padding: 0 1rem
}

@media(max-width: 991.98px) {
	.aas-hero__title br {
		display: none
	}
}

.aas__box {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #000;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	text-transform: uppercase
}

@media(max-width: 991.98px) {
	.aas__box {
		-webkit-transform: translate3d(-50%, -50%, 0);
		transform: translate3d(-50%, -50%, 0)
	}

	.aas__box.aas__typo {
		top: calc(25% + 3rem)
	}

	.aas__box.aas__opens {
		top: calc(50% + 3rem)
	}

	.aas__box.aas__trim {
		top: calc(75% + 3rem)
	}
}

.aas__box.anchor-lnk {
	text-decoration: none
}

.aas__box.anchor-lnk i {
	font-style: normal;
	display: inline-block;
	position: relative
}

.aas__box.anchor-lnk i:after {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	height: 1px;
	width: 100%;
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	background: #000
}

.aas__box.anchor-lnk:hover {
	color: #000
}

.aas__box.anchor-lnk:hover i:after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

.aas__scheme-title {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
	color: #000;
	overflow: hidden;
	white-space: nowrap
}

.aas__scheme-title span {
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	display: inline-block
}

@media(max-width: 991.98px) {
	.aas__scheme-title {
		top: 3rem
	}
}

.aas__circle {
	opacity: 0;
	max-width: 100%;
	height: auto
}

@media(max-width: 991.98px) {
	.aas__circle {
		max-width: 166%;
		width: 166%;
		margin-left: -33%
	}
}

@-webkit-keyframes rot {
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn)
	}
}

@keyframes rot {
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn)
	}
}

.aas-detail__over {
	height: 100vh;
	z-index: 21;
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
	background: #fff;
	overflow: auto
}

.aas-detail__over,
.aas-detail__overBG {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%
}

.aas-detail__overBG {
	z-index: 20;
	height: 100%;
	background: #000;
	opacity: 0;
	display: none
}

.aas-detail__over-close {
	margin-top: 3rem;
	display: block;
	color: #000;
	text-align: center;
	text-decoration: none;
	z-index: 99;
	position: sticky;
	top: 3rem
}

.aas-detail__over-close svg {
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.aas-detail__over-close span {
	margin: .5rem 0 0;
	display: block
}

.aas-detail__over-close:hover {
	color: #000
}

.aas-detail__over-close:hover svg {
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}

.aas-detail__hero {
	position: relative;
	width: 100vw;
	height: 100vh;
	height: calc(var(--vh, 1vh)*100)
}

.aas-detail__heroWrap {
	position: relative;
    height: 100%;
    width: 100%;
    max-height: 100vh;
}

.aas-detail__hero-ctas {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	bottom: 2.5rem;
	left: 2.5rem;
	pointer-events: all
}

.aas-detail__hero-ctas a {
	color: #fff;
	border-color: #fff;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	pointer-events: all;
	display: none;
	margin-left: 1rem
}

.aas-detail__hero-ctas a:first-child {
	margin-left: 0
}

@media(min-width: 992px) {
	.aas-detail__hero-ctas a {
		display: block
	}
}

.aas-detail__hero-ctas a svg path {
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.aas-detail__hero-ctas a:hover {
	color: #000;
	background: #fff
}

.aas-detail__hero-ctas a:hover svg path {
	stroke: none;
	fill: #000
}

.aas-detail__hero-anchors {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	bottom: 2.5rem;
	right: 2.5rem;
	pointer-events: all
}

.aas-detail__hero-anchors a {
	text-decoration: none;
	color: #fff;
	padding: 1rem 1.5rem
}

.aas-detail__hero-anchors a span {
	display: inline-block;
	position: relative
}

.aas-detail__hero-anchors a span:after {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	height: 1px;
	width: 100%;
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	background: #fff
}

.aas-detail__hero-anchors a:hover span:after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

.aas-detail__features {
	background: #fff;
	color: #000;
	text-align: center;
	padding-bottom: 10rem;
	position: relative;
	z-index: 10
}

@media(max-width: 991.98px) {
	.aas-detail__features-wrap {
		border-top: 1px solid #a6a6a6;
		border-bottom: 1px solid #a6a6a6
	}
}

.aas-detail__features-box {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	text-align: left;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 2rem 1rem;
	width: 100%
}

@media(min-width: 992px) {
	.aas-detail__features-box {
		padding: 1rem;
		width: auto
	}
}

.aas-detail__features-title {
	margin: 0 0 .5rem;
	text-transform: uppercase
}

.aas-detail__features-desc {
	color: #a6a6a6
}

.aas-detail__features-img {
	margin-right: 2.5rem
}

@media(min-width: 992px) {
	.aas-detail__features-img {
		margin-right: 1rem;
		min-width: 1.5rem
	}
}

.aas-detail__features-col--c {
	border-top: 1px solid #a6a6a6;
	border-bottom: 1px solid #a6a6a6
}

@media(min-width: 992px) {
	.aas-detail__features-col--c {
		border: 1px solid #a6a6a6;
		border-top: none;
		border-bottom: none
	}
}

.aas-detail__s1 {
	background: #a6a6a6;
	position: relative;
	z-index: 10;
	padding: 2rem 1rem
}

@media(min-width: 992px) {
	.aas-detail__s1 {
		padding: 0
	}
}

.aas-detail__s1-text {
	color: #000;
	text-transform: uppercase;
	margin: 4.5rem 0 2.5rem
}

@media(min-width: 992px) {
	.aas-detail__s1-text {
		margin: 4.5rem 0 0
	}
}

.aas-detail__s1-img {
	width: 128px
}

@media(min-width: 992px) {
	.aas-detail__s1-img {
		width: 204px
	}
}

.aas-detail__matc-desc {
	color: #000;
	text-transform: uppercase;
	margin: 2.5rem 0
}

.aas-detail__matc-cta {
	margin-bottom: 6rem
}

.aas-detail__intro {
	position: relative;
	z-index: 10
}

.aas-detail__downloads {
	background: #fff;
	color: #000;
	padding: 6rem 0
}

.aas-detail__downloads-t {
	font-family: Mont, sans-serif;
	margin: 0 0 2.5rem;
	line-height: 1.25
}

@media(min-width: 992px) {
	.aas-detail__downloads-t {
		margin: 0
	}
}

@media(max-width: 991.98px) {
	.aas-detail__downloads-t {
		font-size: 1.75rem
	}
}

.aas-detail__downloads-sub {
	margin: 0 0 2.5rem
}

.dolly-aa-no {
	height: 100%
}

.block-dynamic--1 {
	padding-bottom: 5rem
}

@media(min-width: 992px) {
	.block-dynamic--1 {
		padding-bottom: 10rem
	}
}

.block-1 {
	padding: 5rem 0;
	position: relative;
	color: #000
}

@media(min-width: 992px) {
	.block-1 {
		padding: 10rem 0
	}
}

.block-1__anchors {
	margin: 2rem 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 10px
}

.block-1__anchors a {
	width: auto;
	color: #000;
	text-decoration: none
}

.block-1__sub {
	margin: 0 0 3rem;
	text-transform: uppercase
}

.block-1__title--2 {
	margin-bottom: 3rem
}

.block-1__img {
	-webkit-transform: translateY(15%);
	transform: translateY(15%)
}

.block-1__text {
	text-transform: uppercase;
	margin-top: 2.5rem
}

@media(min-width: 992px) {
	.block-1__text {
		margin-top: 0
	}
}

.block-1__cta {
	-webkit-filter: invert(1);
	filter: invert(1);
	margin-top: 2rem
}

.block-1.black {
	background: #000;
	color: #fff
}

.block-1.black .block-1__cta {
	-webkit-filter: none;
	filter: none
}

.block-v {
	position: relative
}

.block-v__video {
	left: .75rem;
	top: 50%;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
	width: calc(100% - 1.5rem);
	height: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	z-index: 10;
	--cl1: 20%;
	--cl2: 5%;
	--cl3: 15%;
	-webkit-clip-path: inset(var(--cl2) var(--cl1) var(--cl3) var(--cl1));
	clip-path: inset(var(--cl2) var(--cl1) var(--cl3) var(--cl1))
}

@media(min-width: 992px) {
	.block-v__video {
		--cl1: 32.5%;
		height: 100%
	}
}

.block-v__img--1 {
	margin-left: -2rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

@media(min-width: 992px) {
	.block-v__img--1 {
		margin-left: -4rem;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.block-v__img--2 {
	margin-left: 2rem;
	margin-top: 4rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

@media(min-width: 992px) {
	.block-v__img--2 {
		margin-left: 0;
		margin-top: 0;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.block-v__img--3 {
	-webkit-transform: translateY(50%);
	transform: translateY(50%)
}

@media(min-width: 992px) {
	.block-v__img--3 {
		margin-left: -4rem;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.block-v__img--4 {
	margin-left: 2rem;
	margin-top: 4rem;
	-webkit-transform: translateY(50%);
	transform: translateY(50%)
}

@media(min-width: 992px) {
	.block-v__img--4 {
		margin-top: 0;
		margin-left: 0;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.block-v__row--2 {
	margin-top: 15rem
}

@media(min-width: 992px) {
	.block-v__row--2 {
		margin-top: clamp(10rem, 20vw, 40rem)
	}
}

.block-c {
	padding: 7.5rem 0 5rem;
	text-align: center
}

@media(min-width: 992px) {
	.block-c {
		padding: 17rem 0 10rem
	}
}

.block-c__scarousel {
	padding: 5rem 0;
	position: relative;
	background: #000
}

@media(min-width: 992px) {
	.block-c__scarousel {
		padding: 10rem 0
	}
}

.block-c--2 {
	padding: 6rem 0;
	text-align: center
}

.block-c__sub {
	font-family: Mont, sans-serif;
	font-size: 1rem;
	margin: 0 0 4rem;
	text-transform: uppercase
}

.block-c__title {
	margin: 0 0 3rem;
	padding: 0 1rem
}

@media(min-width: 992px) {
	.block-c__title {
		padding: 0;
		margin: 0 0 6rem
	}
}

@media(max-width: 991.98px) {
	.block-c__title br {
		display: none
	}
}

.block-c__title.medium {
	line-height: 1.25
}

.block-c__dcarousel {
	padding-top: 5rem
}

@media(min-width: 992px) {
	.block-c__dcarousel {
		padding-top: 10rem
	}
}

.block-2 {
	padding: 5rem 0 0
}

@media(min-width: 992px) {
	.block-2 {
		padding: 10rem 0
	}
}

.block-2__over {
	background: rgba(0, 0, 0, .5);
	opacity: 0;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.block-2__over,
.block-2__over-ct {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.block-2__over span {
	top: 50%;
	z-index: 10;
	width: 30%;
	height: 30%;
	border-radius: 50%;
	border: 1px solid #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: .875rem;
	-webkit-transition: all .5s;
	transition: all .5s;
	color: #fff
}

.block-2__over span,
.block-2__title {
	text-transform: uppercase;
	
}

.block-2__title {
	bottom: 6rem;
    margin: 0;
    max-width: 100vw;
    padding: 0 2.5rem;
    z-index: 1;
    position: absolute;
}

@media(max-width: 991.98px) {
	.block-2__title {
		font-size: 2.75rem
	}
}

.block-2__title span {
	display: block;
	-webkit-transform: translateY(100%);
	transform: translateY(100%)
}

.block-2__title.centered {
	top: 50%
}

.block-2__image {
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	width: 100%;
	height: 100%;
	max-height: 100vh;
	-o-object-fit: cover;
	object-fit: cover;
	opacity: 0
}

.block-2__image-ct {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.block-2__image-ct>img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.block-2__image-ct.ready:hover .block-2__over {
	opacity: 1
}

.block-2__image-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden
}

.block-2__imagefull {
	position: absolute;
	top: 0;
	left: 0;
	max-height:100vh;
	max-width: 100vw;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.block-2__imagefull>img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}



.block-2__imagefull.right {
	-webkit-transform: translate3d(15%, 15%, 0) scale(.75);
	transform: translate3d(15%, 15%, 0) scale(.75);
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom
}

@media(min-width: 992px) {
	.block-2__imagefull.right {
		-webkit-transform: translate3d(15%, 15%, 0) scale(.75);
		transform: translate3d(15%, 15%, 0) scale(.75);
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom
	}
}

.block-2__text {
	color: #000;
	text-transform: uppercase
}

.block-2__index {
	color: #000;
	font-weight: 700;
	margin: 2.5rem 0 1.5rem
}

@media(min-width: 992px) {
	.block-2__index {
		margin: 0 0 6rem
	}
}

.block-2__ico {
	margin: 2.5rem 0 0;
	display: inline-block;
	position: relative
}

.block-2__ico span {
	position: absolute;
	top: 50%;
	left: calc(100% + 2.5rem);
	-webkit-transform: translate3d(-25%, -50%, 0);
	transform: translate3d(-25%, -50%, 0);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	opacity: 0;
	color: #000;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	line-height: 1
}

.block-2__ico span strong {
	font-weight: 400;
	white-space: nowrap;
	text-transform: uppercase;
	margin-left: .5rem
}

.block-2__ico span strong i {
	display: block;
	text-transform: none;
	color: #a6a6a6;
	font-size: .875rem;
	font-style: normal;
	margin: .5rem 0 0
}

.block-2__ico img {
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.block-2__mcta {
	-webkit-filter: invert(1);
	filter: invert(1);
	display: block;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid #fff;
	padding-top: 2.5rem
}

@media(min-width: 992px) {
	.block-2__mcta {
		display: none
	}
}

.block-3 {
	padding: 5rem 0;
	text-align: center;
	color: #000
}

@media(min-width: 992px) {
	.block-3 {
		padding: 10rem 0
	}
}

.block-3.black {
	color: #fff
}

.block-3.full-h {
	height: 100vh;
	min-height: 40rem;
	padding: 0
}

.block-3.hero-mar {
	padding: 15rem 0 10rem
}

.block-3__sub {
	font-family: Mont, sans-serif;
	font-size: 1rem;
	margin: 0 0 2rem;
	text-transform: uppercase;
	line-height: 1.5
}

@media(min-width: 992px) {
	.block-3__sub {
		margin: 0 0 4rem
	}
}

.block-3__title {
	margin: 0 0 3rem
}

@media(min-width: 992px) {
	.block-3__title {
		margin: 0 0 6rem
	}
}

.block-3__title.medium {
	line-height: 1.25
}

.block-3__cta {
	-webkit-filter: invert(1);
	filter: invert(1)
}

.block-3.dark {
	color: #fff
}

.block-3.dark .block-3__cta {
	-webkit-filter: none;
	filter: none
}

.block-f {
	text-align: center;
	padding: 6rem 0
}

.block-f__cta {
	color: #fff;
	border-color: #fff
}

.block-f__cta,
.block-f__cta svg path {
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.block-f__cta:hover {
	color: #000;
	background: #fff
}

.block-f__cta:hover svg path {
	stroke: #000
}

.block-f__cta.block-f__cta--2 {
	color: #000;
	border-color: #000
}

.block-f__cta.block-f__cta--2:hover {
	color: #fff;
	background: #000
}

.block-f__cta.block-f__cta--2:hover svg path {
	stroke: #fff
}

.block-f.white {
	background: #fff;
	color: #000
}

.block-f.white .block-f__cta {
	color: #000;
	border-color: #000
}

.block-f.white .block-f__cta svg path {
	stroke: #000
}

.block-f.white .block-f__cta:hover {
	color: #fff;
	background: #000
}

.block-f.white .block-f__cta:hover svg path {
	stroke: #fff
}

.block-4 {
	padding: 5rem 0 0;
	color: #000;
	background: #fff
}

@media(min-width: 992px) {
	.block-4 {
		padding: 7.5rem 0 0
	}
}

.block-4.bg-gray-green .block-4__wrap:after {
	border-bottom: 1px solid #595959
}

.block-4.half-greengray {
	position: relative
}

.block-4.half-greengray .gwrap {
	position: relative;
	z-index: 1
}

.block-4.half-greengray:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 2rem);
	background: #a5a497
}

@media(min-width: 1400px) {
	.block-4.half-greengray:after {
		height: calc(100% - 5rem)
	}
}

.block-4.half-greengray .block-4__wrap:after {
	display: none
}

.block-4__wrap:after {
	content: "";
	border-bottom: 1px solid #a5a497;
	display: block;
	margin-top: 1.5rem
}

.block-4__index {
	display: block;
	margin: 0 0 1.5rem
}

.block-4__title {
	margin: 0 0 2rem
}

.block-4__text {
	text-transform: uppercase
}

.block-4__text a {
	color: #000;
	-webkit-transition: all .5s;
	transition: all .5s;
	text-decoration: none;
	position: relative;
	display: inline-block
}

.block-4__text a:after {
	content: "";
	position: absolute;
	left: 0;
	top: calc(100% - 4px);
	height: 1px;
	width: 100%;
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	background: #000
}

.block-4__text a:hover:after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

.block-faq {
	padding: 10rem 0
}

.block-faq__title {
	text-align: center;
	margin: 0 0 5rem
}

.block-faq__cta {
	margin: 5rem 0 0
}

.block-faq .accordion-content a:before {
	width: 1rem;
	height: 1rem
}

.block-5 {
	background: #fff;
	color: #000;
	text-align: center;
	padding: 5rem 0 0;
	position: relative
}

@media(min-width: 992px) {
	.block-5 {
		padding: 10rem 0 0
	}
}

.block-5.block-5--2 {
	padding: 10rem 0 5rem
}

.block-5__sub {
	text-transform: uppercase;
	margin: 0 0 2.5rem
}

.block-5__title {
	font-family: Mont, sans-serif;
	margin: 0;
	line-height: 1.25
}

@media(max-width: 991.98px) {
	.block-5__title {
		line-height: 1.125;
		font-size: 1.5rem
	}
}

.block-5__img--1 {
	margin: 5rem 0 0
}

.block-5__cta {
	margin: 2.5rem 0 5rem;
	-webkit-filter: invert(1);
	filter: invert(1)
}

.block-numbers {
	background: #fff;
	color: #000;
	text-align: center;
	padding: 5rem 0
}

@media(min-width: 992px) {
	.block-numbers {
		padding: 10rem 0
	}
}

.block-numbers__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.block-numbers__box strong {
	font-weight: 400;
	display: block;
	margin: 0 0 1.5rem
}

.block-numbers__box span {
	text-transform: uppercase;
	line-height: 1;
	display: block
}

.block-6 {
	padding: 5rem 0;
	background: #fff;
	color: #000
}

@media(min-width: 992px) {
	.block-6 {
		padding: 10rem 0
	}
}

.block-6 svg {
	width: 100%;
	height: auto
}

@media(min-width: 992px) {
	.block-6__box--1 {
		-webkit-transform: translate3d(25%, 0, 0);
		transform: translate3d(25%, 0, 0)
	}
}

@media(min-width: 992px) {
	.block-6__box--2 {
		-webkit-transform: translate3d(-25%, 40%, 0);
		transform: translate3d(-25%, 40%, 0)
	}
}

.block-6__title--1 {
	font-family: Mont, sans-serif;
	font-size: 1.5rem;
	margin: 0 0 .5rem
}

@media(min-width: 992px) {
	.block-6__title--1 {
		margin: 0 0 2.5rem
	}
}

.block-6__title--2 {
	margin: 0;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0)
}

.block-6__title--3 {
	margin: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate3d(-50%, 50%, 0);
	transform: translate3d(-50%, 50%, 0)
}

.block-6__schema {
	position: relative
}

@media(min-width: 992px) {
	.block-6__schema--row {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%
	}
}

.block-7 {
	padding: 6rem 0
}

.block-7__sub {
	text-transform: uppercase
}

.block-7__sub,
.block-7__title {
	margin: 0 0 2.5rem
}

.block-7__cta {
	-webkit-filter: invert(1);
	filter: invert(1)
}

.block-7__box--1 {
	margin-top: 4.5rem
}

.block-7__box--2 {
	margin-top: 9rem
}

@media(max-width: 991.98px) {
	.block-7__box--2 {
		margin-top: 4.5rem
	}
}

.block-7__box-t {
	font-family: Mont, sans-serif;
	font-size: 1.5rem;
	margin: 0 0 2.5rem
}

.block-7__banner {
	position: relative;
	display: block;
	margin: 4.5rem 0 0
}

.block-7__banner-cta {
	width: 13.5rem;
	height: 13.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
	border: 1px solid hsla(0, 0%, 100%, .2);
	border-radius: 50%;
	z-index: 99;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
	text-align: center;
	text-transform: uppercase
}

@media(max-width: 991.98px) {
	.block-7__banner-cta {
		width: 7rem;
		height: 7rem;
		font-size: .75rem;
		line-height: 1.15
	}
}

.block-7__banner-cta:before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-top: 1px solid #fff;
	border-radius: 50%;
	-webkit-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out
}

.block-7__banner-cta:hover {
	color: #fff
}

.block-7__banner-cta:hover:before {
	-webkit-transform: rotate(1turn);
	transform: rotate(1turn)
}

.block-7__banner-cta span {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0)
}

@media(max-width: 991.98px) {
	.block-7__banner-cta span {
		padding: 0 1rem
	}
}

.block-p {
	background: #fff;
	color: #000;
	padding: 10rem 0
}

@media(max-width: 991.98px) {
	.block-p {
		padding: 0;
		margin: -1px 0
	}
}

.block-gallery {
	padding: 3rem 0;
	position: relative
}

@media(min-width: 992px) {
	.block-gallery {
		padding: 6rem 0
	}
}

.block-gallery__title {
	text-transform: uppercase;
	text-align: center;
	margin: 0
}

.block-gallery__text {
	color: #000;
	margin: 3rem 0
}

@media(min-width: 992px) {
	.block-gallery__text {
		margin: 5rem 0
	}
}

.block-gallery__img {
	-webkit-transform: translate3d(0, 15%, 0) scale(.75);
	transform: translate3d(0, 15%, 0) scale(.75)
}

.block-gallery__img--1 {
	margin: 3rem 0
}

@media(min-width: 992px) {
	.block-gallery__img--1 {
		margin: 5rem 0
	}
}

.block-gallery__img--2 {
	margin: 0 0 3rem
}

@media(min-width: 992px) {
	.block-gallery__img--2 {
		margin: 0
	}
}

.block-gallery__img>img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.block-gallery__row--1 {
	margin-top: 6rem
}

.block-gallery__row--2 {
	margin-bottom: 6rem
}

.block-8 {
	color: #000
}

.block-8__text {
	font-size: 1.25rem;
	font-weight: 400
}

.block-9 {
	color: #000;
	background: #fff;
	padding: 5rem 0;
	position: relative
}

@media(min-width: 992px) {
	.block-9 {
		padding: 10rem 0
	}
}

.block-9__title {
	margin: 0 0 3rem
}

.block-9__text a {
	color: #fff;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.block-9__text a:hover {
	opacity: .75
}

.block-9__item--1 {
	display: block;
	margin-top: 1rem;
	margin-bottom: 2.5rem;
	text-transform: uppercase;
	text-align: center
}

.block-9__schema {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 5rem 0 0;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

@media(min-width: 992px) {
	.block-9__schema {
		margin: 10rem 0 0
	}
}

.block-9__schema-block {
	width: 50%;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.block-9__schema-block img {
	max-width: 5.625rem
}

@media(min-width: 992px) {
	.block-9__schema-block {
		width: auto;
		-webkit-box-flex: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
		max-width: 25%
	}
}

.block-9__schema-block strong {
	font-weight: 400;
	text-transform: uppercase;
	margin: 1.5rem 0 0;
	width: 20rem;
	text-align: center;
	padding: 0 1rem;
	height: 3rem;
	max-width: 100%
}

.block-9__schema-block:nth-of-type(2) {
	position: relative
}

.block-9__schema-block:nth-of-type(2):after {
	content: "";
	height: 150%;
	width: 1px;
	position: absolute;
	left: -1px;
	background: #000
}

.block-9__schema-block:nth-of-type(3) {
	position: relative
}

.block-9__schema-block:nth-of-type(3):after {
	content: "";
	height: 150%;
	width: 1px;
	position: absolute;
	left: -1px;
	background: #000
}

@media(max-width: 991.98px) {
	.block-9__schema-block:nth-of-type(3) {
		margin-top: 3rem
	}

	.block-9__schema-block:nth-of-type(3):after {
		display: none
	}
}

.block-9__schema-block:nth-of-type(4) {
	position: relative
}

.block-9__schema-block:nth-of-type(4):after {
	content: "";
	height: 150%;
	width: 1px;
	position: absolute;
	left: -1px;
	background: #000
}

@media(max-width: 991.98px) {
	.block-9__schema-block:nth-of-type(4) {
		margin-top: 3rem
	}
}

.block-9.black {
	color: #fff;
	background: #000
}

.block-9.black .block-9__schema-block:after {
	background: #fff
}

.block-map {
	position: relative
}

.block-map__controls {
	width: 100%;
	position: relative;
	z-index: 10
}

@media(min-width: 992px) {
	.block-map__controls {
		-webkit-transform: translate3d(0, -50%, 0);
		transform: translate3d(0, -50%, 0);
		position: absolute;
		top: 0;
		left: 0
	}
}

.block-map__controls-search {
	position: relative
}

.block-map__controls-scta {
	position: absolute;
	right: 2rem;
	top: 50%;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0)
}

.block-maplist {
	background: #fff;
	padding: 5rem 0;
	color: #000
}

.block-maplist .results-template {
	display: none !important
}

.block-maplist .results-list {
	display: none;
	margin-bottom: 120px;
	padding-left: 1rem;
	padding-right: 1rem
}

@media(max-width: 767.98px) {
	.block-maplist .results-list {
		margin-bottom: 60px
	}
}

.block-maplist .results-none {
	text-align: center
}

.block-maplist .results-title {
	margin-bottom: 40px
}

.block-maplist .accordion-menu {
	color: #000
}

.block-maplist .accordion-menu__r svg path {
	stroke: #000
}

.block-maplist .accordion-content__wrap {
	padding-bottom: 0
}

.block-maplist__sub {
	margin: 0 0 .5rem;
	color: #a6a6a6;
	text-transform: uppercase
}

.block-maplist__title {
	margin: 0 0 1rem
}

.block-maplist__ad {
	margin: 0 0 1.25rem
}

.block-maplist__ct {
	font-size: .875rem;
	margin-bottom: 4rem
}

.block-maplist__ct a {
	font-size: .875rem
}

.block-maplist__ct a,
.block-maplist__ct a:hover {
	color: #000;
	text-decoration: none
}

.block-contact {
	padding: 5rem 0;
	color: #fff
}

@media(min-width: 992px) {
	.block-contact {
		padding: 10rem 0
	}
}

.block-contact__title {
	font-family: Mont, sans-serif;
	margin: 0 0 2.5rem
}

.block-contact__title--2 {
	margin: 0 0 3rem;
	color: #000;
	line-height: 1.25;
	text-align: center
}

.block-contact__text {
	font-size: 1.5rem;
	line-height: 1.25
}

.block-contact .pp_link,
.block-contact .wpcf7-response-output {
	color: inherit
}

.block-download {
	background: #fff;
	padding-bottom: 10rem
}

.hero-1 {
	height: 100vh;
	height: calc(var(--vh, 1vh)*100);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	pointer-events: all
}

.hero-1__bg {
	width: 100%;
	height: 100%;
	position: absolute
}

.hero-1__bg>img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.hero-1__sub {
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 2.5rem
}

.hero-1__sub .lineParent {
	padding: 2px 0 0
}

.hero-1__title {
	color: #fff;
	margin: 0;
	text-align: center
}

@media(max-width: 991.98px) {
	.hero-1__title {
		padding: 0 1rem
	}

	.hero-1__title br {
		display: none
	}
}

.hero-1__cta {
	margin: 2.5rem 0 0
}

.flexi {
	padding: 0 0 5rem
}

.flexi__block {
	padding: 2.5rem 0 !important
}

@media(min-width: 992px) {
	.flexi__block {
		padding: 5rem 0 !important
	}
}

.mtm-block {
	margin-top: 5rem
}

@media(min-width: 992px) {
	.mtm-block {
		margin-top: 0
	}
}

@media(max-width: 991.98px) {

	.block-mobile-mp,
	.fix-block-line-mobile {
		padding: 1px 0;
		margin: -1px 0
	}
}

.dcarousel {
	cursor: -webkit-grab;
	cursor: grab;
	width: 100%;
	position: relative;
	z-index: 1;
	min-height:20rem;
}

.dcarousel.is-dragging a {
	pointer-events: none !important
}

.dcarousel:after {
	content: "";
	display: block;
	padding-bottom: 50%
}

@media(min-width: 992px) {
	.dcarousel:after {
		padding-bottom: 30%
	}
}

.dcarousel-controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin: 4rem 0 0;
	padding-right: 2rem
}

.dcarousel-legend {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 2rem
}

.dcarousel-legend strong {
	width: 3rem;
	height: 1px;
	background: #fff;
	margin: 0 .5rem
}

.dcarousel-next,
.dcarousel-prev,
.scarousel-prev {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	border: 1px solid #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all .6s cubic-bezier(.18, .68, .91, .84);
	transition: all .6s cubic-bezier(.18, .68, .91, .84)
}

.dcarousel-next:hover,
.dcarousel-prev:hover,
.scarousel-prev:hover {
	-webkit-transform: scale(1.15);
	transform: scale(1.15)
}

.dcarousel-prev {
	margin-right: 1rem
}

.dcarousel-prev svg {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg)
}

.dcarousel.is-dragging {
	cursor: -webkit-grabbing;
	cursor: grabbing
}

.dcarousel--wrapper {
	position: absolute;
    width: 100%;
	overflow-x: auto;
    width: 100%;
    max-width: 100vw;


	overflow-x: auto; /* Permitir desplazamiento horizontal */
	overflow-y: hidden; /* Ocultar el desplazamiento vertical */
    display: -webkit-inline-box;
	justify-content: center; /* Centrar horizontalmente */
	flex-wrap: nowrap;
}

.dcarousel--wrapper *{
	user-select: none;
}
.dcarousel--item,
.dcarousel--wrapper {
    height: 100%;
    left: 0;
}

.dcarousel--item {
	counter-increment: count;
	position: relative;
	width: 80vw;
	padding: 0 4vw;
}

@media(min-width: 992px) {
	.dcarousel--item {
		width: 55vw
	}
}

.dcarousel--item:nth-child(odd) div {
	-webkit-transform: translateY(50%);
	transform: translateY(50%)
}

.dcarousel--item div {
	width: 100%;
	height: 80%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	overflow: hidden
}

@media(min-width: 992px) {
	.dcarousel--item div:hover {
		cursor: pointer
	}

	.dcarousel--item div:hover a {
		-webkit-transform: scale(1.15);
		transform: scale(1.15)
	}

	.dcarousel--item div:hover span {
		opacity: 1
	}

	.dcarousel--item div:hover i {
		opacity: .5
	}
}

.dcarousel--item i {
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0;
	-webkit-transition: all .5s;
	transition: all .5s;
	z-index: 8;
	width: 100%;
	height: 100%
}

.dcarousel--item strong {
	text-align: left;
	width: 100%;
	display: block;
	font-weight: 400;
	margin: .5rem 0 0
}

.dcarousel--item span {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 10;
	width: 12vw;
	height: 12vw;
	border-radius: 50%;
	border: 1px solid #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-transform: uppercase;
	font-size: .875rem;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
	-webkit-transition: all .5s;
	transition: all .5s;
	opacity: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.dcarousel--item a {
	-webkit-transition: all 1s;
	transition: all 1s;
	display: block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 0;
	border: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	cursor: pointer;
	overflow: hidden;
	pointer-events: none;
	margin: 0;
	color: #fff;
	text-decoration: none
}

.dcarousel--item a,
.dcarousel--item a img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	-webkit-transform-origin: center;
	transform-origin: center
}

.dcarousel--item a img {
	-o-object-fit: cover;
	object-fit: cover;
	vertical-align: middle
}

.mcarousel {
	cursor: -webkit-grab;
	cursor: grab;
	width: 100%;
	position: relative;
	z-index: 1
}

.mcarousel:after {
	content: "";
	display: block;
	padding-bottom: 50%
}

@media(min-width: 992px) {
	.mcarousel:after {
		padding-bottom: 25%
	}
}

.mcarousel-controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin: 6.5rem 0 0;
	padding-right: 2rem
}

.mcarousel-legend {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 2rem;
	color: #000;
	opacity: 0
}

.mcarousel-legend strong {
	width: 3rem;
	height: 1px;
	background: #000;
	margin: 0 .5rem
}

.mcarousel-next,
.mcarousel-prev {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	border: 1px solid #000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all .6s cubic-bezier(.18, .68, .91, .84);
	transition: all .6s cubic-bezier(.18, .68, .91, .84)
}

.mcarousel-next:hover,
.mcarousel-prev:hover {
	-webkit-transform: scale(1.15);
	transform: scale(1.15)
}

.mcarousel-prev {
	margin-right: 1rem
}

.mcarousel-prev svg {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg)
}

.mcarousel.is-dragging {
	cursor: -webkit-grabbing;
	cursor: grabbing
}

.mcarousel--wrapper {
	overflow-x: scroll;
    overflow-y: hidden;
	    display: -webkit-inline-box;
	counter-reset: count;
	position: absolute;
	z-index: 1;
	height: 100%;
	top: 0;
	left: 0;
	width: 100%
}
.mcarousel--item {
    position: relative;
}

.mcarousel--image-a,
.mcarousel--image-b {
	position: absolute
}

.slide{
	position: absolute;
}
.fade-in-1 {
    animation: blink-1 12s infinite; /* Ajustado a 2x más lento */
  }

  .fade-in-2 {
    animation: blink-2 12s infinite; /* Ajustado a 2x más lento */
    animation-delay: 6s; /* Retraso de 3 segundos para el segundo elemento */
  }
  @keyframes blink-1 {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

  @keyframes blink-2 {
    0% {
      opacity:0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

@media(min-width: 992px) {
	.container#m-r {
		display: grid;
		grid-template-columns: 1fr 4fr;
		    gap: 1rem;
	}
	#m-r .mcarousel--wrapper {
		position: relative;
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
		min-height: 30rem;
		gap: 1rem;
		}

		#m-r .mcarousel-controls {
			display: none;
		}
		#m-r .mcarousel--item {
			width: 100%;
			padding: 0;
			min-height: 20rem;
		}
}

.mcarousel--item {
	counter-increment: count;
	z-index: 1;
	top: 0;
	left: 0;
	width: 60vw;
	height: 100%;
	padding: 0 10vw
}

@media(min-width: 992px) {
	.mcarousel--item {
		width: 30vw;
		padding: 0 5vw;
	}
}

.mcarousel--item .mcarousel--image-a {
	left: 0;
	top: 0;
	z-index: 10;
	width: 3rem;
	-webkit-transform: translate3d(-1.5rem, 4.5rem, 0);
	transform: translate3d(-1.5rem, 4.5rem, 0)
}

@media(min-width: 992px) {
	.mcarousel--item .mcarousel--image-a {
		width: 6rem
	}
}

.mcarousel--item .mcarousel--image-b {
	right: 0;
	bottom: 0;
	z-index: 10;
	width: 3.5rem;
	-webkit-transform: translate3d(1.5rem, 1.5rem, 0);
	transform: translate3d(1.5rem, 1.5rem, 0)
}

@media(min-width: 992px) {
	.mcarousel--item .mcarousel--image-b {
		width: 7rem
	}
}

.mcarousel--item:nth-child(2n) .mcarousel--image-a {
	left: auto;
	right: 0;
	-webkit-transform: translate3d(1.5rem, 1.5rem, 0);
	transform: translate3d(1.5rem, 1.5rem, 0);
	width: 3.5rem
}

@media(min-width: 992px) {
	.mcarousel--item:nth-child(2n) .mcarousel--image-a {
		width: 7rem
	}
}

.mcarousel--item:nth-child(2n) .mcarousel--image-b {
	right: auto;
	left: 0;
	width: 3rem
}

@media(min-width: 992px) {
	.mcarousel--item:nth-child(2n) .mcarousel--image-b {
		width: 6rem
	}
}

.mcarousel--item div {
	width: 100%;
	height: 70%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative
}

.mcarousel--item div:hover {
	cursor: pointer
}

@media(min-width: 992px) {
	.mcarousel--item div:hover span:after {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.mcarousel--item span {
	white-space: nowrap;
	position: absolute;
	top: calc(100% + 2.5rem);
	left: 50%;
	z-index: 10;
	text-transform: uppercase;
	font-size: .875rem;
	-webkit-transition: all .5s;
	transition: all .5s;
	opacity: 1;
	color: #000;
	text-align: center;
	width: auto;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.mcarousel--item span:after {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	height: 1px;
	width: 100%;
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	background: #000
}

@media(max-width: 991.98px) {
	.mcarousel--item span {
		white-space: normal;
		width: 100%
	}
}

.mcarousel--item a {
	-webkit-transition: all 1s;
	transition: all 1s;
	display: block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 0;
	border: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	cursor: pointer;
	pointer-events: none;
	margin: 0;
	color: #000;
	text-decoration: none
}

.mcarousel--item a,
.mcarousel--item a .mcarousel--image-z {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	-webkit-transform-origin: center;
	transform-origin: center
}

.mcarousel--item a .mcarousel--image-z {
	-o-object-fit: cover;
	object-fit: cover;
	vertical-align: middle
}

.scarousel {
	cursor: -webkit-grab;
	cursor: grab;
	width: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden
}

.scarousel:after {
	content: "";
	display: block;
	padding-bottom: 50%
}

@media(min-width: 992px) {
	.scarousel:after {
		padding-bottom: 37.5%
	}
}

@media(max-height: 768px) {
	.scarousel:after {
		padding-bottom: 32.5%
	}
}

.scarousel__cta {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
	width: 6rem;
	height: 6rem;
	border: 1px solid hsla(0, 0%, 100%, .25);
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 10
}

@media(min-width: 992px) {
	.scarousel__cta {
		width: 12rem;
		height: 12rem
	}
}

.scarousel__cta div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: .75rem
}

.scarousel__cta div svg {
	margin-left: 1rem
}

.scarousel__cta--2 {
	-webkit-filter: invert(1);
	filter: invert(1)
}

.scarousel-controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin: 4rem 0 0;
	padding-right: 2rem
}

.scarousel-legend {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 2rem
}

.scarousel-legend strong {
	width: 3rem;
	height: 1px;
	background: #fff;
	margin: 0 .5rem
}

.scarousel-next {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	border: 1px solid #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all .6s cubic-bezier(.18, .68, .91, .84);
	transition: all .6s cubic-bezier(.18, .68, .91, .84)
}

.scarousel-next:hover {
	-webkit-transform: scale(1.15);
	transform: scale(1.15)
}

.scarousel-prev {
	margin-right: 1rem
}

.scarousel-prev svg {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg)
}

.scarousel.is-dragging {
	cursor: -webkit-grabbing;
	cursor: grabbing
}

.scarousel--wrapper {
	counter-reset: count;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%
}

.scarousel--item,
.scarousel--wrapper {
	position: absolute;
	z-index: 1;
	height: 100%;
	top: 0;
	left: 0
}

.scarousel--item {
	counter-increment: count;
	width: 80vw;
	padding: 0 1vw
}

.scarousel--item.vertical {
	width: 29vw
}

@media(min-width: 992px) {
	.scarousel--item {
		width: 62vw
	}
}

.scarousel--item div {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	overflow: hidden
}

.scarousel--item span {
	-webkit-transition: all 1s;
	transition: all 1s;
	display: block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 0;
	border: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	overflow: hidden;
	pointer-events: none;
	margin: 0;
	color: #fff;
	text-decoration: none
}

.scarousel--item span,
.scarousel--item span img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	-webkit-transform-origin: center;
	transform-origin: center
}

.scarousel--item span img {
	-o-object-fit: cover;
	object-fit: cover;
	vertical-align: middle
}

@media(max-width: 991.98px) {
	.scarousel:after {
		padding-bottom: 70%
	}

	.scarousel .scarousel--item {
		width: 90vw
	}

	.scarousel .scarousel--item.vertical {
		width: 48vw
	}
}

.tcarousel {
	cursor: -webkit-grab;
	cursor: grab;
	width: 100%;
	position: relative;
	z-index: 1
}

@media(max-width: 991.98px) {
	.tcarousel-ct {
		padding: 1px 0;
		margin: -1px 0
	}
}

.tcarousel:after {
	content: "";
	display: block;
	padding-bottom: 50%
}

@media(min-width: 992px) {
	.tcarousel:after {
		padding-bottom: 28%
	}
}

.tcarousel-controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin: 6.5rem 0 0;
	padding-right: 2rem
}

@media(max-width: 991.98px) {
	.tcarousel-controls {
		padding-left: 2rem
	}
}

.tcarousel-legend {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 2rem;
	color: #000
}

.tcarousel-legend strong {
	width: 3rem;
	height: 1px;
	background: #000;
	margin: 0 .5rem
}

@media(max-width: 991.98px) {
	.tcarousel-legend {
		margin-right: auto
	}
}

.tcarousel-next,
.tcarousel-prev {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	border: 1px solid #000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all .6s cubic-bezier(.18, .68, .91, .84);
	transition: all .6s cubic-bezier(.18, .68, .91, .84)
}

.tcarousel-next:hover,
.tcarousel-prev:hover {
	-webkit-transform: scale(1.15);
	transform: scale(1.15)
}

.tcarousel-prev {
	margin-right: 1rem
}

.tcarousel-prev svg {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg)
}

.tcarousel.is-dragging {
	cursor: -webkit-grabbing;
	cursor: grabbing
}

.tcarousel--wrapper {
	counter-reset: count;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	z-index: 1;
	height: 100%;
	top: 0;
	left: 0;
	width: 100%
}

.tcarousel--image-a,
.tcarousel--image-b,
.tcarousel--item {
	position: absolute
}

.tcarousel--item {
	counter-increment: count;
	z-index: 1;
	top: 0;
	left: 0;
	width: 50vw;
	height: 100%;
	padding: 0 1vw
}

@media(min-width: 992px) {
	.tcarousel--item {
		width: 30vw
	}
}

.tcarousel--item div {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative
}

.tcarousel--item div:hover {
	cursor: pointer
}

@media(min-width: 992px) {
	.tcarousel--item div:hover span:after {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.tcarousel--item div:hover .tcarousel--image-z {
	-webkit-transform: scale(1.05);
	transform: scale(1.05)
}

.tcarousel--item span {
	position: absolute;
	top: calc(100% + 1.5rem);
	left: 50%;
	z-index: 10;
	text-transform: uppercase;
	font-size: .875rem;
	-webkit-transition: all .5s;
	transition: all .5s;
	opacity: 1;
	color: #000;
	text-align: center;
	width: auto;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	white-space: nowrap
}

.tcarousel--item span:after {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	height: 1px;
	width: 100%;
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	background: #000
}

.tcarousel--item a {
	-webkit-transition: all 1s;
	transition: all 1s;
	display: block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 0;
	border: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	cursor: pointer;
	pointer-events: none;
	margin: 0;
	color: #000;
	text-decoration: none;
	overflow: hidden
}

.tcarousel--item a,
.tcarousel--item a .tcarousel--image-z {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	-webkit-transform-origin: center;
	transform-origin: center
}

.tcarousel--item a .tcarousel--image-z {
	-o-object-fit: cover;
	object-fit: cover;
	vertical-align: middle;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.freedom-hero {
	padding-top: 10rem;
	text-align: center;
	background: #fff;
	color: #000;
	padding-bottom: 5rem
}

@media(min-width: 992px) {
	.freedom-hero {
		padding-top: 15rem;
		padding-bottom: 10rem
	}
}

@media(max-width: 991.98px) {
	.freedom-hero.video-hero {
		padding-bottom: 0
	}
}

.freedom-hero.freedom-hero--2 {
	padding-bottom: 5rem
}

.freedom-hero__s {
	text-transform: uppercase;
	margin: 0 0 3rem
}

.freedom-hero__t {
	margin: 0
}

.freedom-hero__t a {
	display: inline-block;
	padding: .5rem 0;
	color: #000;
	text-decoration: none;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	font-size: clamp(2rem, 4.5vw, 8rem)
}

.freedom-hero__t a:hover {
	text-decoration: underline
}

@media(max-width: 991.98px) {
	.freedom-hero__t br {
		display: none
	}
}

.freedom-hero__txt {
	text-transform: uppercase;
	margin: 4rem 0 0
}

.freedom-hero__txt a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.freedom-hero__txt a:hover {
	text-decoration: underline
}

.freedom-hero__cta {
	margin: 3rem 0 0;
	color: #000;
	border-color: #000;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.freedom-hero__cta svg path {
	stroke: #000;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.freedom-hero__cta:hover {
	color: #fff
}

.manifesto {
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#a9aaaf));
	background: linear-gradient(180deg, #fff, #a9aaaf);
	padding-top: 5rem;
	position: relative;
	overflow: hidden
}

.manifesto__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background-size: contain;
	opacity: 0
}

.manifesto-intro,
.manifesto-wrap {
	position: relative
}

.manifesto-intro {
	z-index: 10
}

.manifesto-intro-title {
	position: relative;
	line-height: 1.225
}

.manifesto-intro-img--1 {
	position: relative;
	left: -2rem;
	width: calc(50% + 1.5rem);
	top: 0;
	margin-bottom: 10rem;
	margin-top: -3.5rem
}

@media(min-width: 992px) {
	.manifesto-intro-img--1 {
		margin-bottom: 0;
		margin-top: 0;
		position: absolute;
		left: 4.16666667%;
		width: 12.5rem
	}
}

.manifesto-intro-img--2 {
	position: absolute;
	right: -2rem;
	width: calc(50% + 1.5rem);
	bottom: 0;
	-webkit-transform: translate3d(0, 75%, 0);
	transform: translate3d(0, 75%, 0)
}

@media(min-width: 992px) {
	.manifesto-intro-img--2 {
		width: 10rem;
		right: 4.16666667%;
		-webkit-transform: none;
		transform: none
	}
}

.manifesto-intro-img--3 {
	position: relative;
	top: 0;
	width: calc(50% + 1.5rem);
	left: -2rem;
	margin-top: 5rem
}

@media(min-width: 992px) {
	.manifesto-intro-img--3 {
		position: absolute;
		left: 4.16666667%;
		width: 14rem;
		margin-top: 0
	}
}

.manifesto-intro-img--4 {
	position: absolute;
	width: calc(50% + 1.5rem);
	right: -1.5rem;
	bottom: 10rem
}

@media(min-width: 992px) {
	.manifesto-intro-img--4 {
		width: 16rem;
		right: 4.16666667%;
		bottom: 0
	}
}

.manifesto-intro-img--5 {
	position: relative;
	width: calc(50% + 1.5rem);
	left: -2rem;
	margin-top: 7.5rem
}

@media(min-width: 992px) {
	.manifesto-intro-img--5 {
		margin-top: 0;
		top: 0;
		width: 16rem;
		left: 4.16666667%;
		position: absolute
	}
}

.manifesto-intro-img--6 {
	position: absolute;
	bottom: 0;
	width: calc(50% + 1.5rem);
	right: -1.5rem
}

@media(min-width: 992px) {
	.manifesto-intro-img--6 {
		width: 10rem;
		right: 4.16666667%
	}
}

.manifesto__cta {
	color: #fff;
	border-color: #fff;
	-webkit-filter: invert(1);
	filter: invert(1)
}

.manifesto__cta:hover {
	background: #fff;
	color: #000
}

.manifesto__cta:hover svg path {
	stroke: #000
}

.advice-hero {
	min-height: 100vh;
	color: #000;
	padding: 10rem 0 0
}

.advice-hero.loaded {
	background: #fff
}

.advice-hero__sub {
	margin-bottom: 3rem;
	overflow: hidden
}

.advice-hero__sub span {
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	display: block
}

.advice-hero__title {
	margin-bottom: 5rem;
	overflow: hidden;
	line-height: 1.25
}

.advice-hero__title span {
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	display: block
}

.projects-hero {
	text-align: center;
	padding: 10rem 0 0;
	position: relative
}

@media(min-width: 992px) {
	.projects-hero {
		padding: 20rem 0 10rem
	}
}

.projects-hero__title {
	margin: 0 0 1.5rem
}

.projects-hero__text {
	text-transform: uppercase;
	line-height: 1.5
}

@media(max-width: 991.98px) {
	.projects-hero__text br {
		display: none
	}
}

@media(min-width: 992px) {
	.projects-grid__ct {
		padding-bottom: 10rem
	}
}

.projects-grid__pag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 2rem;
	padding: 2.5rem 0 0
}

.projects-grid__pag a {
	color: #fff;
	text-decoration: none;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.projects-grid__pag a:hover {
	-webkit-transform: scale(1.15);
	transform: scale(1.15)
}

.projects-grid__pag strong {
	width: 3rem;
	height: 1px;
	background: #fff;
	margin: 0 .5rem
}

.projects-block__lnk {
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%
}

.projects-block__imgWrap {
	position: relative;
	width: 100%;
	height: 100%
}

.projects-block__imgWrap img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.projects-block__img--c {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.projects-block__img--c>img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.projects-block__img--1 {
	margin-top: 5rem
}

@media(min-width: 992px) {
	.projects-block__img--1 {
		margin-top: 0
	}
}

.projects-block__img--2,
.projects-block__img--3 {
	margin-top: 5rem
}

@media(min-width: 992px) {
	.projects-block__img--3 {
		margin-top: -9rem
	}
}

.projects-block__img--4 {
	margin-top: 5rem
}

@media(min-width: 992px) {
	.projects-block__img--4 {
		margin-top: 10rem
	}
}

.projects-block__t {
	margin: 0
}

.projects-block__label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	color: #fff;
	margin: 2rem 0 .5rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

@media(max-width: 991.98px) {
	.projects-block__label {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		margin: 2rem 0 0
	}
}

.projects-block__label span {
	opacity: .5
}

.projects__filters {
	pointer-events: all;
	padding: 4rem 0;
	display: none
}

.projects__filters,
.projects__filters-mobile {
	position: absolute;
	bottom: 0;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(33.56%, transparent), to(#000));
	background: linear-gradient(180deg, transparent 33.56%, #000);
	text-align: center;
	width: 100%
}

.projects__filters-mobile {
	padding: 4rem 0 1.5rem
}

@media(min-width: 992px) {
	.projects__filters-mobile {
		display: none
	}
}

.projects__filters-mobileBtn {
	pointer-events: all;
	display: inline-block;
	border: 1px solid;
	color: #fff;
	border-radius: 1.5rem;
	text-decoration: none;
	padding: .6rem 1.5rem .5rem
}

.projects__filters-mobileBtn:focus,
.projects__filters-mobileBtn:hover {
	color: #fff
}

.projects__filters-ct {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	pointer-events: none;
	z-index: 99
}

@media(min-width: 992px) {
	.projects__filters {
		display: block
	}
}

.projects__filters a {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	border: 1px solid;
	border-radius: 1.5rem;
	margin-left: 1rem;
	padding: .75rem 1.5rem
}

.projects__filters a:first-child {
	margin-left: 0
}

.project-hero,
.project-top {
	position: relative;
	height: 100vh;
	min-height: 40rem;
	overflow: hidden
}

.project-hero__title {
	position: absolute;
	bottom: 10rem;
	width: 100%;
	text-align: center;
	overflow: hidden;
	padding: 0 1rem
}

.project-hero__title span {
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	display: block
}

.project-hero__img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.project-hero__img-ct {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.project-hero__img-ct img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.project-hero__cta {
	position: absolute;
	bottom: 2rem;
	right: 5rem;
	color: #fff;
	border-color: #fff;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	pointer-events: all;
	display: none
}

@media(min-width: 992px) {
	.project-hero__cta {
		display: block
	}
}

.project-hero__cta svg path {
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.project-hero__cta:hover {
	color: #000;
	background: #fff
}

.project-hero__cta:hover svg path {
	stroke: #000
}

@media(max-width: 991.98px) {
	.news-grid {
		padding: 1px 0;
		margin: -1px 0
	}
}

.news-grid__box {
	color: #000;
	text-decoration: none
}

.news-grid__box--1 {
	margin-top: 5rem
}

@media(min-width: 992px) {
	.news-grid__box--1 {
		margin-top: 10rem
	}
}

.news-grid__box--2 {
	margin-top: 5rem
}

@media(min-width: 992px) {
	.news-grid__box--2 {
		margin-top: -10rem
	}
}

.news-grid__box-image {
	overflow: hidden
}

.news-grid__box-image img {
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.news-grid__box-data {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	color: #595959;
	margin: 1.5rem 0 .5rem;
	text-transform: uppercase
}

.news-grid__box-title {
	margin: 0 0 .5rem
}

.news-grid__box:hover {
	color: #000
}

.news-grid__box:hover img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05)
}

.news-grid__pag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 2rem;
	padding: 10rem 0
}

.news-grid__pag a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	padding: 1rem
}

.news-grid__pag a:hover {
	-webkit-transform: scale(1.15);
	transform: scale(1.15)
}

.news-grid__pag strong {
	width: 3rem;
	height: 1px;
	background: #000;
	margin: 0 .5rem
}

.news-grid__filters {
	text-align: center;
	padding: 0 0 5rem;
	width: 100%
}

@media(min-width: 992px) {
	.news-grid__filters {
		padding: 0 0 7.5rem
	}
}

.news-grid__filters a {
	color: #000;
	text-decoration: none;
	text-transform: uppercase;
	border: 1px solid;
	border-radius: 1.5rem;
	margin-left: 1rem;
	padding: .75rem 1.5rem
}

.news-grid__filters a:first-child {
	margin-left: 0
}

@media(max-width: 991.98px) {
	.video-grid {
		padding: 1px 0;
		margin: -1px 0
	}
}

.video-grid__box {
	color: #000;
	text-decoration: none
}

@media(max-width: 991.98px) {
	.video-grid__box {
		margin-top: 5rem
	}
}

@media(min-width: 992px) {
	.video-grid__box--1 {
		margin-top: 10rem
	}
}

@media(min-width: 992px) {
	.video-grid__box--2 {
		margin-top: -10rem
	}
}

.video-grid__box-image {
	overflow: hidden;
	position: relative
}

.video-grid__box-image svg {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 10;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0)
}

.video-grid__box-image img {
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.video-grid__box-data {
	font-size: .75rem;
	color: #595959;
	margin: 1.5rem 0 .5rem;
	text-transform: uppercase
}

.video-grid__box-title {
	margin: 0 0 .5rem;
	text-transform: uppercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.video-grid__box:hover {
	color: #000
}

.video-grid__box:hover img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05)
}

.video-grid__pag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 2rem;
	padding: 10rem 0
}

.video-grid__pag a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.video-grid__pag a:hover {
	-webkit-transform: scale(1.15);
	transform: scale(1.15)
}

.video-grid__pag strong {
	width: 3rem;
	height: 1px;
	background: #000;
	margin: 0 .5rem
}

.video-grid__filters {
	text-align: center;
	padding: 0 0 2.5rem;
	width: 100%
}

@media(min-width: 992px) {
	.video-grid__filters {
		padding: 0 0 7.5rem
	}
}

.video-grid__filters a {
	color: #000;
	text-decoration: none;
	text-transform: uppercase;
	border: 1px solid;
	border-radius: 1.5rem;
	margin-left: 1rem;
	padding: .75rem 1.5rem
}

.video-grid__filters a:first-child {
	margin-left: 0
}

.finiture {
	background: #fff;
	padding-top: 5rem;
	padding-bottom: 10rem;
	color: #000;
	position: relative
}

.finiture__back a {
	color: #000;
	text-decoration: none
}

.finiture__back a svg {
	margin-right: 1rem;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.finiture__back a:hover svg {
	-webkit-transform: translateX(-.5rem);
	transform: translateX(-.5rem)
}

.finiture__filters {
	position: sticky;
	pointer-events: all;
	width: 100%;
	top: calc(100dvh - 89px);
	background: #fff;
	padding: 1.5rem 0;
	border-top: 1px solid #dadada
}

.finiture__filters-ct {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 99;
	min-height: calc(100dvh - 130px)
}

.finiture__filters-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 .5rem;
	position: relative
}

@media(min-width: 1200px) {
	.finiture__filters-wrap {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
}

.finiture__filters a {
	color: #000;
	text-decoration: none;
	text-transform: uppercase;
	border: 1px solid;
	border-radius: 1.5rem;
	margin-left: 1rem;
	padding: .75rem 1.5rem .65rem;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	line-height: 1
}

.finiture__filters a:first-child {
	margin-left: 0
}

.finiture__filters a.finiture__filters-contact {
	position: absolute;
	right: 4rem;
	top: 50%;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0)
}

@media(max-width: 991.98px) {
	.finiture__filters a {
		margin-left: .5rem;
		padding: .75rem .75rem .65rem
	}

	.finiture__filters a.finiture__filters-contact {
		position: relative;
		top: 0;
		display: block;
		right: auto;
		width: auto;
		opacity: 1;
		text-align: center;
		-webkit-transform: none;
		transform: none
	}
}

.finiture__filters a.active,
.finiture__filters a:hover {
	background: #000;
	color: #fff
}

.finiture__title {
	font-family: Mont, sans-serif;
	margin-bottom: 0
}

@media(max-width: 767.98px) {
	.finiture__title {
		margin-bottom: 15px
	}
}

.finiture__title span {
	font-style: normal;
	font-weight: 400;
	font-size: .875rem;
	line-height: 1;
	text-transform: uppercase;
	color: #595959;
	position: relative;
	top: -1px
}

@media(max-width: 767.98px) {
	.finiture__icon {
		max-width: 80px
	}
}

.finiture__box {
	text-align: center;
	margin-top: 2.5rem
}

.finiture__box img {
	border: 1px solid #a6a6a6
}

.finiture__box-t {
	margin-top: .75rem;
	margin-bottom: .25rem;
	text-transform: uppercase;
	height: 1.5rem;
	overflow: hidden
}

.finiture__box-st {
	color: #595959;
	text-transform: uppercase
}

#list-mat-top {
	position: relative;
	z-index: 5
}

@media(min-width: 992px) {
	.list-materials-wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 15px
	}
}

@media(max-width: 991.98px) {
	.list-materials-wrap {
		display: none;
		position: absolute;
		bottom: 4.9rem;
		background: #fff;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100%;
		padding: 0 2rem;
		height: 0;
		border-top: 1px solid #dadada;
		overflow: hidden
	}

	.list-materials-wrap.done {
		overflow: visible
	}

	.list-materials-wrap .custom-select.custom-select--2 .select-selected {
		border-radius: 0;
		border-top: none;
		border-right: none;
		border-left: none;
		margin-bottom: 1rem;
		margin-top: 1rem;
		padding-left: 1rem;
		padding-right: 1rem;
		position: relative
	}

	.list-materials-wrap .custom-select.custom-select--2:last-child .select-selected {
		margin-bottom: 2rem
	}
}

@media(min-width: 992px) {
	.list-materials-wrapMobile {
		display: none
	}
}

.list-materials-wrapMobile a {
	position: relative;
	left: 0;
	right: 1.25rem;
	padding-right: 2.5rem
}

.list-materials-wrapMobile a:after {
	position: absolute;
	content: "";
	top: 50%;
	right: 1.25rem;
	-webkit-transform: translate3d(0, -50%, 0) rotate(180deg);
	transform: translate3d(0, -50%, 0) rotate(180deg);
	width: 12px;
	height: 6px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjciIHZpZXdCb3g9IjAgMCAxMyA3IiB3aWR0aD0iMTMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTEyIC44OTQ1MzEtNS41IDUuMjEwNTI5LTUuNS01LjIxMDUzIiBzdHJva2U9IiMwMDAiLz48L3N2Zz4=);
	background-position: 50%;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.list-materials-wrapMobile a:hover {
	background: none;
	color: #000
}

.list-materials-wrapMobile a:hover:after {
	-webkit-transform: translate3d(0, -50%, 0) rotate(0deg);
	transform: translate3d(0, -50%, 0) rotate(0deg)
}

@media(max-width: 991.98px) {
	.list-materials .select-selected.select-arrow-active {
		border: none
	}
}

.list-materials .select-items {
	max-height: 18rem !important
}

@media(min-width: 992px) {
	.list-materials .select-items {
		bottom: calc(100% + 2rem) !important;
		left: -15%;
		width: 130%
	}
}

@media(max-width: 991.98px) {
	.list-materials .select-items {
		position: relative !important;
		border: none !important
	}
}

@media(max-width: 991.98px) {
	.list-materials .select-items div {
		padding-left: 1rem
	}
}

.list-materials .select-items div span {
	position: relative
}

.list-materials .select-items div span:after {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	height: 1px;
	width: 100%;
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	background: #000
}

.list-materials .select-items div:hover {
	background: none
}

.list-materials .select-items div:hover span:after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

.list-materials__filters {
	position: relative;
	padding: 1rem 0;
	z-index: 10;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #fff;
	border-top: 1px solid #dadada;
	pointer-events: all
}

.list-materials__nores {
	color: #000;
	display: none
}

.list-materials__box {
	display: inline-block;
	padding: 0 4.825vw;
	text-decoration: none;
	text-align: center;
	margin: 6rem 0 0;
	width: 100%
}

.list-materials__box:hover .image--base {
	-webkit-transform: scale(1.05);
	transform: scale(1.05)
}

.list-materials__box-images {
	position: relative
}

.list-materials__box .image--base {
	aspect-ratio: .8;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.list-materials__box .base-wrap {
	overflow: hidden
}

.list-materials__box-title {
	font-family: Mont, sans-serif;
	text-transform: uppercase;
	font-size: .875rem;
	color: #000;
	text-align: center;
	margin: 3rem 0 0;
	position: relative;
	display: inline-block
}

.list-materials__box .image--a {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 2.5rem;
	-webkit-transform: translate3d(1rem, 6.5rem, 0);
	transform: translate3d(1rem, 6.5rem, 0)
}

@media(min-width: 992px) {
	.list-materials__box .image--a {
		-webkit-transform: translate3d(-1.5rem, 4.5rem, 0);
		transform: translate3d(-1.5rem, 4.5rem, 0);
		width: 6rem
	}
}

.list-materials__box .image--b {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 10;
	width: 3rem;
	-webkit-transform: translate3d(1.5rem, -2.5rem, 0);
	transform: translate3d(1.5rem, -2.5rem, 0)
}

@media(min-width: 992px) {
	.list-materials__box .image--b {
		-webkit-transform: translate3d(1.5rem, 1.5rem, 0);
		transform: translate3d(1.5rem, 1.5rem, 0);
		width: 7rem
	}
}

.list-materials__box-wrap:nth-child(2n) .image--a {
	left: auto;
	right: 0;
	-webkit-transform: translate3d(1rem, 5rem, 0);
	transform: translate3d(1rem, 5rem, 0);
	width: 3rem
}

@media(min-width: 992px) {
	.list-materials__box-wrap:nth-child(2n) .image--a {
		-webkit-transform: translate3d(1.5rem, 1.5rem, 0);
		transform: translate3d(1.5rem, 1.5rem, 0);
		width: 7rem
	}
}

.list-materials__box-wrap:nth-child(2n) .image--b {
	right: auto;
	left: 0;
	width: 2.5rem;
	-webkit-transform: translate3d(-.5rem, -3.5rem, 0);
	transform: translate3d(-.5rem, -3.5rem, 0)
}

@media(min-width: 992px) {
	.list-materials__box-wrap:nth-child(2n) .image--b {
		width: 6rem
	}
}

.moodboard {
	position: relative;
	height: 100vh;
	min-height: 40rem;
	overflow: hidden;
	width: 100%;
	z-index: 100
}

.moodboard__over {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20;
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.moodboard__over-wrap {
	opacity: 0;
	width: 100%;
	position: relative
}

@media(max-width: 991.98px) {
	.moodboard__over-wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		height: 100%
	}
}

.moodboard__over-close {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 4vh);
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-decoration: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	text-align: center
}

@media(max-width: 991.98px) {
	.moodboard__over-close {
		bottom: auto;
		top: 2rem
	}
}

.moodboard__over-close svg {
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

.moodboard__over-close span {
	margin: .5rem 0 0;
	display: block
}

.moodboard__over-close:hover {
	color: #fff
}

.moodboard__over-close:hover svg {
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}

.moodboard__over-cta {
	position: absolute;
	left: 50%;
	top: calc(100% + 8vh);
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	text-align: center
}

@media(max-width: 991.98px) {
	.moodboard__over-cta {
		top: auto;
		bottom: 2rem
	}
}

.moodboard__slide {
	position: absolute;
	height: 100vh;
	min-height: 40rem;
	top: 0;
	left: 0;
	width: 100%
}

.moodboard__slide--next {
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	opacity: 0
}

.moodboard__slide.moodboard__slide--current .moodboard__imgCol {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	opacity: 0;
	scale: .5
}

.moodboard__title--current,
.moodboard__title--next {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0)
}

.moodboard__title--next {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%
}

.moodboard__titles {
	position: relative;
	overflow: hidden;
	width: 100%
}

.moodboard__titles-ct {
	top: 0;
	height: 100vh;
	min-height: 40rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 10;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.moodboard__breadcrumb,
.moodboard__titles-ct {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center
}

.moodboard__breadcrumb {
	bottom: 1rem;
	z-index: 15
}

.moodboard__breadcrumb nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.moodboard__breadcrumb nav a {
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	margin: 0 .25rem;
	padding: 1rem;
	opacity: .5;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

@media(max-width: 991.98px) {
	.moodboard__breadcrumb nav a {
		padding: 1rem .5rem
	}
}

.moodboard__breadcrumb nav a.current {
	opacity: 1
}

.moodboard__ctas {
	position: relative;
	overflow: hidden;
	width: 100%
}

.moodboard__cta--current,
.moodboard__cta--next {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0)
}

.moodboard__cta--next {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%
}

.moodboard__img {
	overflow: hidden
}

.moodboard__imgCol {
	-webkit-transform: translateY(100%);
	transform: translateY(100%)
}

.moodboard__img--s img {
	-webkit-transform: scale(1.25);
	transform: scale(1.25)
}

.moodboard__img--p5,
.moodboard__img--p52 {
	-webkit-transform: translate3d(0, 5rem, 0);
	transform: translate3d(0, 5rem, 0)
}

@media(max-width: 991.98px) {
	.moodboard__img--p52 {
		-webkit-transform: translate3d(2.5rem, -8rem, 0) scale(2);
		transform: translate3d(2.5rem, -8rem, 0) scale(2)
	}
}

.moodboard__img--n5 {
	-webkit-transform: translate3d(0, -5rem, 0);
	transform: translate3d(0, -5rem, 0)
}

@media(max-width: 991.98px) {
	.moodboard__img--n5 {
		-webkit-transform: translate3d(0, 8.5rem, 0) scale(2);
		transform: translate3d(0, 8.5rem, 0) scale(2)
	}
}

.moodboard__img--n52 {
	-webkit-transform: translate3d(0, -5rem, 0);
	transform: translate3d(0, -5rem, 0)
}

@media(max-width: 991.98px) {
	.moodboard__img--n52 {
		-webkit-transform: scale(2) translate3d(0, -5rem, 0);
		transform: scale(2) translate3d(0, -5rem, 0)
	}
}

.moodboard__img--p25 {
	-webkit-transform: translate3d(0, 2.5rem, 0);
	transform: translate3d(0, 2.5rem, 0)
}

@media(max-width: 991.98px) {
	.moodboard__img--p25 {
		-webkit-transform: translate3d(0, 2.5rem, 0) scale(2);
		transform: translate3d(0, 2.5rem, 0) scale(2)
	}
}

.moodboard__img--n25 {
	-webkit-transform: translate3d(0, -2.5rem, 0);
	transform: translate3d(0, -2.5rem, 0)
}

@media(max-width: 991.98px) {
	.moodboard__img--n25 {
		-webkit-transform: translate3d(2.5rem, -5rem, 0) scale(2);
		transform: translate3d(2.5rem, -5rem, 0) scale(2)
	}
}

.moodboard__img--p125 {
	-webkit-transform: translate3d(0, 12.5rem, 0);
	transform: translate3d(0, 12.5rem, 0)
}

@media(max-width: 991.98px) {
	.moodboard__img--p125 {
		-webkit-transform: translate3d(0, 25rem, 0) scale(2);
		transform: translate3d(0, 25rem, 0) scale(2)
	}
}

.moodboard__img--p75 {
	-webkit-transform: translate3d(-5rem, 0, 0);
	transform: translate3d(-5rem, 0, 0)
}

@media(max-width: 991.98px) {
	.moodboard__img--p75 {
		-webkit-transform: translate3d(0, 7.5rem, 0) scale(2);
		transform: translate3d(0, 7.5rem, 0) scale(2)
	}
}

.moodboard__img--n10 {
	-webkit-transform: translate3d(0, -10rem, 0);
	transform: translate3d(0, -10rem, 0)
}

.moodboard__img--1 {
	-webkit-transform: translate3d(0, 5rem, 0);
	transform: translate3d(0, 5rem, 0)
}

.moodboard__img--2 {
	-webkit-transform: translate3d(0, -5rem, 0);
	transform: translate3d(0, -5rem, 0)
}

.moodboard__img--3 {
	-webkit-transform: translate3d(0, 12.5rem, 0);
	transform: translate3d(0, 12.5rem, 0)
}

.moodboard__img--4,
.moodboard__img--5 {
	-webkit-transform: translate3d(0, -5rem, 0);
	transform: translate3d(0, -5rem, 0)
}

@media(max-width: 991.98px) {
	.moodboard__img--5 {
		-webkit-transform: translate3d(-2.5rem, -6.5rem, 0) scale(2);
		transform: translate3d(-2.5rem, -6.5rem, 0) scale(2)
	}
}

.moodboard__img--6 {
	-webkit-transform: translate3d(0, 2.5rem, 0);
	transform: translate3d(0, 2.5rem, 0)
}

.moodboard__img--7 {
	-webkit-transform: translate3d(0, 5rem, 0);
	transform: translate3d(0, 5rem, 0)
}

.moodboard__img--8 {
	-webkit-transform: translate3d(0, 7.5rem, 0);
	transform: translate3d(0, 7.5rem, 0)
}

.moodboard__img--9 {
	-webkit-transform: translate3d(0, -2.5rem, 0);
	transform: translate3d(0, -2.5rem, 0)
}

@media(max-width: 991.98px) {
	.moodboard__img--9 {
		-webkit-transform: translate3d(0, -10rem, 0) scale(2);
		transform: translate3d(0, -10rem, 0) scale(2)
	}
}

.moodboard__img--91 {
	-webkit-transform: translate3d(0, -2.5rem, 0);
	transform: translate3d(0, -2.5rem, 0)
}

@media(max-width: 991.98px) {
	.moodboard__img--91 {
		-webkit-transform: translate3d(5rem, -10rem, 0) scale(2);
		transform: translate3d(5rem, -10rem, 0) scale(2)
	}
}

.moodboard__img--10 {
	-webkit-transform: translate3d(0, 12.5rem, 0);
	transform: translate3d(0, 12.5rem, 0)
}

@media(max-width: 991.98px) {
	.moodboard__img--10 {
		-webkit-transform: translate3d(0, 2.5rem, 0) scale(2);
		transform: translate3d(0, 2.5rem, 0) scale(2)
	}
}

.moodboard__img--11 {
	-webkit-transform: translate3d(0, 2.5rem, 0);
	transform: translate3d(0, 2.5rem, 0)
}

@media(max-width: 991.98px) {
	.moodboard__img--11 {
		-webkit-transform: translate3d(0, -14.5rem, 0) scale(2);
		transform: translate3d(0, -14.5rem, 0) scale(2)
	}
}

.moodboard__img--12 {
	-webkit-transform: translate3d(0, -10rem, 0);
	transform: translate3d(0, -10rem, 0)
}

@media(max-width: 991.98px) {
	.moodboard__img--12 {
		-webkit-transform: translate3d(0, 9rem, 0) scale(2);
		transform: translate3d(0, 9rem, 0) scale(2)
	}
}

.map {
	position: relative
}

@media(min-width: 768px) {
	.map {
		overflow: hidden
	}
}

.map-popup {
	position: absolute;
	left: 0;
	bottom: -60px;
	width: 95vw;
	padding: 50px 20px;
	z-index: 10;
	background-color: #595959;
	-webkit-transition: -webkit-transform 1s ease-out;
	transition: -webkit-transform 1s ease-out;
	transition: transform 1s ease-out;
	transition: transform 1s ease-out, -webkit-transform 1s ease-out
}

@media(min-width: 768px) {
	.map-popup {
		bottom: 0;
		width: 45vw;
		padding: 8vw 7.2vw 9vw 10vw
	}
}

.map-popup.-is-hidden {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%)
}

.map-popup__close {
	position: absolute;
	top: 25px;
	right: 25px;
	padding: 20px;
	border-radius: 100%;
	border: 1px solid #fff;
	background-color: transparent;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out
}

@media(min-width: 768px) {
	.map-popup__close {
		top: 30px;
		right: 30px
	}
}

.map-popup__close:hover {
	background-color: #fff
}

.map-popup__close:hover svg,
.map-popup__close:hover svg path {
	stroke: #000 !important
}

.map-popup__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 40px;
	color: #fff
}

.map-popup__content [data-website] {
	text-decoration: underline
}

@media(min-width: 768px) {
	.map-popup__title {
		font-size: 2rem
	}
}

@media(max-width: 767.98px) {
	.map-popup__title {
		max-width: 75%
	}
}

@media(min-width: 768px) {
	.map-popup__ad {
		font-size: 1.2rem
	}
}

.map-popup__ct a {
	color: #fff
}

.map-popup__ct a:hover {
	text-decoration: underline
}

.map-popup__cta {
	margin-top: 30px
}

@media(min-width: 768px) {
	.map-popup__cta {
		position: absolute;
		bottom: 30px;
		right: 30px
	}
}

body,
html {
	overflow-x: hidden;
	background: #000;
	color: #fff
}

body {
	-ms-scroll-chaining: none;
	overscroll-behavior: none
}

@media(max-width: 575.98px) {
	body {
		font-size: .875rem
	}
}

body.wait,
body.wait * {
	cursor: wait !important
}

::-webkit-scrollbar {
	display: none !important
}

#content {
	overflow: visible;
	width: 100%
}

.transition {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100vw;
	height: 100vh;
	pointer-events: none
}

.bg-gray-green {
	background: #a5a497
}

.bg-black {
	background: #000
}

.color-black {
	color: #000
}

.grecaptcha-badge {
	display: none !important;
	opacity: 0 !important;
	visibility: hidden !important
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
}

.content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}



@media (max-width: 768px) {
    .content {
        max-width: 100%;
    }

   
}

.images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.image-container {
    flex: 1 0 30%; /* Establece el ancho máximo del contenedor de imágenes */
    margin-bottom: 20px;
}

.image-container img {
    width: 100%; /* Para asegurar que la imagen ocupe todo el espacio disponible */
    display: block;
    border-radius: 5px; /* Ajusta según sea necesario */
}

.image-container p {
    text-align: center;
    margin-top: 5px;
}

/* Media Queries para ajustar el diseño en diferentes tamaños de pantalla */
@media only screen and (max-width: 768px) {
    .image-container {
        flex: 1 0 48%; /* 2 columnas en tablet */
    }
}

@media only screen and (max-width: 480px) {
    .images {
        flex-wrap: nowrap; /* Evitar que los mosaicos se envuelvan */
        overflow-x: auto; /* Permitir desplazamiento horizontal para el carrusel */
        -webkit-overflow-scrolling: touch; /* Desplazamiento suave en dispositivos iOS */
    }

    .image-container {
        flex: 1 0 100%; /* Carrusel en dispositivos móviles */
        margin-right: 10px; /* Espaciado entre elementos en el carrusel */
    }
}
