/* Bootstrap grid */

/*!
   * Bootstrap Grid v5.3.2 (https://getbootstrap.com/)
   * Copyright 2011-2023 The Bootstrap Authors
   * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
   */
@import url(https://use.typekit.net/ozv8zfy.css);

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.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-sm,
	.container-md {
		max-width: 720px;
	}
}

@media (min-width: 992px) {

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

@media (min-width: 1200px) {

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

@media (min-width: 1400px) {

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

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

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

.row > * {
	box-sizing: border-box;
	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 {
	flex: 1 0 0%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.g-0,
.gx-0 {
	--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 {
		flex: 1 0 0%;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.g-sm-0,
	.gx-sm-0 {
		--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 {
		flex: 1 0 0%;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.g-md-0,
	.gx-md-0 {
		--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 {
		flex: 1 0 0%;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.g-lg-0,
	.gx-lg-0 {
		--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 {
		flex: 1 0 0%;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.g-xl-0,
	.gx-xl-0 {
		--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 {
		flex: 1 0 0%;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.g-xxl-0,
	.gx-xxl-0 {
		--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;
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-2 {
	margin: 0.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: 0.25rem !important;
	margin-left: 0.25rem !important;
}

.mx-2 {
	margin-right: 0.5rem !important;
	margin-left: 0.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: 0.25rem !important;
	margin-bottom: 0.25rem !important;
}

.my-2 {
	margin-top: 0.5rem !important;
	margin-bottom: 0.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: 0.25rem !important;
}

.mt-2 {
	margin-top: 0.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: 0.25rem !important;
}

.me-2 {
	margin-right: 0.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: 0.25rem !important;
}

.mb-2 {
	margin-bottom: 0.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: 0.25rem !important;
}

.ms-2 {
	margin-left: 0.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: 0.25rem !important;
}

.p-2 {
	padding: 0.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: 0.25rem !important;
	padding-left: 0.25rem !important;
}

.px-2 {
	padding-right: 0.5rem !important;
	padding-left: 0.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: 0.25rem !important;
	padding-bottom: 0.25rem !important;
}

.py-2 {
	padding-top: 0.5rem !important;
	padding-bottom: 0.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: 0.25rem !important;
}

.pt-2 {
	padding-top: 0.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: 0.25rem !important;
}

.pe-2 {
	padding-right: 0.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: 0.25rem !important;
}

.pb-2 {
	padding-bottom: 0.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: 0.25rem !important;
}

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

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

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

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

@media (min-width: 576px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.m-sm-2 {
		margin: 0.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: 0.25rem !important;
		margin-left: 0.25rem !important;
	}

	.mx-sm-2 {
		margin-right: 0.5rem !important;
		margin-left: 0.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: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.my-sm-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.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: 0.25rem !important;
	}

	.mt-sm-2 {
		margin-top: 0.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: 0.25rem !important;
	}

	.me-sm-2 {
		margin-right: 0.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: 0.25rem !important;
	}

	.mb-sm-2 {
		margin-bottom: 0.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: 0.25rem !important;
	}

	.ms-sm-2 {
		margin-left: 0.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: 0.25rem !important;
	}

	.p-sm-2 {
		padding: 0.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: 0.25rem !important;
		padding-left: 0.25rem !important;
	}

	.px-sm-2 {
		padding-right: 0.5rem !important;
		padding-left: 0.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: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.py-sm-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.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: 0.25rem !important;
	}

	.pt-sm-2 {
		padding-top: 0.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: 0.25rem !important;
	}

	.pe-sm-2 {
		padding-right: 0.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: 0.25rem !important;
	}

	.pb-sm-2 {
		padding-bottom: 0.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: 0.25rem !important;
	}

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

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

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

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

@media (min-width: 768px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.m-md-2 {
		margin: 0.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: 0.25rem !important;
		margin-left: 0.25rem !important;
	}

	.mx-md-2 {
		margin-right: 0.5rem !important;
		margin-left: 0.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: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.my-md-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.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: 0.25rem !important;
	}

	.mt-md-2 {
		margin-top: 0.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: 0.25rem !important;
	}

	.me-md-2 {
		margin-right: 0.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: 0.25rem !important;
	}

	.mb-md-2 {
		margin-bottom: 0.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: 0.25rem !important;
	}

	.ms-md-2 {
		margin-left: 0.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: 0.25rem !important;
	}

	.p-md-2 {
		padding: 0.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: 0.25rem !important;
		padding-left: 0.25rem !important;
	}

	.px-md-2 {
		padding-right: 0.5rem !important;
		padding-left: 0.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: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.py-md-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.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: 0.25rem !important;
	}

	.pt-md-2 {
		padding-top: 0.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: 0.25rem !important;
	}

	.pe-md-2 {
		padding-right: 0.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: 0.25rem !important;
	}

	.pb-md-2 {
		padding-bottom: 0.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: 0.25rem !important;
	}

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

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

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

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

@media (min-width: 992px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.m-lg-2 {
		margin: 0.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: 0.25rem !important;
		margin-left: 0.25rem !important;
	}

	.mx-lg-2 {
		margin-right: 0.5rem !important;
		margin-left: 0.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: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.my-lg-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.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: 0.25rem !important;
	}

	.mt-lg-2 {
		margin-top: 0.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: 0.25rem !important;
	}

	.me-lg-2 {
		margin-right: 0.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: 0.25rem !important;
	}

	.mb-lg-2 {
		margin-bottom: 0.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: 0.25rem !important;
	}

	.ms-lg-2 {
		margin-left: 0.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: 0.25rem !important;
	}

	.p-lg-2 {
		padding: 0.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: 0.25rem !important;
		padding-left: 0.25rem !important;
	}

	.px-lg-2 {
		padding-right: 0.5rem !important;
		padding-left: 0.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: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.py-lg-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.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: 0.25rem !important;
	}

	.pt-lg-2 {
		padding-top: 0.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: 0.25rem !important;
	}

	.pe-lg-2 {
		padding-right: 0.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: 0.25rem !important;
	}

	.pb-lg-2 {
		padding-bottom: 0.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: 0.25rem !important;
	}

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

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

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

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

@media (min-width: 1200px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.m-xl-2 {
		margin: 0.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: 0.25rem !important;
		margin-left: 0.25rem !important;
	}

	.mx-xl-2 {
		margin-right: 0.5rem !important;
		margin-left: 0.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: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.my-xl-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.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: 0.25rem !important;
	}

	.mt-xl-2 {
		margin-top: 0.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: 0.25rem !important;
	}

	.me-xl-2 {
		margin-right: 0.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: 0.25rem !important;
	}

	.mb-xl-2 {
		margin-bottom: 0.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: 0.25rem !important;
	}

	.ms-xl-2 {
		margin-left: 0.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: 0.25rem !important;
	}

	.p-xl-2 {
		padding: 0.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: 0.25rem !important;
		padding-left: 0.25rem !important;
	}

	.px-xl-2 {
		padding-right: 0.5rem !important;
		padding-left: 0.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: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.py-xl-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.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: 0.25rem !important;
	}

	.pt-xl-2 {
		padding-top: 0.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: 0.25rem !important;
	}

	.pe-xl-2 {
		padding-right: 0.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: 0.25rem !important;
	}

	.pb-xl-2 {
		padding-bottom: 0.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: 0.25rem !important;
	}

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

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

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

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

@media (min-width: 1400px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.m-xxl-2 {
		margin: 0.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: 0.25rem !important;
		margin-left: 0.25rem !important;
	}

	.mx-xxl-2 {
		margin-right: 0.5rem !important;
		margin-left: 0.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: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.my-xxl-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.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: 0.25rem !important;
	}

	.mt-xxl-2 {
		margin-top: 0.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: 0.25rem !important;
	}

	.me-xxl-2 {
		margin-right: 0.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: 0.25rem !important;
	}

	.mb-xxl-2 {
		margin-bottom: 0.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: 0.25rem !important;
	}

	.ms-xxl-2 {
		margin-left: 0.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: 0.25rem !important;
	}

	.p-xxl-2 {
		padding: 0.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: 0.25rem !important;
		padding-left: 0.25rem !important;
	}

	.px-xxl-2 {
		padding-right: 0.5rem !important;
		padding-left: 0.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: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.py-xxl-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.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: 0.25rem !important;
	}

	.pt-xxl-2 {
		padding-top: 0.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: 0.25rem !important;
	}

	.pe-xxl-2 {
		padding-right: 0.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: 0.25rem !important;
	}

	.pb-xxl-2 {
		padding-bottom: 0.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: 0.25rem !important;
	}

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

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

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

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

@media print {

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

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

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

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

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

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

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

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

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

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

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

html {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

body {
	display: flex;
	flex: 1 1 0%;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100%;
}

.wrap {
	max-width: 1266px;
	padding: 0 40px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

div#consultation-form-wrap {
	width: 60%;
}

td {
	padding: 0.7rem 1.2rem;
}

@media (max-width: 767px) {

	.for-desktop {
		display: none;
	}

	div#consultation-form-wrap {
		width: auto;
	}
}

@media (min-width: 768px) {

	.for-mobile {
		display: none;
	}
}

@font-face {
	font-family: fontello;
	src: url(../fonts/fontello/fontello.eot);
	src: url(../fonts/fontello/fontello.eot) format(embedded-opentype), url(../fonts/fontello/fontello.woff) format(woff), url(../fonts/fontello/fontello.ttf) format(truetype), url(../fonts/fontello/fontello.svg) format(svg);
	font-weight: 400;
	font-style: normal;
}

body {
	font-family: proxima-nova, arial, sans-serif;
	color: #414141;
	font-size: 20px;
	line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #1f1f1f;
	font-weight: 500;
	margin-top: 0;
}

h1 {
	font-size: 150px;
	line-height: 1.1866;
	letter-spacing: -6px;
}

@media (max-width: 767px) {

	h1 {
		font-size: 80px;
		letter-spacing: -3.2px;
	}
}

@media (max-width: 390px) {

	h1 {
		font-size: 65px;
	}
}

h2 {
	font-size: 100px;
	letter-spacing: -4px;
	line-height: 1;
	margin-bottom: 60px;
}

@media (max-width: 767px) {

	h2 {
		font-size: 70px;
	}
}

@media (max-width: 390px) {

	h2 {
		font-size: 55px;
	}
}

h3 {
	font-size: 45px;
	line-height: 1;
	letter-spacing: -1.8px;
	margin-bottom: 40px;
}

h3.h3-sm {
	font-size: 40px;
	margin-bottom: 35px;
}

h3.h3-vsm {
	font-size: 20px;
	line-height: inherit;
	margin-bottom: 35px;
}

@media (max-width: 390px) {

	h3 {
		font-size: 40px;
	}

	h3.h3-sm {
		font-size: 35px;
	}
}

h4 {
	font-size: 26px;
	line-height: 1.3461;
	margin-bottom: 20px;
}

h4.h4-lg {
	font-size: 30px;
	line-height: 1.3333;
}

h6 {
	font-size: 16px;
	line-height: 1.875;
}

p {
	margin-top: 0;
}

p.lead {
	font-size: 26px;
	line-height: 1.1538;
}

a {
	color: inherit;
	text-decoration: underline;
	transition: all 0.25s;
}

a:hover {
	color: #d6006d;
}

.demo-icon {
	font-family: fontello;
	font-style: normal;
	font-weight: 400;
	speak: never;
	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: 0.2em;
	text-align: center;

	/* opacity: .8; */
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	margin-left: 0.2em;

	/* font-size: 120%; */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	/* text-shadow: 1px 1px 1px rgb(127 127 127 / 30%); */
}

.button-xl {
	border: none;
	border-radius: 41px;
	cursor: pointer;
	display: flex;
	font-size: 50px;
	line-height: 1.3;
	padding: 7px 80px 10px;
	justify-content: end;
	align-items: center;
	text-decoration: none;
	width: 100%;
	transition: all 0.25s;
}

.button-xl:hover {
	padding-right: 30px;
}

.button-xl.ic-arrow-w::after {
	background: url(../images/arrow-w-r.png) scroll 0 0 no-repeat;
	background-size: 100% auto;
	content: "";
	display: inline-block;
	margin-left: 25px;
	width: 50px;
	height: 27px;
}

@media (max-width: 390px) {

	.button-xl.ic-arrow-w::after {
		width: 30px;
		height: 17px;
		margin-left: 0;
	}
}

.button-xl.button-xl-primary {
	background-color: #1f1f1f;
	color: #fff;
}

.button-xl.button-xl-primary:hover {
	background-color: #d6006d;
}

@media (max-width: 767px) {

	.button-xl {
		font-size: 28px;
		padding: 20px 45px 20px;
	}
}

@media (max-width: 390px) {

	.button-xl {
		font-size: 20px;
		padding: 20px 35px 20px;
	}
}

.page-template-default .hero .wrap {
	position: relative;
	padding-top: 60px;
	padding-bottom: 45px;
	min-height: auto;
}

.page-template-default .hero p {
	min-height: auto;
}

.hero {
	padding-top: 130px;
}

.hero .wrap {
	position: relative;
	padding-top: 60px;
	padding-bottom: 100px;
	min-height: 535px;
}

.hero h1 {
	margin-bottom: 13px;
}

.hero h1.head-lg {
	font-size: 120px;
	line-height: 0.85;
	letter-spacing: -4.8px;
	margin-bottom: 65px;
}

@media (max-width: 767px) {

	.hero h1.head-lg {
		font-size: 60px;
		margin-bottom: 25px;
		letter-spacing: -2.4px;
	}
}

@media (max-width: 380px) {

	.hero h1.head-lg {
		font-size: 45px;
	}
}

.hero p {
	color: #1f1f1f;
	font-size: 20px;
	line-height: 1.4615;
	min-height: 120px;
	max-width: 592px;
}

.hero .float-img {
	position: absolute;
	bottom: 12px;
	right: 40px;
}

.hero.hero-dark {
	background-color: #1f1f1f;
	color: #f4f3f2;
}

.hero.hero-dark h1,
.hero.hero-dark p {
	color: #f4f3f2;
}

.hero.hero-md h1,
.hero.hero-md .hero-content {
	max-width: 606px;
}

.hero.hero-md p {
	font-size: 26px;
	font-weight: 500;
	max-width: 455px;
}

.hero.hero-sm h1,
.hero.hero-sm .hero-content {
	max-width: 606px;
}

.hero.hero-sm p {
	font-size: 26px;
	font-weight: 500;
	max-width: 375px;
}

@media (max-width: 1150px) {

	.hero.hero-with-img img {
		max-width: 45vw;
	}
}

@media (max-width: 991px) {

	.hero.hero-with-img .wrap {
		padding-bottom: 0;
		min-height: auto;
	}

	.hero.hero-with-img img,
	.hero.hero-with-img h1,
	.hero.hero-with-img .hero-content {
		max-width: 100%;
	}

	.hero.hero-with-img .hero-content {
		min-height: 200px;
		margin-bottom: 30px;
	}

	.hero.hero-with-img img {
		width: 100%;
		max-height: 330px;
		position: initial;
		display: block;
		object-fit: cover;
	}
}

.error-404 .hero {
	background-color: #f4f3f2;
}

body .mega-dropdown {
	background: #1f1f1f;
	display: none;
	width: 100% !important;
	position: absolute;
	left: 0;
	padding-top: 54px;
	padding-bottom: 39px;
	z-index: 100;
}

body .mega-dropdown a,
body .mega-dropdown h3,
body .mega-dropdown h4,
body .mega-dropdown p {
	color: #fff;
}

body .mega-dropdown a:hover {
	color: #d6006d;
}

body .mega-dropdown h3,
body .mega-dropdown h4 {
	margin-bottom: 8px;
}

body .mega-dropdown hr {
	background-color: #d6006d;
	margin-top: 20px;
	border: 0 none;
	height: 2px;
	margin-bottom: 40px;
}

@media (max-width: 767px) {

	body .mega-dropdown hr {
		margin-top: 8px;
		margin-bottom: 36px;
	}
}

body .mega-dropdown .mega-info {
	display: flex;
	flex-wrap: wrap;
}

body .mega-dropdown .mega-info p {
	margin-bottom: 10px;
	margin-right: 48px;
}

body .mega-dropdown .mega-info p:last-child {
	margin-right: 0;
}

body .mega-dropdown .mega-info p a {
	text-decoration: none;
}

@media screen and (max-width: 991px) {

	body .mega-dropdown h4 {
		font-size: 25px;
		margin-bottom: 15px;
	}

	body .mega-dropdown .mega-info p {
		font-size: 18px;
		margin-bottom: 0;
	}
}

body .mega-menu-dpdn {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

body .mega-menu-dpdn ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

body .mega-menu-dpdn a {
	color: #f4f3f2;
	display: block;
	font-size: 20px;
	line-height: 1.05;
	text-decoration: none;
	transition: all 0.25s;
}

body .mega-menu-dpdn > li {
	margin-bottom: 15px;
	max-width: 33.3333%;
	width: 100%;
}

body .mega-menu-dpdn > li .sub-menu li {
	margin-bottom: 19px;
}

body .mega-menu-dpdn > li > a,
body .mega-menu-dpdn .menu-item-big a {
	font-size: 55px;
	line-height: 1.2181;
	margin-bottom: 22px;
}

body .mega-menu-dpdn > li > a:hover,
body .mega-menu-dpdn .menu-item-big a:hover {
	color: #d6006d;
}

body .mega-menu-dpdn .menu-item-big a {
	margin-top: 32px;
}

body .mega-menu-dpdn > li.menu-item-has-children > a {
	position: relative;
}

body .mega-menu-dpdn > li.menu-item-has-children.show-submenu > a::after {
	opacity: 1;
}

body .mega-menu-dpdn > li.menu-item-has-children.show-submenu > .sub-menu {
	opacity: 1;
	height: auto;
	visibility: visible;
}

@media (max-width: 991px) {

	body .mega-menu-dpdn > li {
		max-width: 50%;
	}
}

@media (max-width: 767px) {

	body .mega-menu-dpdn > li {
		max-width: 100%;
	}

	body .mega-menu-dpdn > li > a,
	body .mega-menu-dpdn .menu-item-big a {
		font-size: 44px;
		margin-bottom: 0;
		margin-top: 0;
	}

	body .mega-menu-dpdn > li.menu-item-has-children > a {
		padding-right: 33px;
	}

	body .mega-menu-dpdn > li.menu-item-has-children > a::before {
		content: "";
		width: 26px;
		height: 3px;
		position: absolute;
		right: 0;
		top: 50%;
		background-color: #fff;
		transform: translate(0, -50%);
		transition: all ease 0.3s;
	}

	body .mega-menu-dpdn > li.menu-item-has-children > a::after {
		content: "";
		width: 26px;
		height: 3px;
		position: absolute;
		right: 0;
		top: 50%;
		background-color: #fff;
		transform: translate(0, -50%) rotate(90deg);
		opacity: 0;
		transition: all ease 0.3s;
	}

	body .mega-menu-dpdn > li.menu-item-has-children > .sub-menu {
		padding-top: 0;
		opacity: 0;
		height: 0;
		visibility: hidden;
		transition: all ease 0.2s;
	}

	body .mega-menu-dpdn > li.menu-item-has-children.show-submenu > .sub-menu {
		padding-top: 25px;
	}
}

.header-search {
	background: #1f1f1f;
	display: none;
	width: 100% !important;
	position: absolute;
	right: 0;
	padding-top: 50px;
	padding-bottom: 50px;
	z-index: 150;
}

.header-search.shown {
	height: calc(100vh - 70px);
}

.header-search .search-form {
	margin-left: auto;
	margin-right: auto;
}

.header-search .search-form input.search-field {
	color: #f4f3f2;
	border-bottom-color: #f4f3f2 !important;
}

.header-search .search-form input.search-submit {
	color: #f4f3f2 !important;
	border-color: #f4f3f2 !important;
}

.search-form {
	display: block;
	max-width: 450px;
}

.search-form input.search-field {
	background: transparent !important;
	border: 0 none !important;
	border-radius: 0;
	border-bottom: 1px solid #1f1f1f !important;
	display: block;
	font-size: 20px;
	appearance: none;
	line-height: 1;
	margin-bottom: 20px;
	outline: 0;
	padding: 3px 11px 6px;
	width: 100%;
}

.search-form input.search-submit {
	background: transparent;
	text-decoration: none;
	font-size: 14px;
	display: inline-block;
	line-height: 1;
	letter-spacing: 0.7px;
	border: 1px solid #1f1f1f;
	border-radius: 30px;
	padding: 7px 18px 5px;
	text-transform: uppercase;
	color: #1f1f1f !important;
}

body.search .site-main {
	padding-top: 90px;
}

body.search .section {
	padding-top: 60px;
	padding-bottom: 50px;
}

body.search .hero {
	display: none;
}

body.search .hentry {
	margin-bottom: 50px;
}

body.search .hentry .entry-summary {
	margin-bottom: 15px;
	margin-top: 1em;
}

body.search .hentry .entry-summary p {
	font-size: 0.93em;
	line-height: 1.4;
}

body.search .hentry h4 {
	margin-bottom: 8px;
}

body.search .hentry .post-thumbnail {
	display: none;
}

@media screen and (max-width: 767px) {

	body.search .section {
		padding-top: 30px;
		padding-bottom: 20px;
	}
}

#consultation-form-overlay {
	background: #1f1f1f;
	display: none;
	flex-direction: column;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	height: 100vh;
	overflow: auto;
	z-index: 50;
}

#consultation-form-overlay-home {
	background: #1f1f1f;
	display: none;
	flex-direction: column;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	height: 100vh;
	overflow: auto;
	z-index: 50;
}

#consultation-form-wrap {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	overflow: auto;
}

div.consultation-form-header {
	display: flex;
	justify-content: flex-end;
}

button.consultation-form-close {
	border: 0;
	background-color: transparent;
	color: #f4f3f2;
	outline: 0;
	cursor: pointer;
	position: relative;
	padding-left: 1.5;
}

button.consultation-form-close::after {
	content: "";
	height: 1em;
	border-left: 2px solid #fff;
	position: absolute;
	transform: rotate(45deg);
	left: 0;
}

button.consultation-form-close::before {
	content: "";
	height: 1em;
	border-left: 2px solid #fff;
	position: absolute;
	transform: rotate(-45deg);
	left: 0;
}

.menu-toggle {
	background-color: transparent;
	display: inline-block;
	border: 0 none;
	cursor: pointer;
	min-width: 40px;
	text-transform: uppercase;
	position: relative;
}

.menu-toggle .bar-line {
	opacity: 1;
	display: inline-block;
}

.menu-toggle .bar-line::before {
	left: 0;
	top: 14.5px;
}

.menu-toggle .bar-line::after {
	left: 0;
	top: 20.5px;
}

.menu-toggle .close-line {
	opacity: 0;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
}

.menu-toggle .close-line::before {
	left: 5px;
	top: 18px;
	transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle .close-line::after {
	left: 5px;
	top: 18px;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-toggle > span {
	min-width: 40px;
	padding: 0 0 0 20px;
	position: relative;
	transition: all ease 0.3s;
}

.menu-toggle > span::before {
	content: "";
	width: 14px;
	height: 1px;
	background-color: #414141;
	position: absolute;
}

.menu-toggle > span::after {
	content: "";
	width: 14px;
	height: 1px;
	background-color: #414141;
	position: absolute;
}

.menu-toggle.menu-icon-active .bar-line {
	opacity: 0;
}

.menu-toggle.menu-icon-active .close-line {
	opacity: 1;
}

.site-header {
	background: #fff;
	box-shadow: 0 5px 10px 0 rgba(50, 50, 50, 0.1);
	position: fixed;
	width: 100%;
	z-index: 10;
}

.site-header .header-inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	height: 70px;
}

.site-branding {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.site-branding .custom-logo {
	display: block;
	max-height: 48px;
}

.top-nav a {
	color: #414141;
	font-size: 12px;
	line-height: 3.16666;
	display: inline-block;
	margin-left: 15px;
	margin-right: 15px;
	text-transform: uppercase;
	font-family: proxima-nova, arial, sans-serif;
	font-weight: 500;
}

.top-nav a:last-child {
	margin-right: 0;
}

.top-nav .search {
	position: relative;
	padding: 0 0 0 20px;
}

.top-nav .search::before {
	content: "";
	background-image: url(../images/magnifying.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0%, -50%);
	width: 12px;
	height: 12px;
}

.top-nav .search.menu-open::before {
	transform: translate(0%, -50%) scale(1.2);
}

@media screen and (max-width: 767px) {

	.top-nav {
		margin-right: -4px;
	}

	.top-nav .menu-toggle {
		min-width: 10px;
	}

	.top-nav .menu-toggle > span {
		min-width: 1px;
		width: 1px;
	}

	.top-nav a {
		margin-left: 6px;
		margin-right: 6px;
	}

	.top-nav .search .text,
	.top-nav .menu-toggle .text {
		display: inline-block;
		max-width: 1px;
		white-space: nowrap;
		overflow: hidden;
		opacity: 0;
	}

	.top-nav .search::before {
		top: 19px;
	}

	.top-nav .search::after {
		background-color: #414141;
		content: "";
		width: 1px;
		height: 20px;
		position: absolute;
		right: -5px;
		top: 8px;
	}
}

.site-footer {
	background-color: #1f1f1f;
	padding-top: 80px;
	padding-bottom: 15px;
	color: #fff;
}

.site-footer h6 {
	color: #fff;
}

.site-footer .foot-logo {
	max-width: 145px;
	height: auto;
}

.site-footer a {
	text-decoration: none;
	color: #fff;
}

.site-footer a:hover {
	color: #d6006d;
}

@media (max-width: 991px) {

	.site-footer {
		padding-top: 100px;
	}

	.site-footer h6 {
		margin-bottom: 20px;
		font-size: 26px;
		line-height: 1;
	}
}

.footer-widgets {
	display: flex;
	padding-bottom: 75px;
	font-size: 17.5px;
	line-height: 1.3;
}

.footer-widgets .fw-col {
	max-width: 100%;
	width: 23.4%;
}

.footer-widgets .fw-col:last-child {
	text-align: right;
	width: 20.4%;
}

.footer-widgets .fw-col-1 {
	width: 32.7993%;
}

.footer-widgets .col-inner {
	display: inline-block;
}

.footer-widgets .col-inner * {
	text-align: left;
}

.footer-widgets .col-inner p {
	line-height: 36px;
}

@media (max-width: 991px) {

	.footer-widgets {
		flex-wrap: wrap;
		padding-bottom: 0;
	}

	.footer-widgets .fw-col {
		width: 50% !important;
		text-align: left !important;
		margin-bottom: 60px;
	}
}

@media (max-width: 700px) {

	.footer-widgets .fw-col {
		width: 100% !important;
	}
}

.footer-links a {
	color: #fff !important;
	display: block;
	line-height: 36px;
	text-decoration: none;
}

.footer-links a:hover i {
	color: #d6006d;
}

.site-info {
	margin-left: auto;
	text-align: right;
	font-size: 12px;
	font-weight: 500;
	line-height: 2.5;
}

.site-info p {
	margin-bottom: 0;
	display: inline-block;
}

.site-info .sep {
	padding-left: 5px;
	padding-right: 5px;
}

@media (max-width: 767px) {

	.site-info {
		text-align: center;
		font-size: 11px;
	}
}

.footer-legal-navigation {
	display: inline-block;
}

.footer-legal-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-legal-navigation li {
	display: inline-block;
}

.footer-legal-navigation li a {
	color: #fff;
	font-weight: 500;
	text-decoration: none;
}

.footer-legal-navigation li::before {
	content: "|";
	padding: 0 10px;
}

.pre-footer .pre-footer-cta,
.pre-footer .pre-footer-form {
	width: 100%;
}

@media (max-width: 991px) {

	.pre-footer {
		display: flex;
		flex-wrap: wrap;
	}
}

.pre-footer-form {
	background-color: #d6006d;
	color: #fff;
}

.pre-footer-form > .wrap {
	padding-top: 80px;
	padding-bottom: 70px;
}

.pre-footer-form h3 {
	color: #fff;
	max-width: 540px;
	margin-bottom: 28px;
}

@media screen and (min-width: 1024px) {

	.pre-footer-form h3 {
		font-size: 40px;
	}
}

.pre-footer-form p {
	max-width: 435px;
}

.pre-footer-cta {
	background-color: #fff;
}

.pre-footer-cta .cta-bottom {
	text-transform: lowercase;
	padding: 90px 0;
}

@media (max-width: 767px) {

	.pre-footer-cta .cta-bottom .button-xl {
		justify-content: space-between;
	}
}

.pre-footer-links {
	padding: 90px 0 80px;
	background: #d6006d;
	color: #f4f3f2;
}

.pre-footer-links h3 {
	color: #f4f3f2;
	margin-bottom: 30px;
	font-weight: 400;
}

.pre-footer-links p {
	max-width: 365px;
}

.pre-footer-links .content-links a {
	display: inline-block;
	margin-bottom: 34px;
	margin-right: 70px;
	position: relative;
	text-decoration: none;
	font-size: 26px;
	line-height: 30px;
	color: #f4f3f2;
}

.pre-footer-links .content-links a::after {
	content: "";
	position: absolute;
	background: url(../images/arrow-light.svg);
	background-size: cover;
	width: 32px;
	height: 17px;
	bottom: 8px;
	right: -55px;
	transition: all 0.3s ease-in;
}

.pre-footer-links .content-links a:hover {
	text-decoration: underline;
}

.pre-footer-links .content-links a:hover::after {
	transform: translate(15px, 0);
	transition: all 0.3s ease-in;
}

@media (max-width: 767px) {

	.pre-footer-links {
		padding-bottom: 30px;
	}

	.pre-footer-links p {
		margin-bottom: 80px;
	}

	.pre-footer-links .content-links a {
		margin-bottom: 70px;
		margin-right: 0;
		max-width: 280px;
		display: block;
	}

	.pre-footer-links .content-links a::after {
		content: "";
		position: initial;
		display: inline-block;
		margin-left: 20px;
	}
}

.section {
	padding-top: 110px;
	padding-bottom: 120px;
}

.media-right {
	background-color: #f4f3f2;
}

.media-right h3 {
	max-width: 450px;
	margin-bottom: 130px;
}

.media-right p {
	max-width: 490px;
}

.media-right .pic-col {
	position: relative;
}

.media-right .pic-col img {
	display: block;
	position: absolute;
	left: 12px;
	top: -20px;
	object-fit: cover;
	width: calc(100% - 24px);
	height: 100%;
}

@media (max-width: 991px) {

	.media-right {
		padding-top: 90px;
	}

	.media-right p,
	.media-right h3 {
		max-width: 100% !important;
		margin-bottom: 50px;
	}

	.media-right .pic-col img {
		position: initial;
		width: 100%;
	}
}

.markets-serve h2 {
	margin-bottom: 90px;
}

.markets-list {
	padding-bottom: 60px;
}

.markets-list h3 {
	max-width: 450px;
}

@media screen and (min-width: 1024px) {

	.markets-list h3 {
		font-size: 40px;
		font-weight: 400;
	}
}

.markets-list .market-item {
	padding-top: 25px;
	margin-bottom: 75px;
	transition: all 0.25s;
	border-top: 2px solid transparent;
	position: relative;
}

.markets-list .market-item .link-full-section {
	position: absolute;
	width: 100%;
	height: 100%;
}

.markets-list .market-item h3 {
	transition: all 0.25s;
}

.markets-list .market-item p {
	margin-bottom: 0;
	max-width: 392px;
}

.markets-list .market-item .arrow-link {
	background: url(../images/arrow-black.svg) scroll 0 0 no-repeat;
	background-size: 100% 100%;
	display: inline-block;
	height: 17px;
	width: 32px;
}

.markets-list .market-item .cta-col {
	position: relative;
}

.markets-list .market-item .cta-col .arrow-link {
	right: 58px;
	position: absolute;
	top: calc(50% - 8px);
}

.markets-list .market-item:hover {
	border-top-color: #d6006d;
}

.markets-list .market-item:hover h3 {
	color: #d6006d;
}

.markets-list .market-item:hover a.arrow-link {
	background: url(../images/arrow-magenta.svg) scroll 0 0 no-repeat;
}

@media (max-width: 991px) {

	.markets-list .market-item .cta-col .arrow-link {
		position: initial;
	}
}

@media (max-width: 767px) {

	.markets-list .market-item .cta-col .arrow-link {
		width: 50px;
		height: 27px;
		margin-top: 20px;
	}
}

.page-template-about .media-right p {
	max-width: 503px;
}

.page-template-about .three-columns {
	padding-bottom: 0;
}

@media (max-width: 991px) {

	.page-template-about .pre-footer-cta {
		order: 2;
	}
}

.heading-media {
	background-color: #1f1f1f;
	color: #fff;
	padding-bottom: 130px;
}

.heading-media h2 {
	margin-bottom: 60px;
	color: #fff;
}

.heading-media p {
	margin-bottom: 48px;
}

.heading-media figure {
	display: block;
}

.heading-media figure img {
	height: auto;
	width: 100%;
	object-fit: cover;
}

.three-columns h2 {
	margin-bottom: 17px;
}

.three-columns .wrap {
	overflow: hidden;
}

@media (max-width: 991px) {

	.three-columns .row-three-cols {
		margin-left: -50px;
		margin-right: -50px;
	}
}

@media (max-width: 767px) {

	.three-columns h2 {
		margin-bottom: 40px;
	}
}

.news-text {
	position: relative;
	padding: 25px 25px;
	height: 100%;
}

.news-text::before {
	background-color: #f4f3f2;
	content: "";
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 1px;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: all 0.35s ease-out;
	z-index: -1;
}

.news-text h4 {
	max-width: 245px;
}

.news-text p:last-child {
	margin-bottom: 0;
}

.news-text:hover::before {
	opacity: 1;
	height: 100%;
}

@media (max-width: 991px) {

	.news-text {
		padding: 60px 50px;
	}
}

.page-template-solutions .hero p {
	font-size: 26px;
}

.section-media-text {
	background-color: #1f1f1f;
	color: #fff;
	padding: 90px 0;
}

.section-media-text picture {
	display: block;
	height: 1px;
	margin-bottom: 62px;
	padding-bottom: calc(33.1% - 1px);
	position: relative;
}

.section-media-text picture img {
	display: block;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	position: absolute;
}

.section-media-text .text-content {
	max-width: 593px;
}

@media (max-width: 767px) {

	.section-media-text picture {
		padding-bottom: 235px;
		margin-bottom: 40px;
	}
}

.section-features {
	background: #f4f3f2;
}

.section-features h2 {
	margin-bottom: 90px;
}

@media (max-width: 767px) {

	.section-features h2 {
		font-size: 45px;
	}
}

.features-row {
	gap: 38px;
	margin-bottom: 130px;
}

.features-row .feature-item {
	height: 100%;
}

.features-row > div[class*="col-"] {
	margin-bottom: 90px;
}

.features-row > div[class*="col-"]:nth-child(odd) {
	width: calc(46% - 20px);
}

.features-row > div[class*="col-"]:nth-child(even) {
	width: calc(54% - 20px);
}

@media screen and (min-width: 1200px) {

	.features-row {
		margin-left: 0;
		margin-right: 0;
		gap: 90px;
	}

	.features-row > div[class*="col-"] {
		margin-bottom: 75px;
		padding-left: 0;
		padding-right: 0;
	}

	.features-row > div[class*="col-"]:nth-child(odd) {
		width: calc(45.54% - 45px);
	}

	.features-row > div[class*="col-"]:nth-child(even) {
		width: calc(54.46% - 45px);
	}
}

@media (max-width: 767px) {

	.features-row {
		margin-bottom: 80px;
	}

	.features-row > div[class*="col-"] {
		width: 100% !important;
	}
}

.feature-item {
	padding-top: 30px;
	padding-bottom: 55px;
	position: relative;
}

.feature-item.fi-height-auto {
	height: auto !important;
}

.feature-item h3 {
	text-transform: capitalize;
	margin-bottom: 28px;
	letter-spacing: -1.6px;
	font-weight: 400;
}

.feature-item p {
	max-width: 495px;
	margin-bottom: 28px;
}

.feature-item a {
	padding: 0 0 15px;
	font-size: 26px;
	line-height: 1.3461;
	display: flex;
	align-items: center;
	text-decoration: none;
	border-bottom: 2px solid #000;
	color: transparent;
	position: absolute;
	max-width: 495px;
	width: 100%;
	bottom: 0;
	left: 0;
}

.feature-item a:hover {
	color: #d6006d;
	border-color: #d6006d;
}

.feature-item a:hover span {
	color: #d6006d;
}

.feature-item a span {
	font-size: 50px;
	margin-right: 10px;
	color: #000;
	line-height: 1;
}

@media (max-width: 767px) {

	.feature-item p {
		max-width: 100%;
	}

	.feature-item a {
		max-width: 100%;
	}
}

.feature-item-pic img {
	max-width: 506px;
	width: 100%;
	height: 320px;
	object-fit: cover;
	object-position: bottom;
}

#map {
	min-height: 600px;
}

@media (max-width: 1024px) {

	#map {
		min-height: 380px;
	}
}

.section-map {
	padding-top: 90px;
	padding-bottom: 90px;
}

.section-map h3 {
	margin-bottom: 60px;
}

.contact-items {
	max-width: 325px;
}

.contact-items h6 {
	color: #d6006d;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.contact-items p {
	color: #1f1f1f;
	line-height: 1.4615;
	margin-bottom: 64px;
}

.contact-map {
	display: block;
	height: 100%;
	width: 100%;
	min-height: 400px;
	position: relative;
}

.contact-map iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

.contact-map img {
	height: 100%;
	object-fit: cover;
	object-position: 5% 50%;
}

.section-contact-info {
	background-color: #f4f3f2;
}

@media (max-width: 767px) {

	.section-contact-info {
		padding-bottom: 30px;
	}

	.section-contact-info .col-md-4 {
		margin-bottom: 70px;
	}
}

section.section.section-reach {
	background: #1f1f1f;
	padding: 95px 0 105px;
	text-align: center;
}

section.section.section-reach h2 {
	color: #f4f3f2;
}

section.section-support-info {
	padding: 90px 0 100px;
	background: #1f1f1f;
	color: #f4f3f2;
}

section.section-support-info h4,
section.section-support-info h3 {
	color: #f4f3f2;
}

section.section-support-info h3 {
	margin-bottom: 60px;
}

section.section-support-info p {
	color: #f4f3f2;
	max-width: 520px;
}

@media (max-width: 767px) {

	section.section-support-info {
		padding-bottom: 60px;
	}

	section.section-support-info .col-12.col-md-6 {
		margin-bottom: 50px;
	}
}

.support-data p {
	margin-bottom: 4px;
	font-size: 22px;
	line-height: 38px;
}

.support-data p a:hover {
	color: #d6006d;
}

@media (max-width: 390px) {

	.support-data p {
		word-break: break-all;
		font-size: 20px;
	}
}

.section-press {
	padding-top: 0;
	padding-bottom: 0;
}

.section-press .wrap {
	padding-bottom: 155px;
	padding-top: 70px;
	position: relative;
}

.section-press .float-obj {
	left: 50%;
	position: absolute;
	bottom: 5px;
	transform: translateX(-50%);
	height: 140px;
	width: 100%;
	padding: 0 40px;
}

.section-press .float-obj img {
	height: 100%;
	width: auto;
	object-fit: cover;
}

.section-press .content-load-more {
	margin: 50px 0 100px;
	text-align: center;
}

.section-press .content-load-more .button {
	cursor: pointer;
}

.section-press .content-load-more .button:hover {
	background: #1f1f1f;
	border-color: #1f1f1f;
}

@media (max-width: 767px) {

	.section-press h2 {
		font-size: 80px;
	}

	.section-press .content-load-more {
		margin-top: 20px;
	}
}

.press-item {
	max-width: 535px;
	padding-bottom: 50px;
}

.press-item picture {
	display: block;
	height: 88px;
	margin-bottom: 38px;
	overflow: hidden;
}

.press-item picture img {
	max-height: 100%;
	width: auto;
}

.press-item h4 {
	margin-bottom: 30px;
}

.press-item h4 a {
	color: #1f1f1f;
}

.press-item h4 a:hover {
	color: #d6006d;
}

@media (max-width: 767px) {

	.press-item h4 {
		max-height: 102px;
		overflow: hidden;
	}
}

.section-featured-awards {
	background: #1f1f1f;
	color: #f4f3f2;
	padding-bottom: 140px;
}

.section-featured-awards h2 {
	color: #f4f3f2;
}

.section-featured-awards .text {
	max-width: 480px;
}

@media (max-width: 991px) {

	.section-featured-awards .text {
		margin-bottom: 50px;
	}
}

.award-collection {
	max-height: 315px;
	overflow: auto;
}

@media (max-width: 767px) {

	.award-collection {
		max-height: 435px;
	}
}

.award-item {
	display: flex;
	align-items: flex-start;
}

.award-item .award-item-date {
	max-width: 60px;
	width: 100%;
	color: #d6006d;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 10px;
}

.award-item .award-item-content {
	text-transform: uppercase;
}

.award-item .award-item-content span {
	display: block;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 0;
}

.award-item .award-item-content p {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3125;
	margin-bottom: 20px;
}

.award-item .award-item-content p a {
	text-decoration: none;
	color: #f4f3f2 !important;
}

@media (max-width: 767px) {

	.award-item {
		flex-wrap: wrap;
	}

	.award-item .award-item-content {
		width: 100%;
	}
}

.section-inquires {
	background: #f4f3f2;
}

.section-inquires h3 {
	margin-bottom: 20px;
}

.section-inquires p {
	max-width: 362px;
	margin-bottom: 0;
}

.section-inquires .support-data p {
	max-width: 100%;
	font-weight: 600;
}

@media (max-width: 767px) {

	.section-inquires {
		padding: 100px 0 60px;
	}

	.section-inquires p {
		margin-bottom: 35px;
	}
}

.single-resources .site-main {
	padding-top: 130px;
}

.hero-banner {
	margin-top: 30px;
}

.hero-banner h1 {
	font-size: 55px;
	letter-spacing: 1px;
	max-width: 800px;
	margin-bottom: 60px;
}

.hero-banner picture {
	display: block;
	width: 100%;
	height: 1px;
	padding-bottom: calc(39% - 1px);
	position: relative;
	margin-bottom: 30px;
}

.hero-banner picture img {
	display: block;
	left: 0;
	height: 100%;
	width: 100%;
	top: 0;
	object-fit: cover;
	position: absolute;
}

@media (max-width: 991px) {

	.hero-banner h1 {
		font-size: 45px;
	}
}

@media (max-width: 767px) {

	.hero-banner .wrap {
		padding: 0;
	}

	.hero-banner h1 {
		padding: 0 40px;
		margin-bottom: 40px;
	}

	.hero-banner picture {
		padding-bottom: 260px;
	}
}

@media (max-width: 390px) {

	.hero-banner h1 {
		font-size: 30px;
	}
}

.intro-embed {
	padding: 70px 0 120px;
	background: #f4f3f2;
	position: relative;
}

.intro-embed::before {
	content: "";
	position: absolute;
	width: 50%;
	height: 100%;
	right: 0;
	top: 0;
	background: #1f1f1f;
	z-index: 0;
}

.intro-embed .h3-sm {
	margin-bottom: 25px;
	letter-spacing: -1.6px;
	font-weight: 400;
}

.intro-embed p {
	max-width: 390px;
}

.intro-embed ul {
	margin: 0;
	padding-left: 15px;
}

.intro-embed ul li {
	font-size: 16px;
	padding-left: 5px;
}

.intro-embed ul li::marker {
	content: "+";
}

.intro-embed .intro-embed-text {
	padding-left: calc((100vw - 1200px) / 2);
}

.intro-embed .content-form {
	z-index: 5;
	position: relative;
}

.intro-embed .content-form h6 {
	color: #f4f3f2;
	text-align: center;
	letter-spacing: 0.8px;
	font-weight: 400;
}

.intro-embed .content-form .form-resource {
	min-height: 100px;
	max-width: 420px;
	margin: 0 auto;
	color: #f4f3f2;
}

@media (max-width: 1266px) {

	.intro-embed .intro-embed-text {
		padding: 0 40px;
	}
}

@media (max-width: 991px) {

	.intro-embed {
		padding: 70px 0 0;
	}

	.intro-embed::before {
		content: none;
	}

	.intro-embed p {
		max-width: 100%;
	}

	.intro-embed ul {
		margin-bottom: 70px;
	}

	.intro-embed .content-form {
		background: #1f1f1f;
		padding: 50px 40px 90px;
	}
}

.single .entry-content {
	max-width: 830px;
	padding: 0 20px;
	margin: 0 auto;
}

.single .entry-content h2 {
	font-size: 40px;
	line-height: 1;
	margin-bottom: 20px;
	letter-spacing: -1.6px;
}

.single .entry-content p {
	margin-bottom: 60px;
}

.single .entry-content a.wp-block-button__link {
	background: #fff;
	color: #1f1f1f;
	border: 1px solid #1f1f1f;
	padding: 9px 20px 7px;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0.7px;
	display: block;
}

.single .entry-content a.wp-block-button__link:hover {
	background: #d6006d;
	border: 1px solid #d6006d;
	color: #f4f3f2;
}

.single .entry-content blockquote {
	border-left: 3px solid #1f1f1f;
	margin: 0 0 60px 0;
	padding: 0 30px;
	margin-left: 10px;
}

.single .entry-content ul {
	margin: 0;
	padding-left: 15px;
}

.single .entry-content ul li {
	font-size: 16px;
	padding-left: 5px;
}

.single .entry-content ul li::marker {
	content: "+";
}

.single .entry-content .wp-block-columns {
	gap: 20px;
	margin-bottom: 80px;
}

.single .entry-content .wp-block-columns p {
	margin-bottom: 30px;
}

.single .entry-content .wp-block-video {
	margin-bottom: 50px;
}

.single .entry-content .wp-block-embed__wrapper {
	width: 100%;
	padding-top: 56.25%;
	position: relative;
	margin-bottom: 50px;
}

.single .entry-content .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.single .post-thumbnail,
.single .entry-header,
.single .entry-footer {
	display: none;
}

.single .hero-banner {
	margin-top: 30px;
}

.single .hero-banner h1 {
	margin-bottom: 40px;
}

.single .data-post {
	margin-bottom: 75px;
}

.single .data-post p {
	font-size: 16px;
	color: #414141;
	text-transform: uppercase;
	margin: 0;
	line-height: 30px;
}

@media (max-width: 991px) {

	.single .hero-banner h1 {
		font-size: 45px;
	}
}

@media (max-width: 390px) {

	.single .hero-banner h1 {
		font-size: 30px;
	}
}

.single-post .site-main {
	position: relative;
	padding-bottom: 151px;
	padding-top: 130px;
}

.single-post .site-main::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	max-width: 1186px;
	width: 100%;
	margin: auto;
	height: 151px;
	background: url(../images/bg-plus-black.svg);
	background-size: cover;
}

.section-media-left {
	padding-top: 90px;
}

.section-media-left .row {
	align-items: flex-end;
}

.section-media-left img {
	max-width: 590px;
	width: 100%;
}

.section-media-left .media-content-text {
	max-width: 485px;
	margin: 0 0 0 auto;
}

.section-media-left p {
	margin-bottom: 0;
}

@media (max-width: 767px) {

	.section-media-left {
		padding-bottom: 70px;
	}

	.section-media-left img {
		margin-bottom: 20px;
	}

	.section-media-left .media-content-text {
		max-width: 100%;
	}
}

.section-essential {
	background: #1f1f1f;
	padding: 350px 0 100px;
	color: #f4f3f2;
	position: relative;
}

.section-essential h2 {
	color: #f4f3f2;
	margin-bottom: 45px;
}

.section-essential h3 {
	color: #f4f3f2;
	margin-bottom: 130px;
	max-width: 590px;
	letter-spacing: 0;
}

.section-essential .float-obj {
	position: absolute;
	top: 0;
	max-width: 1266px;
	padding: 0 40px;
	width: 100%;
	left: 50%;
	transform: translate(-50%, 0);
}

.section-essential .float-obj img {
	width: 100%;
	height: 230px;
	object-fit: cover;
}

@media (max-width: 767px) {

	.section-essential {
		padding: 300px 0 40px;
	}

	.section-essential h3 {
		font-weight: 400;
		font-size: 26px;
		line-height: 35px;
		margin-bottom: 100px;
	}

	.section-essential .float-obj img {
		height: 200px;
	}
}

.essential-feature {
	display: block;
	padding: 40px 90px 70px 0;
	border-top: 2px solid #f4f3f2;
	text-decoration: none;
}

.essential-feature:focus,
.essential-feature:active {
	color: inherit;
}

.essential-feature h3 {
	margin-bottom: 30px;
}

.essential-feature .essential-feature-item {
	max-width: 500px;
}

.essential-feature .essential-feature-item h3 {
	letter-spacing: -1.8px;
	font-weight: 400;
}

.essential-feature span {
	font-size: 26px;
	font-weight: 500;
	color: #f4f3f2;
	text-decoration: underline;
}

.essential-feature.item-left .essential-feature-item {
	margin-left: auto;
}

.essential-feature:hover {
	border-top-color: #d6006d;
	color: #f4f3f2;
}

.essential-feature:hover span {
	color: #d6006d;
}

@media (max-width: 767px) {

	.essential-feature {
		padding: 40px 0 80px;
	}
}

.section-featured-resources {
	padding: 130px 0 75px;
}

.section-featured-resources .row {
	margin: 0 -5px;
}

.section-featured-resources .col-lg-4 {
	padding: 0 5px;
}

@media (max-width: 767px) {

	.section-featured-resources {
		padding: 80px 0;
	}
}

.featured-resources-item img {
	width: 100%;
	height: 270px;
	object-fit: cover;
}

.featured-resources-item h4 {
	margin-bottom: 12px;
	line-height: 30px;
}

.featured-resources-item h4 a {
	color: #1f1f1f;
}

.featured-resources-item h4 a:hover {
	color: #d6006d;
}

.featured-resources-item h4,
.featured-resources-item p {
	max-width: 350px;
}

.featured-resources-item p {
	color: #1f1f1f;
}

@media (max-width: 991px) {

	.featured-resources-item {
		padding-bottom: 35px;
	}

	.featured-resources-item h4,
	.featured-resources-item p {
		max-width: 100%;
	}
}

.section-shop {
	padding-top: 0;
}

.section-shop .wrap {
	border-top: 2px solid #414141;
	padding-top: 120px;
}

.section-shop .row {
	align-items: center;
	margin: 0 -20px;
}

.section-shop p {
	font-weight: 500;
	line-height: 30px;
}

.section-shop .col-md-6 {
	padding: 0 20px;
}

.section-shop .figure {
	max-width: 363px;
	height: 265px;
	margin: 0 0 0 auto;
}

.section-shop h4 {
	max-width: 316px;
}

@media (max-width: 767px) {

	.section-shop h4 {
		margin: 0 auto 20px 0;
	}

	.section-shop p {
		margin-bottom: 20px;
	}

	.section-shop .figure {
		margin: 0 auto 25px 0;
	}
}

.button {
	text-decoration: none;
	font-size: 14px;
	display: inline-block;
	line-height: 1;
	letter-spacing: 0.7px;
	border: 1px solid #1f1f1f;
	border-radius: 30px;
	padding: 7px 18px 5px;
	text-transform: uppercase;
	color: #1f1f1f !important;
}

.button.button-lg {
	font-size: 18px;
	padding: 10px 30px;
}

.button:hover {
	background: #d6006d;
	color: #f4f3f2 !important;
	border-color: #d6006d;
}

.section-hospitals {
	padding: 125px 0 0 0;
}

.section-hospitals .hospitals-img {
	max-width: 1186px;
	margin: 0 auto;
	padding-top: 95px;
}

.section-hospitals .hospitals-img img {
	width: 100%;
	display: block;
}

@media (max-width: 767px) {

	.section-hospitals {
		padding-top: 75px;
	}

	.section-hospitals.first-item {
		background: #1f1f1f;
		color: #f4f3f2;
	}

	.section-hospitals.first-item h3,
	.section-hospitals.first-item a,
	.section-hospitals.first-item h2 {
		color: #f4f3f2 !important;
	}

	.section-hospitals.first-item .hospital-item--content li::before {
		background: #f4f3f2;
	}
}

.single-solution .hero h1 {
	max-width: 780px;
	margin-bottom: 50px;
}

.single-solution .section-media-left {
	background: #f4f3f2;
}

.single-solution hr {
	margin: 65px auto 0;
	max-width: 1186px;
	height: 2px;
	background-color: #1f1f1f;
}

.hospital-item {
	padding: 75px 0;
	transition: all 0.6s ease;
	position: relative;
}

.hospital-item .link-open-it {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hospital-item .wrap {
	position: relative;
	display: flex;
}

.hospital-item .hospital-item--title {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.hospital-item .hospital-item--title span {
	font-size: 275px;
	line-height: 0.55;
	text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
	color: #1f1f1f;
	opacity: 0;
}

.hospital-item .hospital-item--title h3 {
	max-width: 333px;
	width: 100%;
	font-weight: 400;
}

.hospital-item .hospital-item--content {
	max-width: 800px;
	width: 100%;
	padding-left: 50px;
}

.hospital-item .hospital-item--content ul {
	list-style: none;
	padding: 0;
	margin-left: 195px;
	margin-bottom: 0;
}

.hospital-item .hospital-item--content ul li {
	position: relative;
	font-size: 16px;
	padding-bottom: 20px;
	line-height: 30px;
}

.hospital-item .hospital-item--content ul li::before {
	content: "";
	position: absolute;
	width: 175px;
	height: 2px;
	left: -195px;
	background: #1f1f1f;
	top: 15px;
}

.hospital-item .hospital-item--content a {
	font-size: 26px;
	font-weight: 500;
	color: #1f1f1f;
}

.hospital-item .hospital-item--content a:hover {
	color: #d6006d !important;
}

.hospital-item .hospital-item--content:hover a {
	color: #d6006d !important;
}

.hospital-item:hover {
	background: #1f1f1f;
	color: #f4f3f2;
	transition: all 0.6s ease;
}

.hospital-item:hover span {
	opacity: 1;
}

.hospital-item:hover h3 {
	color: #f4f3f2;
}

.hospital-item:hover .hospital-item--content ul li::before {
	background: #f4f3f2;
}

.hospital-item:hover .hospital-item--content a {
	color: #d6006d !important;
}

@media (max-width: 767px) {

	.hospital-item .wrap {
		flex-wrap: wrap;
	}

	.hospital-item span {
		display: none;
	}

	.hospital-item h3 {
		margin-bottom: 27px;
	}

	.hospital-item .hospital-item--content {
		padding-left: 0;
	}

	.hospital-item .hospital-item--content ul {
		margin-left: 90px;
	}

	.hospital-item .hospital-item--content ul li::before {
		width: 77px;
		left: -90px;
	}

	.hospital-item .hospital-item--content a {
		padding: 20px 0 0 90px;
		display: inline-block;
	}
}

.page-template-resources .hero p {
	font-size: 26px;
	max-width: 370px;
}

.page-template-resources .resource-load-more .button:hover {
	background: #1f1f1f;
	border-color: #1f1f1f;
}

@media (max-width: 767px) {

	.section-filter .wrap {
		padding: 0;
	}
}

.filter {
	padding: 65px 40px;
	display: flex;
	position: relative;
}

.filter > h3 {
	cursor: pointer;
}

.filter h3 {
	font-weight: 400;
	max-width: 325px;
	width: 100%;
	position: relative;
	padding-left: 48px;
	margin-bottom: 0;
}

.filter h3::before,
.filter h3::after {
	background-color: #1f1f1f;
	content: "";
	display: block;
	font-size: 70px;
	height: 2px;
	position: absolute;
	left: 0;
	top: 21px;
	z-index: 4;
	width: 34px;
}

.filter h3::after {
	transition: all 0.25s;
	transform: rotate(90deg);
}

.filter label {
	font-size: 16px;
	line-height: 1;
}

.filter input[type="checkbox"] {
	padding: 0;
	width: 20px;
	height: 20px;
	background-color: transparent;
	border-radius: 50%;
	vertical-align: middle;
	border: 1px solid #1f1f1f;
	outline: none;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.filter input[type="checkbox"]:checked {
	background-color: #d6006d;
	border-color: #d6006d !important;
}

.filter.filter-categories {
	background: #f4f3f2;
}

.filter.filter-type-post {
	background: #1f1f1f;
	color: #f4f3f2;
}

.filter.filter-type-post h3 {
	color: #f4f3f2;
}

.filter.filter-type-post h3::before,
.filter.filter-type-post h3::after {
	background-color: #f4f3f2;
}

.filter.filter-type-post input[type="checkbox"] {
	border: 1px solid #f4f3f2;
}

.filter .filter-inputs {
	opacity: 0;
	height: 0;
	transition: all 0.5s ease-out;
}

.filter.expanded h3::after {
	opacity: 0;
}

.filter.expanded .filter-inputs {
	opacity: 1;
	height: auto;
	transition: all 0.5s ease-out;
}

@media (max-width: 991px) {

	.filter {
		flex-wrap: wrap;
	}

	.filter h3 {
		margin-bottom: 40px;
	}
}

.section-resources .row {
	margin: 0 -5px;
}

.section-resources .col-md-4 {
	padding: 0 5px;
	margin-bottom: 35px;
}

.section-resources .resource-load-more {
	margin-top: 80px;
	text-align: center;
}

.resource-item {
	position: relative;
	min-height: 300px;
	height: 100%;
	background: url(../images/resources.jpg);
	background-size: cover !important;
	background-position: center !important;
	border: 1px solid #1f1f1f;
}

.resource-item .resource-item-title {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: #fff;
	padding: 10px 18px;
}

.resource-item .resource-item-title p {
	font-size: 16px;
	line-height: 1;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.resource-item .resource-item-title h4 {
	line-height: 30px;
	margin-bottom: 0;
}

.resource-item.case-study,
.resource-item.video,
.resource-item.tutorial,
.resource-item.webinar {
	background: #1f1f1f;
	position: relative;
}

.resource-item.case-study .resource-item-title,
.resource-item.video .resource-item-title,
.resource-item.tutorial .resource-item-title,
.resource-item.webinar .resource-item-title {
	background: transparent;
	color: #f4f3f2;
	z-index: 1;
}

.resource-item.case-study .resource-item-title h4,
.resource-item.video .resource-item-title h4,
.resource-item.tutorial .resource-item-title h4,
.resource-item.webinar .resource-item-title h4 {
	color: #f4f3f2;
}

.resource-item.case-study::after,
.resource-item.video::after,
.resource-item.tutorial::after,
.resource-item.webinar::after {
	content: "";
	background-color: rgba(0, 0, 0, 0.4);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.resource-item.whitepaper::before,
.resource-item.whitepaper::before,
.resource-item.certification::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 18px;
	background-size: cover !important;
}

.resource-item.whitepaper {
	background: #fff;
}

.resource-item.whitepaper::before {
	background: url(../images/whitepaper.png);
	width: 65px;
	height: 58px;
}

.resource-item.certification {
	background: #f4f3f2;
	background-color: #f4f3f2;
}

.resource-item.certification .resource-item-title {
	background: transparent;
	z-index: 1;
}

.resource-item.certification::before {
	background: url(../images/certification.svg);
	width: 50px;
	height: 60px;
}

.resource-item.certification::after {
	content: "";
	background-color: rgba(244, 243, 242, 0.5);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.resource-item.video {
	background: url(../images/resources-video.png);
}

.resource-item.case-study {
	background: #414141;
}

.resource-item.case-study {
	background-color: #414141;
}

.resource-item.tutorial {
	background-color: #1f1f1f;
}

.resource-item.webinar {
	background-color: #1f1f1f;
}

.resource-item.blog {
	background-color: #1f1f1f;
	border-color: #1f1f1f;
}

.page-template-home hr {
	max-width: 1186px;
	height: 2px;
	background-color: #000;
	margin: 130px auto 0;
}

.page-template-home h2 {
	font-size: 140px;
	line-height: 1;
	font-weight: 400;
	letter-spacing: -5.6px;
}

@media (max-width: 767px) {

	.page-template-home h2 {
		font-size: 80px;
	}

	.page-template-home hr {
		margin-top: 80px;
	}
}

@media (max-width: 420px) {

	.page-template-home h2 {
		font-size: 55px;
	}
}

body.page {
	margin: 0;
}

.hero-home {
	background: #1f1f1f;
	padding: 150px 0 20px;
	color: #f4f3f2;
}

.hero-home .hero-home-inner {
	margin: 70px 0 90px;
}

.hero-home h1 {
	font-size: 180px;
	color: #f4f3f2;
	line-height: 0.8;
	margin-bottom: 30px;
}

.hero-home p {
	font-size: 26px;
	line-height: 30px;
	font-weight: 500;
	max-width: 445px;
	margin-bottom: 55px;
}

.hero-home .cta-consultation {
	display: block;
	max-width: 180px;
	position: relative;
	text-decoration: none;
	width: 100%;
}

.hero-home .cta-consultation::before,
.hero-home .cta-consultation::after {
	background-color: #fff;
	content: "";
	height: 4px;
	width: 33px;
	position: absolute;
	left: 50%;
	top: 49%;
	transition: all 0.35s;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.hero-home .cta-consultation::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.hero-home .cta-consultation img {
	display: block;
	height: auto;
	width: 100%;
	transition: all 0.65s;
}

.hero-home .cta-consultation:hover::before,
.hero-home .cta-consultation:hover::after {
	background-color: #1f1f1f;
}

.hero-home .cta-consultation:hover img {
	transform: rotate(40deg);
}

.hero-home .hero-img {
	height: 100%;
	position: relative;
}

.hero-home .hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 94.4% 50%;
}

.hero-home .hero-img::before {
	content: "";
	position: absolute;
	background: url(../images/arrow-black-vert.png);
	max-height: 550px;
	max-width: 391px;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: bottom;
	bottom: 120px;
	left: 50%;
	transform: translate(-50%, 0);
	opacity: 0;
	transition: all 0.65s ease;
	transition-delay: 0.5s;
}

.hero-home .hero-img.animate-arrow::before {
	opacity: 1;
	bottom: -5px;
}

@media (max-width: 767px) {

	.hero-home .hero-home-inner {
		margin: 30px 0 40px;
	}

	.hero-home h1 {
		font-size: 120px;
		margin-bottom: 20px;
	}

	.hero-home .cta-consultation {
		max-width: 160px;
	}

	.hero-home .hero-img {
		height: 320px;
	}

	.hero-home .hero-img::before {
		max-height: 250px;
		max-width: 250px;
	}
}

@media (max-width: 380px) {

	.hero-home h1 {
		font-size: 85px;
	}
}

.section-media-button {
	padding-bottom: 130px;
}

.section-media-button .content-text {
	margin-bottom: 70px;
}

.section-media-button picture {
	display: block;
	position: relative;
	width: 100%;
	height: 1px;
	padding-bottom: 561px;
}

.section-media-button picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

@media (max-width: 767px) {

	.section-media-button {
		padding: 40px 0 120px;
	}

	.section-media-button .content-text {
		margin-bottom: 30px;
	}
}

@media (max-width: 390px) {

	.section-media-button picture {
		padding-bottom: 400px;
	}
}

.section-settings {
	background: #f4f3f2;
	padding: 125px 0 10px;
}

.section-settings .row {
	margin: 0 -40px 125px;
	align-items: center;
}

.section-settings .row .col-lg-6 {
	padding: 0 40px;
}

.section-settings .content-text {
	max-width: 550px;
}

.section-settings .content-text h3 {
	font-weight: 400;
	letter-spacing: 0;
}

.section-settings .content-text p {
	margin-bottom: 0;
}

.section-settings img {
	height: 400px;
	max-width: 551px;
	width: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 991px) {

	.section-settings {
		padding: 100px 0 60px;
	}

	.section-settings .row {
		margin-bottom: 40px;
	}

	.section-settings .content-text {
		max-width: 100%;
	}

	.section-settings .content-text p {
		margin-bottom: 85px;
	}

	.section-settings img {
		margin: 0 auto;
	}
}

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

.link-arrow {
	font-size: 50px;
	line-height: 1;
	display: inline-block;
	letter-spacing: -2px;
	color: #1f1f1f !important;
	text-decoration: none;
	position: relative;
	transition: all 0.35s ease-in-out;
	margin-right: 75px;
}

.link-arrow.link-white {
	color: #f4f3f2 !important;
}

.link-arrow.link-white::before {
	background: url(../images/arrow-light.svg);
}

.link-arrow::before {
	transition: all 0.35s ease-in-out;
	content: "";
	width: 50px;
	height: 27px;
	position: absolute;
	right: -70px;
	top: 55%;
	transform: translate(0, -50%);
	background: url(../images/arrow-black.svg);
	background-size: cover !important;
}

.link-arrow:hover {
	transition: all 0.35s ease-in-out;
	color: #d6006d !important;
}

.link-arrow:hover::before {
	transition: all 0.35s ease-in-out;
	background: url(../images/arrow-magenta.svg);
	transform: translate(20px, -50%);
}

@media (max-width: 767px) {

	.link-arrow {
		font-size: 40px;
	}
}

@media (max-width: 380px) {

	.link-arrow {
		font-size: 30px;
	}
}

.section-topics {
	background: #1f1f1f;
	color: #f4f3f2;
}

.section-topics h2 {
	color: #f4f3f2;
	margin-bottom: 100px;
}

.section-topics .topics-item {
	max-width: 790px;
	display: flex;
	margin: 0 0 25px auto;
	padding-top: 30px;
	border-top: 2px solid #1f1f1f;
	transition: all 0.5s ease;
	text-decoration: none;
}

.section-topics .topics-item h3 {
	color: #f4f3f2;
	max-width: 375px;
	letter-spacing: 0;
}

.section-topics .topics-item .topics-item-text {
	max-width: 380px;
	margin-left: auto;
	position: relative;
}

.section-topics .topics-item .topics-item-text p {
	margin-bottom: 40px;
}

.section-topics .topics-item .topics-item-text span {
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translate(0, -8px);
	opacity: 0;
	transition: all 0.5s ease;
}

.section-topics .topics-item .topics-item-text span img {
	width: 31px;
}

.section-topics .topics-item:hover {
	border-top: 3px solid #d6006d;
	color: #f4f3f2;
	transition: all 0.5s ease;
}

.section-topics .topics-item:hover .topics-item-text span {
	transform: translate(0, 0);
	opacity: 1;
	transition: all 0.5s ease;
}

.section-topics .topics-button {
	text-align: right;
	margin-top: 50px;
}

@media (max-width: 767px) {

	.section-topics h2 {
		margin-bottom: 40px;
	}

	.section-topics .topics-item {
		flex-wrap: wrap;
	}

	.section-topics .topics-item h3 {
		width: 100%;
		max-width: 100%;
		font-weight: 400;
	}

	.section-topics .topics-item .topics-item-text {
		max-width: 100%;
		margin-left: 0;
	}
}

.section-testimonial {
	background: #f4f3f2;
}

.section-testimonial h2 {
	text-align: end;
	margin-bottom: 95px;
}

.section-testimonial hr {
	margin-top: 90px;
}

.section-testimonial .slick-dots {
	top: -60px;
	bottom: inherit;
	width: auto;
}

.section-testimonial .slick-dots li {
	margin: 0;
	width: 12px;
}

.section-testimonial .slick-dots li button::before {
	height: 15px;
	width: 2px;
	content: "";
	background: #1f1f1f;
	opacity: 1;
}

.section-testimonial .slick-dots li.slick-active button::before {
	background: #d6006d;
}

@media (max-width: 767px) {

	.section-testimonial hr {
		margin-top: 80px;
	}
}

.testimonial-item p {
	margin-bottom: 15px;
	max-width: 805px;
}

.testimonial-item span {
	display: block;
	color: #d6006d;
	font-style: italic;
	font-weight: 300;
}

.section-heading-button {
	align-items: center;
	justify-content: space-between;
	margin-bottom: 70px !important;
}

.section-heading-button h2 {
	margin-bottom: 0;
}

.section-heading-button a {
	margin-top: 28px;
}

.section-products {
	position: relative;
	padding-top: 230px;
}

.section-products .row {
	margin-left: -17px;
	margin-right: -17px;
}

.section-products div[class*="col-"] {
	display: flex;
	flex-direction: column;
	padding: 0 17px;
}

@media (max-width: 767px) {

	.section-products {
		padding-bottom: 90px;
	}
}

.product-item {
	flex: 1 1 0%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
}

.product-item img {
	margin-bottom: 5px;
}

.product-item h4 {
	margin-bottom: 10px;
}

.product-item p {
	font-weight: 500;
	margin-bottom: 15px;
}

@media (max-width: 767px) {

	.product-item {
		margin-bottom: 45px;
	}
}

.float-obj-top {
	position: absolute;
	max-width: 1266px;
	padding: 0 40px;
	width: 100%;
	margin: 0 auto;
	top: 0;
	left: 0;
	right: 0;
}

.float-obj-top img {
	height: 151px;
	width: 100%;
	object-fit: cover;
}

@media (min-width: 991px) {

	.row.row-reverse-desktop {
		flex-direction: row-reverse;
	}
}

.section-button {
	padding-bottom: 130px;
}
