@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/**
 * [Table of contents]
 *   1 Base
 *     1.1 Reset Styles
 *     1.2 Context Styles
 *     1.3 Page layout
 *     1.4 Offsets
 *   2 Utilities
 *     2.1 Text styling
 *     2.2 Row spacing
 *     2.3 Sections
 *     2.4 Grid modules
 *     2.5 Backgrounds
 *     2.6 Utilities custom
 *   3 Components
 *     3.1 Typography
 *     3.2 Brand
 *     3.3 Links
 *     3.4 Blocks
 *     3.5 Boxes
 *     3.6 Groups
 *     3.7 Responsive units
 *     3.8 Lists
 *     3.9 Images
 *     3.10 Icons
 *     3.11 Tables custom
 *     3.12 Dividers
 *     3.13 Buttons
 *     3.14 Forms
 *     3.15 Posts
 *     3.16 Quotes
 *     3.17 Thumbnails
 *     3.18 Breadcrumbs
 *     3.19 Pagination custom
 *     3.20 Snackbars
 *     3.21 Footers
 *   4 Plugins
 *     4.1 Animate
 *     4.2 Preloader
 *     4.3 ToTop
 *     4.4 RD Navbar
 *     4.5 Swiper
 *     4.6 Google Map
 *     4.7 Search Results
 *     4.8 Isotope
 *     4.9 Nav custom
 *     4.10 Panel custom
 *     4.11 Tooltop Custom
 *     4.12 Counter
 *     4.13 Progress Bars
 *     4.14 Progress Circle
 *     4.15 Countdown
 *     4.16 Owl Carousel
 *     4.17 Lightgallery
 *     4.18 Material Parallax
 *     4.19 Bootstrap Modal
 *     4.20 Vide
 */
/** @group Base */
/** @section Reset Styles*/
a:focus,
button:focus {
	outline: none !important;
}

button::-moz-focus-inner {
	border: 0;
}

*:focus {
	outline: none;
}

blockquote {
	padding: 0;
	margin: 0;
}

input,
button,
select,
textarea {
	outline: none;
}

button {
	padding: 0;
}

label {
	margin-bottom: 0;
}

p {
	margin: 0;
}

ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul li,
ol li {
	display: block;
}

dl {
	margin: 0;
}

dt,
dd {
	line-height: inherit;
}

dt {
	font-weight: inherit;
}

dd {
	margin-bottom: 0;
}

cite {
	font-style: normal;
}

form {
	margin-bottom: 0;
}

blockquote {
	padding-left: 0;
	border-left: 0;
}

address {
	margin-top: 0;
	margin-bottom: 0;
}

figure {
	margin-bottom: 0;
}

html p a:hover {
	text-decoration: none;
}

/** @section Context Styles */
.context-dark,
.bg-gray-700,
.bg-primary,
.context-dark h1,
.bg-gray-700 h1,
.bg-primary h1,
.context-dark h2,
.bg-gray-700 h2,
.bg-primary h2,
.context-dark h3,
.bg-gray-700 h3,
.bg-primary h3,
.context-dark h4,
.bg-gray-700 h4,
.bg-primary h4,
.context-dark h5,
.bg-gray-700 h5,
.bg-primary h5,
.context-dark h6,
.bg-gray-700 h6,
.bg-primary h6,
.context-dark .h1,
.bg-gray-700 .h1,
.bg-primary .h1,
.context-dark .h2,
.bg-gray-700 .h2,
.bg-primary .h2,
.context-dark .h3,
.bg-gray-700 .h3,
.bg-primary .h3,
.context-dark .h4,
.bg-gray-700 .h4,
.bg-primary .h4,
.context-dark .h5,
.bg-gray-700 .h5,
.bg-primary .h5,
.context-dark .h6,
.bg-gray-700 .h6,
.bg-primary .h6 {
	color: #ffffff;
}

/** @section Page layout */
.page {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	opacity: 0;
}

.page.fadeIn {
	animation-timing-function: ease-out;
}

.page.fadeOut {
	animation-timing-function: ease-in;
}

[data-x-mode] .page {
	opacity: 1;
}

.header-absolute {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 100;
}

/** @section Offsets */
*+p {
	margin-top: 15px;
}

*+h1,
*+.h1 {
	margin-top: 20px;
}

@media (min-width: 1200px) {

	*+h1,
	*+.h1 {
		margin-top: 30px;
	}
}

h1+p {
	margin-top: 25px;
}

*+h2,
*+.h2 {
	margin-top: 20px;
}

p+h2,
p+.h2 {
	margin-top: 15px;
}

h2+p,
.h2+p {
	margin-top: 15px;
}

@media (min-width: 1200px) {

	h2+p,
	.h2+p {
		margin-top: 34px;
	}
}

h1+.text-md {
	margin-top: 25px;
}

*+.btn {
	margin-top: 30px;
}

*+.container {
	margin-top: 30px;
}

*+.row {
	margin-top: 30px;
}

*+.button {
	margin-top: 30px;
}

@media (min-width: 992px) {
	.section-intro *+.button {
		margin-top: 40px;
	}
}

@media (min-width: 1200px) {
	.section-intro *+.button {
		margin-top: 60px;
	}
}

.offset-top-20 {
	margin-top: 20px;
}

@media (min-width: 1200px) {
	.offset-xl-20 {
		margin-top: 20px;
	}
}

@media (min-width: 1200px) {
	.offset-xl-30 {
		margin-top: 30px;
	}
}

.offset-xl-60 {
	margin-top: 20px;
}

@media (min-width: 1200px) {
	.offset-xl-60 {
		margin-top: 60px;
	}
}

@media (min-width: 1200px) {
	.inset-xl-50 {
		padding-left: 50px;
	}
}

@media (min-width: 1200px) {
	.inset-left-85 {
		padding-left: 85px !important;
	}
}

/** @group Utilities */
/** @section Text styling */
.text-italic {
	font-style: italic;
}

.text-normal {
	font-style: normal;
}

.text-underline {
	text-decoration: underline;
}

.text-strike {
	text-decoration: line-through;
}

.font-weight-thin {
	font-weight: 100;
}

.font-weight-extra-light {
	font-weight: 200;
}

.font-weight-light {
	font-weight: 300;
}

.font-weight-regular {
	font-weight: 400;
}

.font-weight-medium {
	font-weight: 500;
}

.font-weight-semi-bold {
	font-weight: 600;
}

.font-weight-bold {
	font-weight: 700;
}

.font-weight-extra-bold {
	font-weight: 800;
}

.font-weight-black {
	font-weight: 900;
}

.text-spacing-0 {
	letter-spacing: 0;
}

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

.text-md {
	font-size: 20px;
}

.font-secondary {
	font-family: 'Oswald', sans-serif;
}

/** @section Row spacing */
.row-0 {
	margin-bottom: 0px;
}

.row-0:empty {
	margin-bottom: 0;
}

.row-0>* {
	margin-bottom: 0px;
}

.row-15 {
	margin-bottom: -15px;
}

.row-15:empty {
	margin-bottom: 0;
}

.row-15>* {
	margin-bottom: 15px;
}

.row-20 {
	margin-bottom: -20px;
}

.row-20:empty {
	margin-bottom: 0;
}

.row-20>* {
	margin-bottom: 20px;
}

.row-30 {
	margin-bottom: -30px;
}

.row-30:empty {
	margin-bottom: 0;
}

.row-30>* {
	margin-bottom: 30px;
}

.row-40 {
	margin-bottom: -40px;
}

.row-40:empty {
	margin-bottom: 0;
}

.row-40>* {
	margin-bottom: 40px;
}

.row-50 {
	margin-bottom: -50px;
}

.row-50:empty {
	margin-bottom: 0;
}

.row-50>* {
	margin-bottom: 50px;
}

.row-xl-50 {
	margin-bottom: -30px;
}

.row-xl-50:empty {
	margin-bottom: 0;
}

.row-xl-50>* {
	margin-bottom: 30px;
}

@media (min-width: 1200px) {
	.row-xl-50 {
		margin-bottom: -50px;
	}

	.row-xl-50:empty {
		margin-bottom: 0;
	}

	.row-xl-50>* {
		margin-bottom: 50px;
	}
}

.row-xl-60 {
	margin-bottom: -40px;
}

.row-xl-60:empty {
	margin-bottom: 0;
}

.row-xl-60>* {
	margin-bottom: 40px;
}

@media (min-width: 1200px) {
	.row-xl-60 {
		margin-bottom: -60px;
	}

	.row-xl-60:empty {
		margin-bottom: 0;
	}

	.row-xl-60>* {
		margin-bottom: 60px;
	}
}

.row-xxl-60 {
	margin-bottom: -30px;
}

.row-xxl-60:empty {
	margin-bottom: 0;
}

.row-xxl-60>* {
	margin-bottom: 30px;
}

@media (min-width: 1200px) {
	.row-xxl-60 {
		margin-bottom: -60px;
	}

	.row-xxl-60:empty {
		margin-bottom: 0;
	}

	.row-xxl-60>* {
		margin-bottom: 60px;
	}
}

.row-xl-90 {
	margin-bottom: -30px;
}

.row-xl-90:empty {
	margin-bottom: 0;
}

.row-xl-90>* {
	margin-bottom: 30px;
}

@media (min-width: 1200px) {
	.row-xl-90 {
		margin-bottom: -90px;
	}

	.row-xl-90:empty {
		margin-bottom: 0;
	}

	.row-xl-90>* {
		margin-bottom: 90px;
	}
}

*+.row-xl {
	margin-top: 40px;
}

@media (min-width: 1200px) {
	*+.row-xl {
		margin-top: 50px;
	}
}

.row-xl-70 {
	margin-bottom: -40px;
}

.row-xl-70:empty {
	margin-bottom: 0;
}

.row-xl-70>* {
	margin-bottom: 40px;
}

@media (min-width: 1200px) {
	.row-xl-70 {
		margin-bottom: -70px;
	}

	.row-xl-70:empty {
		margin-bottom: 0;
	}

	.row-xl-70>* {
		margin-bottom: 70px;
	}
}

.row-narrow {
	margin-right: -5px;
	margin-left: -5px;
}

.row-narrow>.col,
.row-narrow>[class*="col-"] {
	padding-right: 5px;
	padding-left: 5px;
}

@media (min-width: 1200px) {
	.row-narrow-50 {
		margin-right: -25px;
		margin-left: -25px;
	}

	.row-narrow-50>.col,
	.row-narrow-50>[class*="col-"] {
		padding-right: 25px;
		padding-left: 25px;
	}
}

@media (min-width: 1200px) {
	.row-narrow-60 {
		margin-right: -30px;
		margin-left: -30px;
	}

	.row-narrow-60>.col,
	.row-narrow-60>[class*="col-"] {
		padding-right: 30px;
		padding-left: 30px;
	}
}

@media (min-width: 1200px) {
	.row-narrow-100 {
		margin-right: -50px;
		margin-left: -50px;
	}

	.row-narrow-100>.col,
	.row-narrow-100>[class*="col-"] {
		padding-right: 50px;
		padding-left: 50px;
	}
}

@media (min-width: 1200px) {
	.row-narrow-180 {
		margin-right: -90px;
		margin-left: -90px;
	}

	.row-narrow-180>.col,
	.row-narrow-180>[class*="col-"] {
		padding-right: 90px;
		padding-left: 90px;
	}
}

@media (min-width: 1200px) {
	.row-narrow-220 {
		margin-right: -110px;
		margin-left: -110px;
	}

	.row-narrow-220>.col,
	.row-narrow-220>[class*="col-"] {
		padding-right: 110px;
		padding-left: 110px;
	}
}

@media (min-width: 992px) {
	.custom-row-5>.col-lg-2 {
		max-width: calc(100% / 5);
		flex: 0 0 calc(100% / 5);
	}
}

/** @section Sections */
.section-xs {
	padding: 25px 0;
}

.section-sm,
.section-md,
.section-lg,
.section-xl {
	padding: 50px 0;
}

.section-collapse+.section-collapse {
	padding-top: 0;
}

.section-collapse:last-child {
	padding-bottom: 0;
}

html [class*='section-'].section-bottom-0 {
	padding-bottom: 0;
}

@media (max-width: 991.98px) {

	section.section-sm:first-of-type,
	section.section-md:first-of-type,
	section.section-lg:first-of-type,
	section.section-xl:first-of-type,
	section.section-xxl:first-of-type {
		padding-top: 100px;
	}
}

@media (min-width: 768px) {
	.section-sm {
		padding: 60px 0;
	}

	.section-md {
		padding: 80px 0;
	}

	.section-lg {
		padding: 85px 0;
	}
}

@media (min-width: 992px) {
	.section-md {
		padding: 90px 0 90px;
	}

	.section-lg {
		padding: 100px 0;
	}
}

@media (min-width: 1200px) {
	.section-lg {
		padding: 115px 0;
	}
}

.section-single {
	display: flex;
	text-align: center;
}

.section-single p {
	margin-left: auto;
	margin-right: auto;
}

.section-single *+.rights {
	margin-top: 35px;
}

@media (min-width: 992px) {
	.section-single *+.rights {
		margin-top: 60px;
	}
}

.section-single .mailform-wrap {
	max-width: 670px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section-single *+.mailform-wrap {
	margin-top: 20px;
}

.section-single-header {
	padding: calc(1em + 3vh) 0 calc(1em + 2vh);
}

.section-single-main {
	padding: calc(1em + 4vh) 0;
}

.section-single-footer {
	padding: calc(1em + 2vh) 0 calc(1em + 3vh);
}

.section-single-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 100vh;
}

.section-single-inner>* {
	width: 100%;
}

.section-intro {
	background: linear-gradient(to right, #2a29299e, #2a29299e), url("../images/graphics/blurred-office-table-background-with-businessman-on-hourglass-on-working-management-black-concept-time.jpg") no-repeat center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 40.10417vw;
}

@media (min-width: 992px) {
	.section-intro {
		padding-top: 220px;
	}
}

@media (min-width: 1200px) {
	.section-intro {
		min-height: 100vh;
	}
}

.ie-10 .section-intro,
.ie-11 .section-intro {
	height: 100vh;
}

.section-double-bg {
	position: relative;
	overflow: hidden;
}

.section-double-bg:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 450px;
	background-color: var(--dark-bg);
}

@media (min-width: 1200px) {
	.section-double-bg:before {
		height: 100%;
	}
}

/** @section Grid modules */
.grid-demo {
	letter-spacing: 0;
	text-align: center;
}

.grid-demo p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.grid-demo *+p {
	margin-top: 5px;
}

.grid-demo *+.row {
	margin-top: 20px;
}

.grid-demo .row+.row {
	margin-top: 0;
}

@media (min-width: 1200px) {
	.grid-demo {
		text-align: left;
	}

	.grid-demo p {
		white-space: normal;
		overflow: visible;
		text-overflow: unset;
	}

	.grid-demo *+p {
		margin-top: 25px;
	}
}

.grid-demo-bordered .row {
	border: 0 solid #d7d7d7;
	border-top-width: 1px;
}

.grid-demo-bordered .row:last-child {
	border-bottom-width: 1px;
}

.grid-demo-bordered [class*='col'] {
	padding: 5px 15px;
}

.grid-demo-bordered [class*='col']:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: -1px;
	border-left: 1px solid #d7d7d7;
}

@media (min-width: 768px) {
	.grid-demo-bordered [class*='col'] {
		padding: 30px;
	}
}

@media (min-width: 1200px) {
	.grid-demo-bordered [class*='col'] {
		padding: 50px 50px 45px;
	}
}

.grid-demo-underlined .row {
	border-bottom: 1px solid #d7d7d7;
}

.grid-demo-underlined [class*='col'] {
	padding: 5px 15px;
}

@media (min-width: 768px) {
	.grid-demo-underlined [class*='col'] {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}

@media (min-width: 1200px) {
	.grid-demo-underlined [class*='col'] {
		padding-top: 45px;
		padding-bottom: 45px;
	}
}

.row-narrow {
	margin-left: -5px;
	margin-right: -5px;
}

.row-narrow>[class*='col'] {
	padding-left: 5px;
	padding-right: 5px;
}

.row-wide {
	margin-left: -25px;
	margin-right: -25px;
}

.row-wide>[class*='col'] {
	padding-left: 25px;
	padding-right: 25px;
}

.row-ten .col-1 {
	flex: 0 0 10%;
	max-width: 10%;
}

.row-ten .col-2 {
	flex: 0 0 20%;
	max-width: 20%;
}

.row-ten .col-3 {
	flex: 0 0 30%;
	max-width: 30%;
}

.row-ten .col-4 {
	flex: 0 0 40%;
	max-width: 40%;
}

.row-ten .col-5 {
	flex: 0 0 50%;
	max-width: 50%;
}

.row-ten .col-6 {
	flex: 0 0 60%;
	max-width: 60%;
}

.row-ten .col-7 {
	flex: 0 0 70%;
	max-width: 70%;
}

.row-ten .col-8 {
	flex: 0 0 80%;
	max-width: 80%;
}

.row-ten .col-9 {
	flex: 0 0 90%;
	max-width: 90%;
}

.row-ten .col-10 {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width: 576px) {
	.row-ten .col-sm-1 {
		flex: 0 0 10%;
		max-width: 10%;
	}

	.row-ten .col-sm-2 {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.row-ten .col-sm-3 {
		flex: 0 0 30%;
		max-width: 30%;
	}

	.row-ten .col-sm-4 {
		flex: 0 0 40%;
		max-width: 40%;
	}

	.row-ten .col-sm-5 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.row-ten .col-sm-6 {
		flex: 0 0 60%;
		max-width: 60%;
	}

	.row-ten .col-sm-7 {
		flex: 0 0 70%;
		max-width: 70%;
	}

	.row-ten .col-sm-8 {
		flex: 0 0 80%;
		max-width: 80%;
	}

	.row-ten .col-sm-9 {
		flex: 0 0 90%;
		max-width: 90%;
	}

	.row-ten .col-sm-10 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 768px) {
	.row-ten .col-md-1 {
		flex: 0 0 10%;
		max-width: 10%;
	}

	.row-ten .col-md-2 {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.row-ten .col-md-3 {
		flex: 0 0 30%;
		max-width: 30%;
	}

	.row-ten .col-md-4 {
		flex: 0 0 40%;
		max-width: 40%;
	}

	.row-ten .col-md-5 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.row-ten .col-md-6 {
		flex: 0 0 60%;
		max-width: 60%;
	}

	.row-ten .col-md-7 {
		flex: 0 0 70%;
		max-width: 70%;
	}

	.row-ten .col-md-8 {
		flex: 0 0 80%;
		max-width: 80%;
	}

	.row-ten .col-md-9 {
		flex: 0 0 90%;
		max-width: 90%;
	}

	.row-ten .col-md-10 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 992px) {
	.row-ten .col-lg-1 {
		flex: 0 0 10%;
		max-width: 10%;
	}

	.row-ten .col-lg-2 {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.row-ten .col-lg-3 {
		flex: 0 0 30%;
		max-width: 30%;
	}

	.row-ten .col-lg-4 {
		flex: 0 0 40%;
		max-width: 40%;
	}

	.row-ten .col-lg-5 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.row-ten .col-lg-6 {
		flex: 0 0 60%;
		max-width: 60%;
	}

	.row-ten .col-lg-7 {
		flex: 0 0 70%;
		max-width: 70%;
	}

	.row-ten .col-lg-8 {
		flex: 0 0 80%;
		max-width: 80%;
	}

	.row-ten .col-lg-9 {
		flex: 0 0 90%;
		max-width: 90%;
	}

	.row-ten .col-lg-10 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 1200px) {
	.row-ten .col-xl-1 {
		flex: 0 0 10%;
		max-width: 10%;
	}

	.row-ten .col-xl-2 {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.row-ten .col-xl-3 {
		flex: 0 0 30%;
		max-width: 30%;
	}

	.row-ten .col-xl-4 {
		flex: 0 0 40%;
		max-width: 40%;
	}

	.row-ten .col-xl-5 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.row-ten .col-xl-6 {
		flex: 0 0 60%;
		max-width: 60%;
	}

	.row-ten .col-xl-7 {
		flex: 0 0 70%;
		max-width: 70%;
	}

	.row-ten .col-xl-8 {
		flex: 0 0 80%;
		max-width: 80%;
	}

	.row-ten .col-xl-9 {
		flex: 0 0 90%;
		max-width: 90%;
	}

	.row-ten .col-xl-10 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 1600px) {
	.row-ten .col-xxl-1 {
		flex: 0 0 10%;
		max-width: 10%;
	}

	.row-ten .col-xxl-2 {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.row-ten .col-xxl-3 {
		flex: 0 0 30%;
		max-width: 30%;
	}

	.row-ten .col-xxl-4 {
		flex: 0 0 40%;
		max-width: 40%;
	}

	.row-ten .col-xxl-5 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.row-ten .col-xxl-6 {
		flex: 0 0 60%;
		max-width: 60%;
	}

	.row-ten .col-xxl-7 {
		flex: 0 0 70%;
		max-width: 70%;
	}

	.row-ten .col-xxl-8 {
		flex: 0 0 80%;
		max-width: 80%;
	}

	.row-ten .col-xxl-9 {
		flex: 0 0 90%;
		max-width: 90%;
	}

	.row-ten .col-xxl-10 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 1200px) {
	.row-xl-ten .col-1 {
		flex: 0 0 10%;
		max-width: 10%;
	}

	.row-xl-ten .col-2 {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.row-xl-ten .col-3 {
		flex: 0 0 30%;
		max-width: 30%;
	}

	.row-xl-ten .col-4 {
		flex: 0 0 40%;
		max-width: 40%;
	}

	.row-xl-ten .col-5 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.row-xl-ten .col-6 {
		flex: 0 0 60%;
		max-width: 60%;
	}

	.row-xl-ten .col-7 {
		flex: 0 0 70%;
		max-width: 70%;
	}

	.row-xl-ten .col-8 {
		flex: 0 0 80%;
		max-width: 80%;
	}

	.row-xl-ten .col-9 {
		flex: 0 0 90%;
		max-width: 90%;
	}

	.row-xl-ten .col-10 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 1200px) and (min-width: 576px) {
	.row-xl-ten .col-sm-1 {
		flex: 0 0 10%;
		max-width: 10%;
	}

	.row-xl-ten .col-sm-2 {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.row-xl-ten .col-sm-3 {
		flex: 0 0 30%;
		max-width: 30%;
	}

	.row-xl-ten .col-sm-4 {
		flex: 0 0 40%;
		max-width: 40%;
	}

	.row-xl-ten .col-sm-5 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.row-xl-ten .col-sm-6 {
		flex: 0 0 60%;
		max-width: 60%;
	}

	.row-xl-ten .col-sm-7 {
		flex: 0 0 70%;
		max-width: 70%;
	}

	.row-xl-ten .col-sm-8 {
		flex: 0 0 80%;
		max-width: 80%;
	}

	.row-xl-ten .col-sm-9 {
		flex: 0 0 90%;
		max-width: 90%;
	}

	.row-xl-ten .col-sm-10 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 1200px) and (min-width: 768px) {
	.row-xl-ten .col-md-1 {
		flex: 0 0 10%;
		max-width: 10%;
	}

	.row-xl-ten .col-md-2 {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.row-xl-ten .col-md-3 {
		flex: 0 0 30%;
		max-width: 30%;
	}

	.row-xl-ten .col-md-4 {
		flex: 0 0 40%;
		max-width: 40%;
	}

	.row-xl-ten .col-md-5 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.row-xl-ten .col-md-6 {
		flex: 0 0 60%;
		max-width: 60%;
	}

	.row-xl-ten .col-md-7 {
		flex: 0 0 70%;
		max-width: 70%;
	}

	.row-xl-ten .col-md-8 {
		flex: 0 0 80%;
		max-width: 80%;
	}

	.row-xl-ten .col-md-9 {
		flex: 0 0 90%;
		max-width: 90%;
	}

	.row-xl-ten .col-md-10 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 1200px) and (min-width: 992px) {
	.row-xl-ten .col-lg-1 {
		flex: 0 0 10%;
		max-width: 10%;
	}

	.row-xl-ten .col-lg-2 {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.row-xl-ten .col-lg-3 {
		flex: 0 0 30%;
		max-width: 30%;
	}

	.row-xl-ten .col-lg-4 {
		flex: 0 0 40%;
		max-width: 40%;
	}

	.row-xl-ten .col-lg-5 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.row-xl-ten .col-lg-6 {
		flex: 0 0 60%;
		max-width: 60%;
	}

	.row-xl-ten .col-lg-7 {
		flex: 0 0 70%;
		max-width: 70%;
	}

	.row-xl-ten .col-lg-8 {
		flex: 0 0 80%;
		max-width: 80%;
	}

	.row-xl-ten .col-lg-9 {
		flex: 0 0 90%;
		max-width: 90%;
	}

	.row-xl-ten .col-lg-10 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 1200px) and (min-width: 1200px) {
	.row-xl-ten .col-xl-1 {
		flex: 0 0 10%;
		max-width: 10%;
	}

	.row-xl-ten .col-xl-2 {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.row-xl-ten .col-xl-3 {
		flex: 0 0 30%;
		max-width: 30%;
	}

	.row-xl-ten .col-xl-4 {
		flex: 0 0 40%;
		max-width: 40%;
	}

	.row-xl-ten .col-xl-5 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.row-xl-ten .col-xl-6 {
		flex: 0 0 60%;
		max-width: 60%;
	}

	.row-xl-ten .col-xl-7 {
		flex: 0 0 70%;
		max-width: 70%;
	}

	.row-xl-ten .col-xl-8 {
		flex: 0 0 80%;
		max-width: 80%;
	}

	.row-xl-ten .col-xl-9 {
		flex: 0 0 90%;
		max-width: 90%;
	}

	.row-xl-ten .col-xl-10 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 1200px) and (min-width: 1600px) {
	.row-xl-ten .col-xxl-1 {
		flex: 0 0 10%;
		max-width: 10%;
	}

	.row-xl-ten .col-xxl-2 {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.row-xl-ten .col-xxl-3 {
		flex: 0 0 30%;
		max-width: 30%;
	}

	.row-xl-ten .col-xxl-4 {
		flex: 0 0 40%;
		max-width: 40%;
	}

	.row-xl-ten .col-xxl-5 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.row-xl-ten .col-xxl-6 {
		flex: 0 0 60%;
		max-width: 60%;
	}

	.row-xl-ten .col-xxl-7 {
		flex: 0 0 70%;
		max-width: 70%;
	}

	.row-xl-ten .col-xxl-8 {
		flex: 0 0 80%;
		max-width: 80%;
	}

	.row-xl-ten .col-xxl-9 {
		flex: 0 0 90%;
		max-width: 90%;
	}

	.row-xl-ten .col-xxl-10 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/** @section Backgrounds */
.context-dark .brand .brand-logo-dark,
.bg-gray-700 .brand .brand-logo-dark,
.bg-primary .brand .brand-logo-dark {
	display: none;
}

.context-dark .brand .brand-logo-light,
.bg-gray-700 .brand .brand-logo-light,
.bg-primary .brand .brand-logo-light {
	display: block;
}

.bg-default {
	background-color: #ffffff;
}

.bg-default:not([style*="background-"])+.bg-default:not([style*="background-"]) {
	padding-top: 0;
}

.bg-gray-100 {
	background-color: #edeff4;
}

.bg-gray-100:not([style*="background-"])+.bg-gray-100:not([style*="background-"]) {
	padding-top: 0;
}

.bg-gray-700 {
	background-color: #2c343b;
}

.bg-gray-700:not([style*="background-"])+.bg-gray-700:not([style*="background-"]) {
	padding-top: 0;
}

.bg-gray-light {
	background-color: var(--light-bg);
}

.bg-gray-light:not([style*="background-"])+.bg-gray-light:not([style*="background-"]) {
	padding-top: 0;
}

.bg-deep-blue {
	background-color: var(--dark-bg);
}

.bg-deep-blue:not([style*="background-"])+.bg-deep-blue:not([style*="background-"]) {
	padding-top: 0;
}

.bg-primary {
	background-color: var(--accent);
}

.bg-primary:not([style*="background-"])+.bg-primary:not([style*="background-"]) {
	padding-top: 0;
}

.bg-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media (min-width: 992px) {
	html:not(.tablet):not(.mobile) .bg-fixed {
		background-attachment: fixed;
	}
}

/** @section Utilities custom */
.height-fill {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.height-fill>* {
	flex-grow: 1;
	flex-shrink: 0;
}

.object-inline {
	white-space: nowrap;
}

.object-inline>* {
	display: inline-block;
	min-width: 20px;
	vertical-align: top;
	white-space: normal;
}

.object-inline>*+* {
	margin-left: 5px;
}

.oh {
	position: relative;
	overflow: hidden;
}

.text-decoration-lines {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.text-decoration-lines-content {
	position: relative;
	display: inline-block;
	min-width: 170px;
	font-size: 13px;
	text-transform: uppercase;
}

.text-decoration-lines-content::before,
.text-decoration-lines-content::after {
	content: '';
	position: absolute;
	height: 1px;
	background: #d7d7d7;
	top: 50%;
	width: 100vw;
}

.text-decoration-lines-content::before {
	left: 0;
	transform: translate3d(-100%, 0, 0);
}

.text-decoration-lines-content::after {
	right: 0;
	transform: translate3d(100%, 0, 0);
}

*+.text-decoration-lines {
	margin-top: 30px;
}

p.rights {
	font-size: 14px;
	color: #858D95;
}

p.rights a {
	color: inherit;
}

p.rights a:hover {
	color: var(--accent);
}

[style*='z-index: 1000;'] {
	z-index: 1101 !important;
}

.text-block>* {
	margin-left: .125em;
	margin-right: .125em;
}

.square-figure {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: var(--accent);
	transition: all ease .25s;
	padding: 9px;
}

.button .square-figure:hover {
	border-radius: 50%;
}

:root {
	--accent-c1: #D62536;
	--dark-bg-c1: #0B1B2B;
	--light-bg-c1: #F5F6F7;
	--text-on-dark-c1: #b3c5d9;
	--headers-c1: #545F6B;

	--accent-c2: #00A36C;
	--dark-bg-c2: #0D1A1C;
	--light-bg-c2: #F5F8F6;
	--text-on-dark-c2: #B0D9C8;
	--headers-c2: #4B665F;

	--accent-c3: #5178be;
	--dark-bg-c3: #0E122B;
	--light-bg-c3: #F2F5FF;
	--text-on-dark-c3: #B9C7E8;
	--headers-c3: #58638A;

	--accent-c4: #FFC300;
	--dark-bg-c4: #1A1C16;
	--light-bg-c4: #FCFDF6;
	--text-on-dark-c4: #D3D6CB;
	--headers-c4: #6A6D63;

	--accent-c5: #8C52FF;
	--dark-bg-c5: #140A1F;
	--light-bg-c5: #F8F6FD;
	--text-on-dark-c5: #C6B0D9;
	--headers-c5: #604D70;

	--accent-c6: #FF6600;
	--dark-bg-c6: #1F1A13;
	--light-bg-c6: #FFF8F0;
	--text-on-dark-c6: #D9CBB0;
	--headers-c6: #70664D;

	--accent-c7: #00BFFF;
	--dark-bg-c7: #0A1C29;
	--light-bg-c7: #F0F9FF;
	--text-on-dark-c7: #B0D9E6;
	--headers-c7: #4D6A75;

	--accent-c8: #E0115F;
	--dark-bg-c8: #150B1B;
	--light-bg-c8: #F7F2F8;
	--text-on-dark-c8: #D9B0C5;
	--headers-c8: #6B4D5E;

	--accent-c9: #CC6633;
	--dark-bg-c9: #19140A;
	--light-bg-c9: #FFFBEF;
	--text-on-dark-c9: #D9C8B0;
	--headers-c9: #6B5E4D;

	--accent-c10: #40E0D0;
	--dark-bg-c10: #0A1F1F;
	--light-bg-c10: #F0FFFF;
	--text-on-dark-c10: #B0D9D9;
	--headers-c10: #4D6B6B;

	--accent: var(--accent-c9);
	--dark-bg: var(--dark-bg-c9);
	--light-bg: var(--light-bg-c9);
	--text-on-dark: var(--text-on-dark-c9);
	--headers: var(--headers-c9);
}

/** @group Components */
/** @section Typography */
body {
	direction: ltr;
	font-family: 'Commissioner', sans-serif;
	font-size: 16px;
	line-height: 1.2;
	color: var(--headers);
	background-color: #ffffff;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.context-dark body {
	color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin-bottom: 0;
	font-weight: 700;
	font-family: 'Oswald', sans-serif;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
	color: inherit;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
.h1 a:hover,
.h2 a:hover,
.h3 a:hover,
.h4 a:hover,
.h5 a:hover,
.h6 a:hover {
	color: var(--accent);
}

h1,
.h1 {
	font-size: 44px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 700;
}

@media (min-width: 768px) {

	h1,
	.h1 {
		font-size: 57.6px;
	}
}

@media (min-width: 1200px) {

	h1,
	.h1 {
		font-size: 72px;
		line-height: 1.1;
	}
}

h2,
.h2 {
	font-size: 32px;
	line-height: 1.2;
}

@media (min-width: 768px) {

	h2,
	.h2 {
		font-size: 38.4px;
	}
}

@media (min-width: 1200px) {

	h2,
	.h2 {
		font-size: 48px;
	}
}

h3,
.h3 {
	font-size: 24px;
	line-height: 1.33333;
}

@media (min-width: 768px) {

	h3,
	.h3 {
		font-size: 28.8px;
	}
}

@media (min-width: 1200px) {

	h3,
	.h3 {
		font-size: 36px;
	}
}

h4,
.h4 {
	font-size: 22px;
	line-height: 1.36364;
}

@media (min-width: 768px) {

	h4,
	.h4 {
		font-size: 22px;
	}
}

h5,
.h5 {
	font-size: 18px;
	line-height: 1.44444;
}

h6,
.h6 {
	font-size: 16px;
	line-height: 1.5;
}

small,
.small {
	display: block;
	font-size: 12px;
	line-height: 1.5;
}

mark,
.mark {
	padding: 3px 5px;
	color: #ffffff;
	background: var(--accent);
}

.big {
	font-size: 18px;
	line-height: 1.55556;
}

.lead {
	font-size: 24px;
	line-height: 34px;
	font-weight: 300;
}

code {
	padding: 3px 5px;
	border-radius: 0.2rem;
	font-size: 90%;
	color: #111111;
	background: #edeff4;
}

p [data-toggle='tooltip'] {
	padding-left: .25em;
	padding-right: .25em;
	color: var(--accent);
}

p [style*='max-width'] {
	display: inline-block;
}

::selection {
	background: var(--accent);
	color: #ffffff;
}

::-moz-selection {
	background: var(--accent);
	color: #ffffff;
}

/** @section Brand */
.brand {
	display: inline-block;
}

.brand .brand-logo-light {
	display: none;
}

.brand .brand-logo-dark {
	display: block;
}

/** @section Links */
a {
	transition: all 0.3s ease-in-out;
}

a,
a:focus,
a:active,
a:hover {
	text-decoration: none;
}

a,
a:focus,
a:active {
	color: var(--accent);
}

a:hover {
	color: #951a26;
}

a[href*='tel'],
a[href*='mailto'] {
	white-space: nowrap;
}

.link-hover {
	color: #951a26;
}

.link-press {
	color: #951a26;
}

.link-creative {
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	display: inline-flex;
	align-items: center;
	font-size: 20px;
	font-weight: 700;
}

.link-creative .square {
	margin-left: 19px;
	width: 28px;
	height: 28px;
	background-color: var(--accent);
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.link-creative:hover {
	color: var(--dark-bg);
}

.link-creative:hover .square {
	transition: all 0.3s ease-in-out;
	background-color: var(--dark-bg);
}

*+.link-creative {
	margin-top: 20px;
}

@media (min-width: 1200px) {
	*+.link-creative {
		margin-top: 40px;
	}
}

.brand-link {
	overflow: hidden;
	display: block;
	text-align: center;
}

.brand-link img {
	transition: all 0.3s ease-in-out;
}

.brand-link:hover img {
	transform: scale(1.03);
	transition: all 0.3s ease-in-out;
}

.text-link {
	color: var(--accent);
	display: inline-block;
	text-decoration: underline;
	padding-left: 4px;
	padding-right: 4px;
	font-weight: 400;
}

.text-link:hover {
	color: #ffffff;
	text-decoration: underline;
}

.link-inverse,
.link-inverse:focus,
.link-inverse:active {
	color: var(--accent);
}

.link-inverse:hover {
	color: var(--dark-bg);
}

.phone-link,
.phone-link:focus,
.phone-link:active {
	color: var(--dark-bg);
}

.phone-link:hover {
	color: var(--accent);
}

/** @section Blocks */
.block-center,
.block-sm-2,
.block-md-2,
.block-lg,
.block-lg-2 {
	margin-left: auto;
	margin-right: auto;
}

.block-xs {
	max-width: 450px;
}

.block-sm {
	max-width: 560px;
}

@media (min-width: 1200px) {
	.block-sm-2 {
		max-width: 550px;
	}
}

.block-md {
	max-width: 700px;
}

.block-md-2 {
	max-width: 640px;
}

.block-lg {
	max-width: 768px;
}

.block-lg-2 {
	max-width: 840px;
}

.block-center {
	padding: 10px;
}

.block-center:hover .block-center-header {
	background-color: var(--accent);
}

.block-center-title {
	background-color: #ffffff;
}

@media (max-width: 1599.98px) {
	.block-center {
		padding: 20px;
	}

	.block-center:hover .block-center-header {
		background-color: #ffffff;
	}

	.block-center-header {
		background-color: var(--accent);
	}
}

/** @section Boxes */
.box-minimal {
	text-align: center;
}

.box-minimal .box-minimal-icon {
	font-size: 50px;
	line-height: 50px;
	color: var(--accent);
}

.box-minimal-divider {
	width: 36px;
	height: 4px;
	margin-left: auto;
	margin-right: auto;
	background: var(--accent);
}

.box-minimal-text {
	width: 100%;
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
}

*+.box-minimal {
	margin-top: 30px;
}

*+.box-minimal-title {
	margin-top: 10px;
}

*+.box-minimal-divider {
	margin-top: 20px;
}

*+.box-minimal-text {
	margin-top: 15px;
}

.context-dark .box-minimal p,
.bg-gray-700 .box-minimal p,
.bg-primary .box-minimal p {
	color: var(--headers);
}

.box-counter {
	position: relative;
	text-align: center;
	color: #2c343b;
}

.box-counter-title {
	display: inline-block;
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: -.025em;
}

.box-counter-main {
	font-family: 'Oswald', sans-serif;
	font-size: 45px;
	font-weight: 400;
	line-height: 1.2;
}

.box-counter-main>* {
	display: inline;
	font: inherit;
}

.box-counter-main .small {
	font-size: 28px;
}

.box-counter-main .small_top {
	position: relative;
	top: .2em;
	vertical-align: top;
}

.box-counter-divider {
	font-size: 0;
	line-height: 0;
}

.box-counter-divider::after {
	content: '';
	display: inline-block;
	width: 80px;
	height: 2px;
	background: var(--accent);
}

*+.box-counter-title {
	margin-top: 10px;
}

*+.box-counter-main {
	margin-top: 20px;
}

*+.box-counter-divider {
	margin-top: 10px;
}

@media (min-width: 768px) {
	.box-counter-title {
		font-size: 18px;
	}
}

@media (min-width: 1200px) {
	.box-counter-main {
		font-size: 60px;
	}

	.box-counter-main .small {
		font-size: 36px;
	}

	*+.box-counter-main {
		margin-top: 30px;
	}

	*+.box-counter-divider {
		margin-top: 15px;
	}

	*+.box-counter-title {
		margin-top: 18px;
	}
}

.bg-primary .box-counter {
	color: #ffffff;
}

.bg-primary .box-counter-divider::after {
	background: #ffffff;
}

.about-us-media-box {
	position: relative;
}

.about-us-media-box .float-item-1,
.about-us-media-box .float-item-2 {
	display: none;
}

@media (min-width: 1200px) {
	.about-us-media-box {
		padding-top: 156px;
		padding-bottom: 60px;
	}

	.about-us-media-box .float-item-1 {
		position: absolute;
		top: 0;
		right: 0;
		display: block;
	}

	.about-us-media-box .float-item-2 {
		position: absolute;
		left: 0;
		bottom: 0;
		display: block;
	}
}

.service-box-classic {
	position: relative;
	max-width: 390px;
	margin-left: auto;
	margin-right: auto;
	background-color: var(--dark-bg);
}

.service-box-classic img {
	height: 300px;
	width: 100%;
	object-fit: cover;
	opacity: .5;
}

.service-box-classic__caption {
	display: flex;
	justify-content: center;
	position: absolute;
	max-width: 98%;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease-in-out;
}

@media (min-width: 1200px) {
	.service-box-classic__caption {
		opacity: 0;
	}
}

.service-box-classic__caption a {
	display: inline-block;
	text-align: center;
	color: #ffffff;
	letter-spacing: .05em;
	text-transform: uppercase;
	font-weight: 700;
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.service-box-classic__caption a:hover {
	text-decoration: underline;
}

@media (min-width: 1200px) {
	.service-box-classic__caption a {
		font-size: 22px;
	}
}

@media (min-width: 1200px) {
	.service-box-classic:hover .service-box-classic__caption {
		transition: all 0.3s ease-in-out;
		opacity: 1;
	}
}

.float-box-classic {
	text-align: center;
	position: relative;
}

.float-box-classic .float-item-1,
.float-box-classic .float-item-2 {
	display: none;
}

@media (min-width: 1200px) {
	.float-box-classic {
		padding: 167px 60px 105px 0;
	}

	.float-box-classic .float-item-1 {
		position: absolute;
		top: 0;
		right: 30px;
		display: block;
	}

	.float-box-classic .float-item-2 {
		position: absolute;
		bottom: 0;
		right: 0;
		display: block;
	}
}

.float-box-classic-2 {
	position: relative;
}

.float-box-classic-2 .float-item-1 {
	display: none;
}

@media (min-width: 992px) {
	.float-box-classic-2 {
		padding-bottom: 120px;
	}

	.float-box-classic-2 .float-item-1 {
		position: absolute;
		right: 60px;
		bottom: 0;
		display: block;
	}
}

.float-box-classic-3 {
	position: relative;
}

.float-box-classic-3 .float-item-1,
.float-box-classic-3 .float-item-2 {
	display: none;
}

@media (min-width: 992px) {
	.float-box-classic-3 {
		padding: 0px 60px 153px 0;
	}

	.float-box-classic-3 .float-item-1 {
		position: absolute;
		left: 60px;
		bottom: 40px;
		display: block;
	}

	.float-box-classic-3 .float-item-2 {
		position: absolute;
		right: 50px;
		bottom: 0;
		display: block;
	}
}

.service-box-modern {
	max-width: 390px;
	margin-right: auto;
	margin-left: auto;
}

.service-box-modern__media {
	overflow: hidden;
	display: block;
}

.service-box-modern__media+* {
	margin-top: 15px;
}

@media (min-width: 1200px) {
	.service-box-modern__media+* {
		margin-top: 30px;
	}
}

.service-box-modern__media img {
	height: 300px;
	object-fit: cover;
	width: 100%;
	transition: all 0.3s ease-in-out;
}

.service-box-modern__media:hover img {
	transform: scale(1.03);
	transition: all 0.3s ease-in-out;
}

.service-box-modern__caption {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.service-box-modern__caption a.title {
	font-size: 22px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: .05em;
	font-weight: 700;
}

.service-box-modern__caption a.title,
.service-box-modern__caption a.title:focus,
.service-box-modern__caption a.title:active {
	color: var(--dark-bg);
}

.service-box-modern__caption a.title:hover {
	color: var(--accent);
}

.service-box-modern__caption p {
	color: var(--headers);
}

.box-info {
	max-width: 270px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.box-info-inner>*+* {
	margin-top: 20px;
}

.box-info-avatar {
	max-width: 180px;
	border-radius: 50%;
}

.box-info-caption {
	color: var(--accent);
}

*+.box-info-inner {
	margin-top: 15px;
}

@media (min-width: 576px) and (max-width: 991.98px) {
	.box-info {
		text-align: left;
		max-width: 570px;
		margin-left: 0;
	}

	.box-info-inner {
		display: flex;
		align-items: flex-start;
	}

	.box-info-inner>*+* {
		margin-top: 0;
		margin-left: 30px;
	}

	.box-info-avatar {
		flex-shrink: 0;
	}

	.box-info-main {
		flex-grow: 1;
	}
}

@media (min-width: 992px) {
	.box-info-inner>*+* {
		margin-top: 37px;
	}

	*+.box-info-inner {
		margin-top: 25px;
	}
}

@media (min-width: 1600px) {
	.box-info {
		margin-right: 0;
	}
}

*+.box-alice-title {
	margin-top: 10px;
}

@media (min-width: 768px) {
	*+.box-alice-title {
		margin-top: 18px;
	}
}

@media (min-width: 992px) {
	*+.box-alice-title {
		margin-top: 25px;
	}
}

@media (min-width: 1200px) {
	.icon.box-alice-icon {
		font-size: 50px;
	}

	*+.box-alice-title {
		margin-top: 33px;
	}
}

/** @section Groups */
html .group {
	margin-bottom: -20px;
	margin-left: -15px;
}

html .group:empty {
	margin-bottom: 0;
	margin-left: 0;
}

html .group>* {
	margin-top: 0;
	margin-bottom: 20px;
	margin-left: 15px;
}

html .group-sm {
	margin-bottom: -10px;
	margin-left: -10px;
}

html .group-sm:empty {
	margin-bottom: 0;
	margin-left: 0;
}

html .group-sm>* {
	margin-top: 0;
	margin-bottom: 10px;
	margin-left: 10px;
}

html .group-xl {
	margin-bottom: -20px;
	margin-left: -30px;
}

html .group-xl:empty {
	margin-bottom: 0;
	margin-left: 0;
}

html .group-xl>* {
	margin-top: 0;
	margin-bottom: 20px;
	margin-left: 30px;
}

@media (min-width: 992px) {
	html .group-xl {
		margin-bottom: -20px;
		margin-left: -45px;
	}

	html .group-xl>* {
		margin-bottom: 20px;
		margin-left: 45px;
	}
}

html .group-custom {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

html .group-custom>* {
	width: 100%;
}

@media (min-width: 576px) {
	html .group-custom {
		flex-direction: row;
	}
}

*+.group-sm {
	margin-top: 30px;
}

*+.group-xl {
	margin-top: 20px;
}

/** @section Responsive units */
.unit {
	display: flex;
	flex: 0 1 100%;
	margin-bottom: -30px;
	margin-left: -20px;
}

.unit>* {
	margin-bottom: 30px;
	margin-left: 20px;
}

.unit:empty {
	margin-bottom: 0;
	margin-left: 0;
}

.unit-body {
	flex: 0 1 auto;
}

.unit-left,
.unit-right {
	flex: 0 0 auto;
	max-width: 100%;
}

.unit-spacing-xs {
	margin-bottom: -15px;
	margin-left: -7px;
}

.unit-spacing-xs>* {
	margin-bottom: 15px;
	margin-left: 7px;
}

/** @section Lists */
.list>li+li {
	margin-top: 10px;
}

.list-xs>li+li {
	margin-top: 5px;
}

.list-sm>li+li {
	margin-top: 10px;
}

.list-md>li+li {
	margin-top: 18px;
}

.list-lg>li+li {
	margin-top: 25px;
}

.list-xl>li+li {
	margin-top: 30px;
}

@media (min-width: 768px) {
	.list-xl>li+li {
		margin-top: 60px;
	}
}

.list-inline>li {
	display: inline-block;
}

html .list-inline-md {
	transform: translate3d(0, -8px, 0);
	margin-bottom: -8px;
	margin-left: -10px;
	margin-right: -10px;
}

html .list-inline-md>* {
	margin-top: 8px;
	padding-left: 10px;
	padding-right: 10px;
}

@media (min-width: 992px) {
	html .list-inline-md {
		margin-left: -15px;
		margin-right: -15px;
	}

	html .list-inline-md>* {
		padding-left: 15px;
		padding-right: 15px;
	}
}

*+.list-terms {
	margin-top: 25px;
}

.list-terms+* {
	margin-top: 25px;
}

.list-terms dt+dd {
	margin-top: 5px;
}

.list-terms dd+dt {
	margin-top: 25px;
}

.index-list {
	counter-reset: li;
}

.index-list>li .list-index-counter:before {
	content: counter(li, decimal-leading-zero);
	counter-increment: li;
}

.list-marked {
	text-align: left;
}

.list-marked>li {
	position: relative;
	padding-left: 25px;
}

.list-marked>li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: var(--accent);
}

.list-marked>li+li {
	margin-top: 4px;
}

*+.list-marked {
	margin-top: 15px;
}

p+.list-marked {
	margin-top: 10px;
}

.list-ordered {
	counter-reset: li;
	text-align: left;
}

.list-ordered>li {
	position: relative;
	padding-left: 25px;
}

.list-ordered>li:before {
	position: absolute;
	content: counter(li, decimal) ".";
	counter-increment: li;
	top: 0;
	left: 0;
	display: inline-block;
	width: 15px;
	color: #b7b7b7;
}

.list-ordered>li+li {
	margin-top: 10px;
}

*+.list-ordered {
	margin-top: 15px;
}

.contact-list {
	display: flex;
	flex-direction: column;
}

.contact-list li+li {
	margin-top: 10px;
}

@media (min-width: 1200px) {
	.contact-list li+li {
		margin-top: 20px;
	}
}

.social-list {
	display: flex;
	align-items: center;
	margin-left: -38px;
}

.social-list>* {
	margin-left: 38px;
}

.social-list .icon {
	font-size: 22px;
}

.social-list a,
.social-list a:focus,
.social-list a:active {
	color: #858D95;
}

.social-list a:hover {
	color: var(--accent);
}

/** @section Images */
img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.img-responsive {
	width: 100%;
}

/** @section Icons */
.icon {
	display: inline-block;
	font-size: 16px;
	line-height: 1;
}

.icon::before {
	position: relative;
	display: inline-block;
	font-weight: 400;
	font-style: normal;
	speak: none;
	text-transform: none;
}

.icon-circle {
	border-radius: 50%;
}

/** @section Tables custom */
.table-custom {
	width: 100%;
	max-width: 100%;
	text-align: left;
	background: #ffffff;
	border-collapse: collapse;
}

.table-custom th,
.table-custom td {
	color: #2c343b;
	background: #ffffff;
}

.table-custom th {
	padding: 35px 24px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	background: #d7d7d7;
	white-space: nowrap;
}

@media (max-width: 991.98px) {
	.table-custom th {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

.table-custom td {
	padding: 17px 24px;
}

.table-custom tbody tr:first-child td {
	border-top: 0;
}

.table-custom tr td {
	border-bottom: 1px solid #cccccc;
}

.table-custom tfoot td {
	font-weight: 700;
}

*+.table-custom-responsive {
	margin-top: 30px;
}

@media (min-width: 768px) {
	*+.table-custom-responsive {
		margin-top: 40px;
	}
}

.table-custom.table-custom-primary thead th {
	color: #ffffff;
	background: var(--accent);
	border: 0;
}

.table-custom.table-custom-primary tbody tr:hover td {
	background: #d7d7d7;
}

.table-custom.table-custom-bordered tr td:first-child {
	border-left: 0;
}

.table-custom.table-custom-bordered tr td:last-child {
	border-right: 0;
}

.table-custom.table-custom-bordered td {
	border: 1px solid #cccccc;
}

.table-custom.table-custom-bordered tbody>tr:first-of-type>td {
	border-top: 0;
}

.table-custom.table-custom-striped {
	border-bottom: 1px solid #cccccc;
}

.table-custom.table-custom-striped tbody tr:nth-of-type(odd) td {
	background: transparent;
}

.table-custom.table-custom-striped tbody tr:nth-of-type(even) td {
	background: #d7d7d7;
}

.table-custom.table-custom-striped tbody td {
	border: 0;
}

.table-custom.table-custom-striped tfoot td:not(:first-child) {
	border-left: 0;
}

@media (max-width: 991.98px) {
	.table-custom-responsive {
		display: block;
		width: 100%;
		overflow-x: auto;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}

	.table-custom-responsive.table-bordered {
		border: 0;
	}
}

/** @section Dividers */
hr {
	margin-top: 0;
	margin-bottom: 0;
	border-top: 1px solid #d7d7d7;
}

.divider {
	font-size: 0;
	line-height: 0;
}

.divider::after {
	content: '';
	display: inline-block;
	width: 60px;
	height: 2px;
	background-color: var(--accent);
}

/** @section Buttons */
.button {
	position: relative;
	overflow: hidden;
	display: inline-block;
	padding: 11px 35px;
	font-size: 20px;
	line-height: 1.2;
	border: 1px solid;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border-radius: 0;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: center;
	cursor: pointer;
	vertical-align: middle;
	user-select: none;
	transition: 250ms all ease-in-out;
	box-shadow: none;
}

.btn {
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	text-overflow: ellipsis;
	box-shadow: none;
}

.page .btn:not([class*='shadow']) {
	box-shadow: none;
}

.page .btn:not(:disabled):not(.disabled):active:focus:not([class*='shadow']),
.page .btn:not(:disabled):not(.disabled).active:focus:not([class*='shadow']) {
	box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-primary.dropdown-toggle:focus {
	box-shadow: none;
}

.btn-primary:focus,
.btn-primary.focus {
	box-shadow: none;
}

.btn-primary,
.btn-primary:focus {
	color: #ffffff;
	background-color: var(--accent);
	border-color: var(--accent);
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active {
	color: #ffffff;
	background-color: var(--dark-bg);
	border-color: var(--dark-bg);
}

.btn-primary.btn-ujarak::before {
	background: var(--dark-bg);
}

.context-dark .btn-primary,
.context-dark .btn-primary:focus {
	color: #ffffff;
	background-color: var(--accent);
	border-color: var(--accent);
}

.context-dark .btn-primary:not(:disabled):not(.disabled):active,
.context-dark .btn-primary:not(:disabled):not(.disabled).active,
.context-dark .btn-primary:hover,
.context-dark .btn-primary:active,
.context-dark .btn-primary.active {
	color: var(--accent);
	background-color: #ffffff;
	border-color: #ffffff;
}

.context-dark .btn-primary.btn-ujarak::before {
	background: #ffffff;
}

.btn-deep-blue,
.btn-deep-blue:focus {
	color: #ffffff;
	background-color: var(--dark-bg);
	border-color: var(--dark-bg);
}

.btn-deep-blue:not(:disabled):not(.disabled):active,
.btn-deep-blue:not(:disabled):not(.disabled).active,
.btn-deep-blue:hover,
.btn-deep-blue:active,
.btn-deep-blue.active {
	color: #ffffff;
	background-color: var(--accent);
	border-color: var(--accent);
}

.btn-deep-blue.btn-ujarak::before {
	background: var(--accent);
}

.btn-primary-inverse,
.btn-primary-inverse:focus {
	color: #ffffff;
	background-color: var(--accent);
	border-color: var(--accent);
}

.btn-primary-inverse:not(:disabled):not(.disabled):active,
.btn-primary-inverse:not(:disabled):not(.disabled).active,
.btn-primary-inverse:hover,
.btn-primary-inverse:active,
.btn-primary-inverse.active {
	color: #ffffff;
	background-color: var(--dark-bg);
	border-color: var(--dark-bg);
}

.btn-primary-inverse.btn-ujarak::before {
	background: var(--dark-bg);
}

.btn-gray-100,
.btn-gray-100:focus {
	color: #151515;
	background-color: #edeff4;
	border-color: #edeff4;
}

.btn-gray-100:not(:disabled):not(.disabled):active,
.btn-gray-100:not(:disabled):not(.disabled).active,
.btn-gray-100:hover,
.btn-gray-100:active,
.btn-gray-100.active {
	color: #151515;
	background-color: #dde1ea;
	border-color: #dde1ea;
}

.btn-gray-100.btn-ujarak::before {
	background: #dde1ea;
}

.btn-default-outline,
.btn-default-outline:focus {
	color: #cccccc;
	background-color: transparent;
	border-color: #2c343b;
}

.btn-default-outline:not(:disabled):not(.disabled):active,
.btn-default-outline:not(:disabled):not(.disabled).active,
.btn-default-outline:hover,
.btn-default-outline:active,
.btn-default-outline.active {
	color: #ffffff;
	background-color: var(--accent);
	border-color: var(--accent);
}

.btn-default-outline.btn-ujarak::before {
	background: var(--accent);
}

.btn-white-inverse,
.btn-white-inverse:focus {
	color: var(--accent);
	background-color: #ffffff;
	border-color: #ffffff;
}

.btn-white-inverse:not(:disabled):not(.disabled):active,
.btn-white-inverse:not(:disabled):not(.disabled).active,
.btn-white-inverse:hover,
.btn-white-inverse:active,
.btn-white-inverse.active {
	color: #ffffff;
	background-color: var(--accent);
	border-color: var(--accent);
}

.btn-white-inverse.btn-ujarak::before {
	background: var(--accent);
}

.btn-ghost {
	border: 0;
	background-color: transparent;
}

.btn-ghost:hover {
	color: #ffffff;
	background: var(--accent);
}

.btn-facebook,
.btn-facebook:focus {
	color: #ffffff;
	background-color: #4d70a8;
	border-color: #4d70a8;
}

.btn-facebook:not(:disabled):not(.disabled):active,
.btn-facebook:not(:disabled):not(.disabled).active,
.btn-facebook:hover,
.btn-facebook:active,
.btn-facebook.active {
	color: #ffffff;
	background-color: #456497;
	border-color: #456497;
}

.btn-facebook.btn-ujarak::before {
	background: #456497;
}

.btn-twitter,
.btn-twitter:focus {
	color: #ffffff;
	background-color: #02bcf3;
	border-color: #02bcf3;
}

.btn-twitter:not(:disabled):not(.disabled):active,
.btn-twitter:not(:disabled):not(.disabled).active,
.btn-twitter:hover,
.btn-twitter:active,
.btn-twitter.active {
	color: #ffffff;
	background-color: #02a8da;
	border-color: #02a8da;
}

.btn-twitter.btn-ujarak::before {
	background: #02a8da;
}

.btn-google,
.btn-google:focus {
	color: #ffffff;
	background-color: #e2411e;
	border-color: #e2411e;
}

.btn-google:not(:disabled):not(.disabled):active,
.btn-google:not(:disabled):not(.disabled).active,
.btn-google:hover,
.btn-google:active,
.btn-google.active {
	color: #ffffff;
	background-color: #cc3a1a;
	border-color: #cc3a1a;
}

.btn-google.btn-ujarak::before {
	background: #cc3a1a;
}

.btn-shadow {
	box-shadow: 0 9px 21px 0 rgba(204, 204, 204, 0.15);
}

.btn-shadow:hover {
	box-shadow: 0 9px 10px 0 rgba(204, 204, 204, 0.15);
}

.btn-shadow:focus,
.btn-shadow:active {
	box-shadow: none;
}

.btn-ujarak {
	position: relative;
	z-index: 0;
	transition: background .4s, border-color .4s, color .4s;
}

.btn-ujarak::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--accent);
	z-index: -1;
	opacity: 0;
	transform: scale3d(0.7, 1, 1);
	transition: transform 0.42s, opacity 0.42s;
	border-radius: inherit;
}

.btn-ujarak,
.btn-ujarak::before {
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-ujarak:hover {
	transition: background .4s .4s, border-color .4s 0s, color .2s 0s;
}

.btn-ujarak:hover::before {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

.btn-circle {
	border-radius: 30px;
}

.btn-round-1 {
	border-radius: 5px;
}

.btn-round-2 {
	border-radius: 10px;
}

.btn.btn-icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	vertical-align: middle;
}

.btn.btn-icon .icon {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	color: inherit;
	font-size: 1.55em;
	line-height: 1em;
}

.btn.btn-icon-left .icon {
	padding-right: 11px;
}

.btn.btn-icon-right {
	flex-direction: row-reverse;
}

.btn.btn-icon-right .icon {
	padding-left: 11px;
}

.btn.btn-icon.btn-link .icon {
	top: 5px;
	font-size: 1em;
}

.btn.btn-icon.btn-xs .icon {
	top: .05em;
	font-size: 1.2em;
	padding-right: 8px;
}

.btn.btn-icon.btn-xs .btn-icon-right {
	padding-left: 8px;
}

.button-lg {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	padding: 0 20px;
	min-height: 50px;
	font-size: 16px;
}

@media (min-width: 992px) {
	.button-lg {
		font-size: 20px;
		min-width: 265px;
		min-height: 70px;
		padding: 0 15px;
	}
}

.button-md {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	padding: 0 20px;
	min-height: 50px;
	font-size: 16px;
}

@media (min-width: 992px) {
	.button-md {
		font-size: 20px;
		min-width: 227px;
		min-height: 70px;
		padding: 0 15px;
	}
}

.ie-10 .button-lg,
.ie-11 .button-lg {
	width: 265px;
	height: 70px;
}

.ie-10 .button-md,
.ie-11 .button-md {
	width: 227px;
	height: 70px;
}

/** @section Forms */
.form {
	position: relative;
	text-align: left;
}

.form .btn {
	padding-top: 10px;
	padding-bottom: 10px;
	min-height: 40px;
}

*+.form {
	margin-top: 20px;
}

input:-webkit-autofill~label,
input:-webkit-autofill~.form-validation {
	color: #000000 !important;
}

.form-wrap {
	position: relative;
}

.form-wrap.has-error .form-input {
	border-color: #f5543f;
}

.form-wrap.has-focus .form-input {
	border-color: var(--accent);
}

.form-wrap+* {
	margin-top: 20px;
}

.form-input {
	display: block;
	width: 100%;
	min-height: 40px;
	padding: 1px 19px 20px 0px;
	font-size: 18px;
	font-weight: 700;
	font-family: 'Oswald', sans-serif;
	line-height: 37px;
	color: var(--headers);
	background-color: transparent;
	background-image: none;
	border-radius: 0;
	-webkit-appearance: none;
	transition: .3s ease-in-out;
	border: none;
	border-bottom: 2px solid #E0E1EB;
}

.form-input:focus {
	outline: 0;
}

textarea.form-input {
	height: 135px;
	min-height: 40px;
	max-height: 230px;
	resize: vertical;
}

.recaptcha div {
	display: block;
	transform-origin: 0 0;
}

.recaptcha iframe {
	display: block;
}

.form-label,
.form-label-outside {
	margin-bottom: 0;
	color: var(--headers);
	font-weight: 400;
}

.form-label {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	padding-left: 0;
	padding-right: 19px;
	font-size: 18px;
	font-weight: 700;
	line-height: 37px;
	font-family: 'Oswald', sans-serif;
	pointer-events: none;
	text-align: left;
	z-index: 9;
	transition: .25s;
	will-change: transform;
	transform: translateY(-50%);
}

.form-label.focus {
	opacity: 0;
}

.form-label.auto-fill {
	color: var(--headers);
}

.form-label-outside {
	width: 100%;
	margin-bottom: 4px;
}

@media (min-width: 768px) {
	.form-label-outside {
		position: static;
	}

	.form-label-outside,
	.form-label-outside.focus,
	.form-label-outside.auto-fill {
		transform: none;
	}
}

[data-x-mode='true'] .form-label {
	pointer-events: auto;
}

.form-validation {
	position: absolute;
	right: 0px;
	bottom: -15px;
	z-index: 11;
	margin-top: 2px;
	font-size: 9px;
	font-weight: 400;
	line-height: 12px;
	letter-spacing: 0;
	color: #f5543f;
	transition: .3s;
}

.form-validation-left .form-validation {
	right: auto;
	left: 8px;
}

#form-output-global {
	position: fixed;
	bottom: 30px;
	left: 15px;
	z-index: 2000;
	visibility: hidden;
	transform: translate3d(-500px, 0, 0);
	transition: .3s all ease;
}

#form-output-global.active {
	visibility: visible;
	transform: translate3d(0, 0, 0);
}

@media (min-width: 576px) {
	#form-output-global {
		left: 30px;
	}
}

.form-output {
	position: absolute;
	top: 100%;
	left: 0;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.2;
	margin-top: 2px;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
}

.form-output.active {
	opacity: 1;
	visibility: visible;
}

.form-output.error {
	color: #f5543f;
}

.form-output.success {
	color: #98bf44;
}

.radio .radio-custom,
.radio-inline .radio-custom,
.checkbox .checkbox-custom,
.checkbox-inline .checkbox-custom {
	opacity: 0;
}

.radio .radio-custom,
.radio .radio-custom-dummy,
.radio-inline .radio-custom,
.radio-inline .radio-custom-dummy,
.checkbox .checkbox-custom,
.checkbox .checkbox-custom-dummy,
.checkbox-inline .checkbox-custom,
.checkbox-inline .checkbox-custom-dummy {
	position: absolute;
	left: 0;
	width: 14px;
	height: 14px;
	outline: none;
	cursor: pointer;
}

.radio .radio-custom-dummy,
.radio-inline .radio-custom-dummy,
.checkbox .checkbox-custom-dummy,
.checkbox-inline .checkbox-custom-dummy {
	pointer-events: none;
	background: #ffffff;
}

.radio .radio-custom-dummy::after,
.radio-inline .radio-custom-dummy::after,
.checkbox .checkbox-custom-dummy::after,
.checkbox-inline .checkbox-custom-dummy::after {
	position: absolute;
	opacity: 0;
	transition: .22s;
}

.radio .radio-custom:focus,
.radio-inline .radio-custom:focus,
.checkbox .checkbox-custom:focus,
.checkbox-inline .checkbox-custom:focus {
	outline: none;
}

.radio input,
.radio-inline input,
.checkbox input,
.checkbox-inline input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.radio-custom:checked+.radio-custom-dummy:after,
.checkbox-custom:checked+.checkbox-custom-dummy:after {
	opacity: 1;
}

.radio,
.radio-inline {
	padding-left: 28px;
}

.radio .radio-custom-dummy,
.radio-inline .radio-custom-dummy {
	top: 1px;
	left: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid #b7b7b7;
}

.radio .radio-custom-dummy::after,
.radio-inline .radio-custom-dummy::after {
	content: '';
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	background: #2c343b;
	border-radius: inherit;
}

.checkbox,
.checkbox-inline {
	padding-left: 28px;
}

.checkbox .checkbox-custom-dummy,
.checkbox-inline .checkbox-custom-dummy {
	left: 0;
	width: 18px;
	height: 18px;
	margin: 0;
	border: 1px solid #b7b7b7;
}

.checkbox .checkbox-custom-dummy::after,
.checkbox-inline .checkbox-custom-dummy::after {
	content: '\f222';
	font-family: "Material Design Icons";
	position: absolute;
	top: -1px;
	left: -2px;
	font-size: 20px;
	line-height: 18px;
	color: #cccccc;
}

.toggle-custom {
	padding-left: 60px;
	-webkit-appearance: none;
}

.toggle-custom:checked~.checkbox-custom-dummy::after {
	background: var(--accent);
	transform: translate(20px, -50%);
}

.toggle-custom~.checkbox-custom-dummy {
	position: relative;
	display: inline-block;
	margin-top: -1px;
	width: 44px;
	height: 20px;
	background: #F9F9FE;
	cursor: pointer;
}

.toggle-custom~.checkbox-custom-dummy::after {
	content: '';
	position: absolute;
	display: inline-block;
	width: 16px;
	height: 16px;
	left: 0;
	top: 50%;
	background: #b7b7b7;
	transform: translate(4px, -50%);
	opacity: 1;
	transition: .22s;
}

.form-inline {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	text-align: center;
	margin-bottom: -8px;
	margin-left: -8px;
}

.form-inline:empty {
	margin-bottom: 0;
	margin-left: 0;
}

.form-inline>* {
	margin-top: 0;
	margin-bottom: 8px;
	margin-left: 8px;
}

.form-inline>* {
	margin-top: 0;
}

.form-inline .form-wrap {
	flex-grow: 1;
	min-width: 185px;
}

.form-inline .form-wrap-select {
	text-align: left;
}

.form-inline .form-button {
	flex-shrink: 0;
	max-width: calc(100% - 10px);
	min-height: 40px;
}

.form-inline .form-button .btn {
	min-height: inherit;
}

@media (min-width: 576px) {
	.form-inline .btn {
		display: block;
	}
}

.form-inline.form-inline-centered {
	justify-content: center;
}

.form-sm .form-input,
.form-sm .btn {
	padding-top: 9px;
	padding-bottom: 9px;
	min-height: 40px;
}

.form-sm .form-validation {
	top: -16px;
}

.form-sm .form-label {
	top: 20px;
}

.form-sm *+.btn {
	margin-top: 10px;
}

.form-lg .form-input,
.form-lg .form-label,
.form-lg .select2-container .select2-choice {
	font-size: 16px;
}

.form-lg .form-input,
.form-lg .select2-container .select2-choice {
	font-size: 16px;
	padding-top: 11px;
	padding-bottom: 11px;
}

.form-lg .form-input,
.form-lg .select2-container .select2-choice {
	min-height: 58px;
}

.form-lg .form-button {
	min-height: 60px;
}

.form-lg .form-label {
	top: 30px;
}

.subscribe-form-modern {
	max-width: 390px;
	width: 100%;
}

.subscribe-form-modern .form-input {
	padding-right: 50px;
}

.subscribe-form-modern .form-button {
	position: absolute;
	top: 0;
	right: 0;
}

.subscribe-form-modern .form-button .button {
	background: none;
	border: none;
	outline: none;
}

.subscribe-form-modern .form-button .button {
	padding: 0;
}

.quote-form .form-input {
	border-bottom: 2px solid #92a2b3;
	color: #ffffff;
}

.quote-form .form-input:focus {
	border-bottom: 2px solid #ffffff;
}

.quote-form .form-input::placeholder {
	color: #92a2b3;
}

.contact-form .form-input {
	color: var(--dark-bg);
}

.contact-form .form-input:focus {
	border-bottom: 2px solid var(--dark-bg);
}

/** @section Posts */
.post-classic {
	max-width: 610px;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.post-classic__media {
	overflow: hidden;
}

.post-classic img {
	height: 350px;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.post-classic img:hover {
	transform: scale(1.06);
	transition: all 0.3s ease-in-out;
}

.post-classic__media+* {
	margin-top: 20px;
}

@media (min-width: 1200px) {
	.post-classic__media+* {
		margin-top: 50px;
	}
}

.post-classic__label {
	font-size: 18px;
	color: #ffffff;
	background-color: var(--accent);
	font-weight: 700;
	padding: 3px 20px;
	font-family: 'Oswald', sans-serif;
}

@media (min-width: 992px) {
	.post-classic__label {
		font-size: 22px;
	}
}

@media (min-width: 1200px) {
	.post-classic__label {
		font-size: 24px;
	}
}

.post-classic .title {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	margin-top: 20px;
}

@media (min-width: 1200px) {
	.post-classic .title {
		margin-top: 25px;
	}
}

.post-classic .title a {
	font-size: 20px;
	font-family: 'Oswald', sans-serif;
	letter-spacing: .05em;
	text-transform: uppercase;
	font-weight: 700;
}

.post-classic .title a,
.post-classic .title a:focus,
.post-classic .title a:active {
	color: var(--dark-bg);
}

.post-classic .title a:hover {
	color: var(--accent);
}

@media (min-width: 1200px) {
	.post-classic .title a {
		margin-top: 25px;
		font-size: 22px;
	}
}

.ie-10 .post-classic .title,
.ie-11 .post-classic .title {
	width: 100%;
}

/*
* Posts
*/
.post-modern {
	max-width: 370px;
	margin-left: auto;
	margin-right: auto;
}

.post-modern.post-modern-reverse {
	display: flex;
	flex-direction: column-reverse;
}

.post-modern:hover .post-modern-figure img {
	transform: scale(1.04);
	opacity: .8;
}

.post-modern-figure {
	position: relative;
	background: #151515;
	overflow: hidden;
}

.post-modern-figure img {
	max-width: inherit;
	transition: all .3s;
}

.post-modern-figure .badge {
	position: absolute;
	bottom: 25px;
	left: 25px;
}

.post-modern-caption {
	padding: 25px;
	background: #ffffff;
}

.post-modern-caption-text {
	background-color: var(--accent);
	transition: .3s all ease;
}

.post-modern-caption-text:hover {
	background-color: var(--accent);
}

.post-modern-date {
	font-weight: 400;
	color: rgba(0, 0, 0, 0.5);
	font-size: 18px;
}

.post-modern-title {
	font-weight: 500;
	line-height: 34px;
	letter-spacing: -.03em;
}

*+.post-modern-title {
	margin-top: 10px;
}

*+.post-modern-text {
	margin-top: 25px;
}

.post-modern-text+* {
	margin-top: 25px;
}

.post-modern-text {
	color: rgba(21, 21, 21, 0.8);
	line-height: 25px;
}

.posts-lists-masonry-3-cols {
	text-align: center;
	max-width: 370px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 768px) {
	.posts-lists-masonry-3-cols {
		max-width: 100%;
	}
}

.posts-lists-masonry-3-cols .post-minimal {
	max-width: 370px;
	text-align: left;
	box-shadow: 0 5px 27px 0 rgba(0, 0, 0, 0.09);
}

.posts-lists-masonry-3-cols .post-quote {
	padding-top: 30px;
	padding-bottom: 30px;
	padding-right: 40px;
	padding-left: 45px;
	background-color: var(--accent);
	transition: .3s all ease-in-out;
}

.posts-lists-masonry-3-cols .post-quote:hover {
	background-color: var(--accent);
}

.posts-lists-masonry-3-cols .post-quote .post-classic-date {
	font-size: 18px;
	color: #ffffff;
}

.posts-lists-masonry-3-cols .post-quote .post-classic-date a {
	color: #ffffff;
}

.posts-lists-masonry-3-cols .post-quote .post-classic-date a:hover {
	color: var(--accent);
}

.posts-lists-masonry-3-cols .post-quote .post-classic-date span a {
	color: var(--accent);
}

.posts-lists-masonry-3-cols .post-quote .post-classic-title {
	font-size: 24px;
	line-height: 30px;
	color: #ffffff;
	font-style: italic;
	padding-bottom: 30px;
}

.posts-lists-masonry-3-cols .post-quote .post-classic-link {
	font-weight: 500;
	letter-spacing: 0.15em;
	font-family: 'Commissioner', sans-serif;
	color: #ffffff;
}

.posts-lists-masonry-3-cols .post-quote .post-classic-link:hover {
	color: var(--accent);
}

.posts-lists-masonry-3-cols .post-classic {
	overflow: hidden;
	padding-bottom: 30px;
}

.posts-lists-masonry-3-cols .post-classic .post-classic-date {
	font-size: 18px;
	color: #868e96;
	padding-top: 25px;
	padding-left: 45px;
}

.posts-lists-masonry-3-cols .post-classic .post-classic-title {
	font-size: 24px;
	line-height: 30px;
	color: #151515;
	font-style: italic;
	padding-right: 40px;
	padding-left: 45px;
	padding-bottom: 20px;
}

.posts-lists-masonry-3-cols .post-classic .post-classic-link {
	font-weight: 500;
	letter-spacing: 0.15em;
	font-family: 'Commissioner', sans-serif;
	color: var(--accent);
	padding-left: 45px;
}

.posts-lists-masonry-3-cols .post-classic .post-classic-link:hover {
	color: var(--accent);
}

.posts-lists-masonry-3-cols .post-picture {
	position: relative;
}

.posts-lists-masonry-3-cols .post-picture span {
	font-size: 36px;
	color: #ffffff;
	position: absolute;
	top: 6%;
	right: 7%;
	opacity: 0;
	visibility: hidden;
	transition: 0.7s all ease-in-out;
}

.posts-lists-masonry-3-cols .post-picture:hover span {
	transition: 1.2s all ease-in-out;
	opacity: 1;
	visibility: visible;
}

.posts-lists-masonry-3-cols .media-link {
	position: relative;
	transition: 1.2s all ease-in-out;
}

.posts-lists-masonry-3-cols .media-link:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.25);
	opacity: 0;
	transition: 1.2s all ease-in-out;
}

.posts-lists-masonry-3-cols .media-link:hover {
	transition: 1.2s all ease-in-out;
}

.posts-lists-masonry-3-cols .media-link:hover:after {
	opacity: 1;
}

.post-classic-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 30px;
}

.post-classic-meta .badge {
	color: #ffffff;
	background-color: var(--accent);
	display: inline-block;
	padding: 7px 15px 7px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	border-radius: 4px;
	margin: 30px 30px 10px 0;
}

@media (min-width: 360px) {
	.post-classic-meta {
		flex-direction: row;
		align-items: center;
		margin-bottom: 0;
	}

	.post-classic-meta .badge {
		margin: 30px;
	}
}

.post-light {
	position: relative;
	overflow: hidden;
	display: flex;
	border-radius: 0;
	text-align: left;
	background-size: cover;
	background-position: center center;
}

.post-light,
.post-light:active,
.post-light:focus,
.post-light:hover {
	color: #cccccc;
}

.post-light::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 100%);
	opacity: .49;
	transition: all 0.3s ease-in-out;
}

.post-light::after {
	content: '';
	display: block;
	width: 100%;
	pointer-events: none;
	visibility: hidden;
	padding-bottom: 61.40351%;
}

.post-light:hover::before {
	opacity: .8;
}

.post-light::after,
.post-light-inner {
	width: 100%;
	flex-shrink: 0;
}

.post-light-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 20px;
}

.post-light-inner .badge {
	color: #ffffff;
	background-color: var(--accent);
	display: inline-block;
	padding: 7px 15px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: 4px;
}

.post-light-inner>*+* {
	margin-top: 50px;
}

.post-light-main {
	width: 100%;
}

.post-light-time {
	font-size: 14px;
	line-height: 1.2;
	position: relative;
	color: white;
}

.post-light-title {
	letter-spacing: 0;
}

*+.post-light-title {
	margin-top: 10px;
}

@media (max-width: 575.98px) {
	.post-light {
		max-width: 370px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 1200px) {
	.post-light-inner {
		padding: 30px 35px 30px 30px;
	}
}

/**
* Blog Layout 1
*/
.blog-layout-1 {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.blog-layout-1-item {
	position: relative;
	overflow: hidden;
}

.blog-layout-1-item>*+* {
	margin-top: 25px;
}

.blog-layout-1-item-aside {
	width: 130px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.blog-layout-1-item-time {
	display: block;
	max-width: 120px;
	margin-left: auto;
	margin-right: auto;
}

.blog-layout-1-item-main {
	position: relative;
	overflow: hidden;
	text-align: left;
	color: #868e96;
}

.blog-layout-1-item-main .post-classic {
	margin-bottom: 40px;
}

@media (min-width: 768px) {
	.blog-layout-1-item-main .post-classic {
		margin-bottom: 0;
	}
}

.blog-layout-1-item-main .post-classic .link-hover-post {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .3s all ease;
}

.blog-layout-1-item-main .post-classic .link-hover-post:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background-color: rgba(0, 0, 0, 0.3);
	opacity: 0;
	transition: .3s all ease;
}

.blog-layout-1-item-main .post-classic .link-hover-post:hover:after {
	opacity: 1;
	transition: .3s all ease;
}

.blog-layout-1-item-avatar {
	display: block;
	border-radius: 50%;
	margin-left: auto;
	margin-right: auto;
}

*+.blog-layout-1-item,
*+.blog-layout-1-item-outer {
	margin-top: 30px;
}

*+.blog-layout-1-item-avatar-outer {
	margin-top: 15px;
}

*+.blog-layout-1-item-time {
	margin-top: 15px;
}

@media (min-width: 768px) {
	.blog-layout-1-item {
		display: flex;
		align-items: flex-start;
	}

	.blog-layout-1-item>*+* {
		margin-top: 0;
	}

	.blog-layout-1-item-aside {
		position: relative;
		padding-bottom: 20px;
		flex-shrink: 0;
	}

	.blog-layout-1-item-aside::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		height: 100vh;
		transform: translate(0, 100%);
		border-right: 1px solid #cccccc;
	}

	.blog-layout-1-item-avatar-outer {
		position: relative;
		z-index: 0;
	}

	.blog-layout-1-item-avatar-outer::after {
		content: '';
		position: absolute;
		left: 50%;
		top: 50%;
		width: 400px;
		border-bottom: 1px solid #cccccc;
	}

	.blog-layout-1-item-avatar {
		position: relative;
		z-index: 2;
	}

	.blog-layout-1-item-main {
		flex-grow: 1;
		margin-left: 30px;
	}

	*+.blog-layout-1-item,
	*+.blog-layout-1-item-outer {
		margin-top: 60px;
	}
}

@media (min-width: 1200px) {
	.blog-layout-1-item-main {
		margin-left: 60px;
	}

	.blog-layout-1-item-main {
		margin-left: 100px;
	}

	*+.blog-layout-1-item-avatar-outer {
		margin-top: 30px;
	}

	*+.blog-layout-1-item-time {
		margin-top: 22px;
	}
}

.post-single-title {
	letter-spacing: 0;
}

.post-single *+h5,
.post-single *+.heading-5 {
	margin-top: 15px;
}

.post-single>img {
	display: block;
	border-radius: 0;
}

.post-single>*+img {
	margin: 20px 0;
}

.post-single>*+p {
	margin-top: 20px;
}

.post-single-title {
	letter-spacing: 0;
}

.post-single-time {
	letter-spacing: 0.024em;
}

.post-single-footer {
	margin-bottom: -8px;
	margin-left: -20px;
}

.post-single-footer:empty {
	margin-bottom: 0;
	margin-left: 0;
}

.post-single-footer>* {
	margin-top: 0;
	margin-bottom: 8px;
	margin-left: 20px;
}

*+.post-single-footer {
	margin-top: 25px;
}

@media (min-width: 768px) {
	.post-single>*+img {
		margin: 35px 0;
	}
}

@media (min-width: 992px) {

	.post-single *+h5,
	.post-single *+.heading-5 {
		margin-top: 30px;
	}
}

@media (min-width: 1200px) {

	.post-single *+h5,
	.post-single *+.heading-5 {
		margin-top: 50px;
	}

	.post-single>p+img {
		margin-top: 40px;
	}
}

.post-single-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 30px;
}

.post-single-meta .badge {
	color: #ffffff;
	background-color: var(--accent);
	display: inline-block;
	padding: 10px 15px 7px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: 4px;
	margin: 30px 30px 10px 0;
}

.post-single-meta img {
	margin: 15px 0;
}

@media (min-width: 360px) {
	.post-single-meta {
		flex-direction: row;
		align-items: center;
		margin-bottom: 0;
	}

	.post-single-meta .badge {
		margin: 30px;
	}
}

/** @section Quotes */
.quote-primary-mark {
	position: relative;
	top: 6px;
	display: block;
	width: 37px;
	height: 27px;
	fill: var(--accent);
	flex-shrink: 0;
}

.quote-primary-body {
	position: relative;
	padding: 25px 0;
	border-top: 1px solid #d7d7d7;
}

.quote-primary-body::before,
.quote-primary-body::after {
	content: '';
	position: absolute;
	bottom: 0;
	height: 13px;
	border-style: solid;
	border-color: #d7d7d7;
}

.quote-primary-body::before {
	left: 0;
	width: 78px;
	border-width: 1px 1px 0 0;
}

.quote-primary-body::after {
	right: 0;
	width: calc(100% - 78px - 12px);
	border-width: 1px 0 0 1px;
	transform-origin: 0 0;
	transform: skew(-45deg);
}

.quote-primary-text {
	padding-top: 20px;
}

.quote-primary-cite {
	font-weight: 700;
}

.quote-primary-footer {
	padding-left: 5px;
}

*+.quote-primary {
	margin-top: 30px;
}

*+.quote-primary-footer {
	margin-top: 8px;
}

@media (min-width: 576px) {
	.quote-primary-body {
		display: flex;
		padding: 32px 20px 40px 30px;
	}

	.quote-primary-text {
		padding-top: 0;
		padding-left: 20px;
	}

	.quote-primary-footer {
		padding-left: 30px;
	}
}

@media (min-width: 768px) {
	.quote-primary-body {
		padding-right: 40px;
	}
}

.quote-classic__caption {
	color: var(--accent);
	font-size: 22px;
	font-style: italic;
	font-weight: 400;
}

.quote-classic__author {
	padding-top: 20px;
	margin-top: -20px;
	margin-left: -20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.quote-classic__author>* {
	margin-top: 20px;
	margin-left: 20px;
}

/** @section Thumbnails */
*+.figure-light {
	margin-top: 30px;
}

.figure-light figcaption {
	padding-top: 10px;
	color: #b7b7b7;
}

.thumbnail-classic {
	max-width: 390px;
	margin-right: auto;
	margin-left: auto;
}

.thumbnail-classic__media {
	overflow: hidden;
}

.thumbnail-classic__media img {
	transition: all 0.3s ease-in-out;
}

.thumbnail-classic__media:hover img {
	transform: scale(1.03);
	transition: all 0.3s ease-in-out;
}

.thumbnail-classic__media+* {
	margin-top: 15px;
}

@media (min-width: 1200px) {
	.thumbnail-classic__media+* {
		margin-top: 50px;
	}
}

.thumbnail-classic__caption {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.thumbnail-classic__caption .title {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	color: var(--dark-bg);
	font-size: 22px;
	letter-spacing: .05em;
	font-weight: 700;
}

.thumbnail-classic__caption .subtitle {
	color: var(--headers);
}

@media (min-width: 1200px) {
	.thumbnail-classic__caption .subtitle {
		margin-top: 3px;
	}
}

.single-service-wrap h4 {
	text-transform: uppercase;
	letter-spacing: .05em;
}

.single-service-wrap .list-marked {
	margin-top: 25px;
}

.single-service-wrap .list-marked+* {
	margin-top: 25px;
}

@media (min-width: 1200px) {
	.single-service-wrap .list-marked {
		margin: 35px 0 0 50px;
	}

	.single-service-wrap .list-marked+* {
		margin-top: 68px;
	}
}

/** @section Breadcrumbs */
.breadcrumbs-custom {
	position: relative;
	padding: 35px 0 40px;
	text-align: center;
	background-color: #cccccc;
	background-position: center;
}

.breadcrumbs-custom-path {
	margin-left: -15px;
	margin-right: -15px;
}

.breadcrumbs-custom-path>* {
	padding-left: 15px;
	padding-right: 15px;
}

.breadcrumbs-custom-path a {
	display: inline;
	vertical-align: middle;
}

.breadcrumbs-custom-path a,
.breadcrumbs-custom-path a:active,
.breadcrumbs-custom-path a:focus {
	color: var(--accent);
}

.breadcrumbs-custom-path li {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	line-height: 1.7;
}

.breadcrumbs-custom-path li::after {
	content: "";
	font-family: 'FontAwesome';
	position: absolute;
	top: 52%;
	right: -5px;
	display: inline-block;
	font-size: inherit;
	font-style: normal;
	color: rgba(255, 255, 255, 0.5);
	transform: translate3d(0, -50%, 0);
}

.breadcrumbs-custom-path li:last-child:after {
	display: none;
}

.breadcrumbs-custom-path a:hover,
.breadcrumbs-custom-path li.active {
	color: #ffffff;
}

.breadcrumbs-custom-path li.active {
	top: 2px;
}

*+.breadcrumbs-custom-path {
	margin-top: 14px;
}

@media (max-width: 991.98px) {
	.breadcrumbs-custom-title {
		font-size: 26px;
	}
}

@media (min-width: 576px) {
	.breadcrumbs-custom {
		margin-left: -30px;
		margin-right: -30px;
	}

	.breadcrumbs-custom>* {
		padding-left: 30px;
		padding-right: 30px;
	}

	*+.breadcrumbs-custom-path {
		margin-top: 18px;
	}
}

@media (min-width: 768px) {
	.breadcrumbs-custom {
		padding: 70px 0 80px;
	}

	.breadcrumbs-custom-path li {
		font-size: 16px;
	}
}

@media (min-width: 1200px) {
	.breadcrumbs-custom {
		padding: 80px 0 100px;
	}
}

@media (min-width: 1600px) {
	.breadcrumbs-custom {
		padding: 80px 0 100px;
	}
}

/** @section Pagination custom */
.pagination {
	font-size: 0;
	line-height: 0;
	margin-bottom: -10px;
	margin-left: -10px;
}

.pagination:empty {
	margin-bottom: 0;
	margin-left: 0;
}

.pagination>* {
	margin-top: 0;
	margin-bottom: 10px;
	margin-left: 10px;
}

.page-item {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	font-weight: 700;
}

.page-link {
	display: inline-block;
	min-width: 48px;
	padding: 10px 10px;
	border: 2px solid #d7d7d7;
	font-size: 14px;
	line-height: 1.71429;
	background-color: #ffffff;
	color: #9b9b9b;
	transition: all 0.3s ease-in-out;
}

.page-link:hover,
.page-link:focus,
.page-link:active {
	color: #ffffff;
	background-color: var(--accent);
	border-color: var(--accent);
}

.page-item.active>.page-link,
.page-item.active>.page-link:hover,
.page-item.active>.page-link:focus,
.page-item.active>.page-link:active {
	color: #ffffff;
	background-color: var(--accent);
	border-color: var(--accent);
}

.page-item.disabled>.page-link,
.page-item.disabled>.page-link:hover,
.page-item.disabled>.page-link:focus,
.page-item.disabled>.page-link:active {
	color: #b7b7b7;
	background-color: #d7d7d7;
	border-color: #d7d7d7;
}

.page-item-control .icon::before {
	font-family: 'FontAwesome';
	font-size: 11px;
	line-height: 24px;
}

.page-item-control:first-child .icon::before {
	content: '\f053';
	margin-left: -1px;
}

.page-item-control:last-child .icon::before {
	content: '\f054';
	margin-right: -1px;
}

/** @section Snackbars */
.snackbars {
	padding: 9px 16px;
	margin-left: auto;
	margin-right: auto;
	color: #ffffff;
	text-align: left;
	background-color: #151515;
	border-radius: 0;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
	font-size: 14px;
}

.snackbars .icon-xxs {
	font-size: 18px;
}

.snackbars p span:last-child {
	padding-left: 14px;
}

.snackbars-left {
	display: inline-block;
	margin-bottom: 0;
}

.snackbars-right {
	display: inline-block;
	float: right;
	text-transform: uppercase;
}

.snackbars-right:hover {
	text-decoration: underline;
}

@media (min-width: 576px) {
	.snackbars {
		max-width: 540px;
		padding: 12px 15px;
		font-size: 15px;
	}
}

/** @section Footers */
.footer-classic {
	padding: 30px 0;
	color: var(--headers);
}

@media (min-width: 992px) {
	.footer-classic {
		padding: 100px 0;
	}
}

@media (min-width: 1200px) {
	.footer-classic {
		padding: 100px 0 50px;
	}
}

.footer-classic .brand+* {
	margin-top: 20px;
}

@media (min-width: 1200px) {
	.footer-classic .brand+* {
		margin-top: 36px;
	}
}

.footer-classic .phone-link {
	font-size: 24px;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
}

@media (min-width: 1200px) {
	.footer-classic .phone-link {
		font-size: 30px;
	}
}

.footer-classic *+.social-list {
	margin-top: 20px;
}

.footer-classic .footer-title {
	font-size: 22px;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
}

.footer-classic .footer-title.big {
	font-size: 30px;
}

.footer-classic .footer-nav {
	margin-top: 30px;
}

@media (min-width: 1200px) {
	.footer-classic .footer-nav {
		margin-top: 70px;
	}
}

.footer-classic .footer-nav .footer-title {
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--dark-bg);
}

.footer-classic .footer-nav .footer-title+* {
	margin-top: 15px;
}

@media (min-width: 1200px) {
	.footer-classic .footer-nav .footer-title+* {
		margin-top: 40px;
	}
}

.footer-classic .nav-list li a:hover {
	text-decoration: underline;
}

.footer-classic .nav-list li+li {
	margin-top: 12px;
}

@media (min-width: 1200px) {
	.footer-classic .container+.container {
		margin-top: 120px;
	}
}

/*
*
* Comments
*/
.comment-classic {
	display: flex;
	align-items: flex-start;
	text-align: left;
	padding-bottom: 20px;
}

.comment-classic>*+* {
	margin-left: 20px;
}

.comment-classic-image {
	position: relative;
	flex-shrink: 0;
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
}

.comment-classic-main {
	flex-grow: 1;
}

.comment-classic-name {
	color: var(--accent);
}

.comment-classic-text {
	color: #111111;
}

.comment-classic-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: -5px;
	margin-left: -20px;
}

.comment-classic-meta:empty {
	margin-bottom: 0;
	margin-left: 0;
}

.comment-classic-meta>* {
	margin-top: 0;
	margin-bottom: 5px;
	margin-left: 20px;
}

.comment-classic-time {
	letter-spacing: .03em;
	color: #9b9b9b;
}

.comment-classic-reply {
	line-height: 1;
	color: #808080;
}

.comment-classic-reply::before {
	position: relative;
	top: 1px;
	content: '\f549';
	font-family: 'Material Design Icons';
	font-size: 24px;
	margin-right: 5px;
}

.comment-classic-reply:hover {
	color: var(--accent);
}

*+.comment-classic-text {
	margin-top: 8px;
}

*+.comment-classic-meta {
	margin-top: 15px;
}

@media (min-width: 576px) {
	.comment-classic>*+* {
		margin-left: 25px;
	}

	.comment-classic-reply::before {
		font-size: 28px;
	}
}

.comment-classic-group .comment-classic-group {
	margin-left: 25px;
}

.comment-classic-group *+.comment-classic-group {
	margin-top: 22px;
}

*+.comment-classic-group {
	margin-top: 60px;
}

.comment-classic-group+.comment-classic-group {
	margin-top: 30px;
}

@media (min-width: 768px) {
	.comment-classic-group .comment-classic-group {
		margin-left: 75px;
	}

	.comment-classic-image {
		max-width: 100px;
	}

	*+.comment-classic-text {
		margin-top: 18px;
	}

	*+.comment-classic-meta {
		margin-top: 20px;
	}
}

@media (min-width: 1200px) {
	.comment-classic-group .comment-classic-group {
		margin-left: 125px;
	}
}

/** @group Plugins */
/** @section Animate */
.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
	opacity: 1;
}

.animated.infinite {
	animation-iteration-count: infinite;
}

.animated.hinge {
	animation-duration: 2s;
}

html:not(.lt-ie10) .not-animated {
	opacity: 0;
}

.ipad .not-animated,
.ios .not-animated {
	opacity: 1 !important;
}

.ios .animated {
	animation: none;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.fadeIn {
	animation-name: fadeIn;
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}

	100% {
		opacity: 1;
		transform: none;
	}
}

.fadeInUp {
	animation-name: fadeInUp;
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}

	100% {
		opacity: 1;
		transform: none;
	}
}

.fadeInDown {
	animation-name: fadeInDown;
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}

	100% {
		opacity: 1;
		transform: none;
	}
}

.fadeInLeft {
	animation-name: fadeInLeft;
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}

	100% {
		opacity: 1;
		transform: none;
	}
}

.fadeInRight {
	animation-name: fadeInRight;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.fadeOut {
	animation-name: fadeOut;
}

@keyframes slideInDown {
	0% {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	100% {
		transform: translate3d(0, 0, 0);
	}
}

.slideInDown {
	animation-name: slideInDown;
}

@keyframes slideInLeft {
	0% {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}

	100% {
		transform: translate3d(0, 0, 0);
	}
}

.slideInLeft {
	animation-name: slideInLeft;
}

@keyframes slideInRight {
	0% {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}

	100% {
		transform: translate3d(0, 0, 0);
	}
}

.slideInRight {
	animation-name: slideInRight;
}

@keyframes slideOutDown {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		visibility: hidden;
		transform: translate3d(0, 100%, 0);
	}
}

.slideOutDown {
	animation-name: slideOutDown;
}

/** @section Preloader */
.preloader {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 10000;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background: #ffffff;
	transition: .3s all ease;
}

.preloader.loaded {
	opacity: 0;
	visibility: hidden;
}

.preloader-body {
	text-align: center;
}

.preloader-body p {
	position: relative;
	right: -8px;
}

.cssload-container {
	width: 100%;
	height: 36px;
	text-align: center;
}

.cssload-speeding-wheel {
	width: 36px;
	height: 36px;
	margin: 0 auto;
	border: 3px solid var(--accent);
	border-radius: 50%;
	border-left-color: transparent;
	border-bottom-color: transparent;
	animation: cssload-spin .88s infinite linear;
}

@keyframes cssload-spin {
	100% {
		transform: rotate(360deg);
	}
}

/** @section ToTop */
.ui-to-top {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 100;
	width: 40px;
	height: 40px;
	font-size: 20px;
	line-height: 36px;
	color: #ffffff;
	background: var(--accent);
	overflow: hidden;
	text-align: center;
	text-decoration: none;
	transition: .45s all ease-in-out;
	transform: translate3d(0, 100px, 0);
}

.ui-to-top:hover {
	color: #ffffff;
	background: #111111;
	text-decoration: none;
}

.ui-to-top:focus {
	color: #ffffff;
}

.ui-to-top.active {
	transform: translate3d(0, 0, 0);
}

html.mobile .ui-to-top,
html.tablet .ui-to-top {
	display: none !important;
}

@media (min-width: 576px) {
	.ui-to-top {
		right: 40px;
		bottom: 40px;
	}
}

/** @section RD Navbar */
@keyframes rd-navbar-slide-down {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes rd-navbar-slide-up {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-100%);
	}
}

.rd-navbar-wrap,
.rd-navbar,
.rd-menu,
.rd-navbar-nav,
.rd-navbar-panel,
.rd-navbar-static .rd-menu,
.rd-navbar-fixed .rd-navbar-nav-wrap,
.rd-navbar-fixed .rd-navbar-submenu {
	transition: 0.35s all cubic-bezier(0.65, 0.05, 0.36, 1);
}

.rd-navbar--no-transition,
.rd-navbar--no-transition * {
	transition: none !important;
}

.rd-navbar,
.rd-navbar.rd-navbar--is-clone {
	display: none;
}

.rd-navbar.rd-navbar-fixed+.rd-navbar.rd-navbar--is-clone,
.rd-navbar.rd-navbar-sidebar+.rd-navbar.rd-navbar--is-clone {
	display: none;
}

.rd-navbar {
	display: none;
	background: transparent;
}

.rd-navbar-toggle {
	display: inline-block;
	position: relative;
	width: 48px;
	height: 48px;
	line-height: 48px;
	cursor: pointer;
	color: #cccccc;
	background-color: transparent;
	border: none;
	display: none;
}

.rd-navbar-toggle span {
	position: relative;
	display: block;
	margin: auto;
	transition: .3s all ease;
}

.rd-navbar-toggle span:after,
.rd-navbar-toggle span:before {
	content: "";
	position: absolute;
	left: 0;
	top: -8px;
	transition: .3s all ease;
}

.rd-navbar-toggle span:after {
	top: 8px;
}

.rd-navbar-toggle span:after,
.rd-navbar-toggle span:before,
.rd-navbar-toggle span {
	width: 24px;
	height: 4px;
	background-color: #ffffff;
	backface-visibility: hidden;
	border-radius: 0;
}

.rd-navbar-toggle span {
	transform: rotate(180deg);
}

.rd-navbar-toggle span:before,
.rd-navbar-toggle span:after {
	transform-origin: 1.71429px center;
}

.rd-navbar-toggle.active span {
	transform: rotate(360deg);
}

.rd-navbar-toggle.active span:before,
.rd-navbar-toggle.active span:after {
	top: 0;
	width: 15px;
}

.rd-navbar-toggle.active span:before {
	-webkit-transform: rotate3d(0, 0, 1, -40deg);
	transform: rotate3d(0, 0, 1, -40deg);
}

.rd-navbar-toggle.active span:after {
	-webkit-transform: rotate3d(0, 0, 1, 40deg);
	transform: rotate3d(0, 0, 1, 40deg);
}

.rd-navbar-collapse-toggle {
	display: inline-block;
	position: relative;
	width: 48px;
	height: 48px;
	line-height: 48px;
	cursor: pointer;
	color: #ffffff;
	display: none;
}

.rd-navbar-collapse-toggle span {
	top: 50%;
	margin-top: -3px;
}

.rd-navbar-collapse-toggle span,
.rd-navbar-collapse-toggle span:before,
.rd-navbar-collapse-toggle span:after {
	position: absolute;
	width: 6px;
	height: 6px;
	line-height: 6px;
	text-align: center;
	background: #ffffff;
	left: 50%;
	margin-left: -3px;
	border-radius: 50%;
	transition: .3s all ease;
}

.rd-navbar-collapse-toggle span:before,
.rd-navbar-collapse-toggle span:after {
	content: '';
}

.rd-navbar-collapse-toggle span:before {
	bottom: 100%;
	margin-bottom: 3px;
}

.rd-navbar-collapse-toggle span:after {
	top: 100%;
	margin-top: 3px;
}

.rd-navbar-collapse-toggle.active span {
	transform: scale(0.7);
}

.rd-navbar-collapse-toggle.active span:before {
	transform: translateY(18px);
}

.rd-navbar-collapse-toggle.active span:after {
	transform: translateY(-18px);
}

.rd-navbar-brand a {
	display: block;
}

.rd-navbar-search {
	position: relative;
	display: inline-flex;
}

.rd-navbar-search .form-input {
	padding-right: 50px;
}

.rd-navbar-search .rd-search-form-submit {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 50px;
	padding: 0;
	margin: 0;
	border: none;
	cursor: pointer;
	background-color: transparent;
	color: #cccccc;
	transition: .33s;
}

.rd-navbar-search .rd-search-form-submit:hover {
	color: var(--accent);
}

.rd-navbar-search-toggle {
	background: none;
	border: none;
	display: inline-block;
	padding: 0;
	outline: none;
	outline-offset: 0;
	cursor: pointer;
	-webkit-appearance: none;
}

.rd-navbar-search-toggle::-moz-focus-inner {
	border: none;
	padding: 0;
}

.rd-navbar-dropdown {
	display: none;
}

/*
* @subsection  RD Navbar Static
*/
.rd-navbar-static {
	display: block;
}

.rd-navbar-static .request {
	align-items: center;
	text-transform: uppercase;
	font-size: 15px;
	letter-spacing: .05em;
	font-weight: 700;
	font-family: 'Oswald', sans-serif;
	gap: 20px;
}

.rd-navbar-static .request,
.rd-navbar-static .request:focus,
.rd-navbar-static .request:active {
	color: #ffffff;
}

.rd-navbar-static .request:hover {
	color: var(--accent);
}

/* .rd-navbar-static .request .square-figure {
	margin-right: 20px;
} */

.rd-navbar-static .request:hover .square-figure {
	border-radius: 50%;
	transition: all ease .25s;
}

.rd-navbar-static .rd-nav-item {
	display: inline-block;
}

.rd-navbar-static .rd-nav-item.focus .rd-nav-link,
.rd-navbar-static .rd-nav-item.opened .rd-nav-link {
	color: var(--accent);
	background: transparent;
}

.rd-navbar-static .rd-nav-item.focus>.rd-navbar-submenu-toggle,
.rd-navbar-static .rd-nav-item.opened>.rd-navbar-submenu-toggle {
	color: var(--accent);
}

.rd-navbar-static .rd-nav-item.active .rd-nav-link {
	color: var(--accent);
	background: transparent;
}

.rd-navbar-static .rd-nav-item.active>.rd-navbar-submenu-toggle {
	color: var(--accent);
}

.rd-navbar-static .rd-nav-item.focus>.rd-navbar-submenu-toggle::before,
.rd-navbar-static .rd-nav-item.opened>.rd-navbar-submenu-toggle::before,
.rd-navbar-static .rd-nav-item .rd-nav-link:hover+.rd-navbar-submenu-toggle::before {
	transform: rotate(180deg);
}

.rd-navbar-static .rd-nav-item>.rd-navbar-submenu-toggle {
	display: none;
	margin-left: 4px;
	font-family: "Material Design Icons";
	font-size: 16px;
	cursor: pointer;
}

.rd-navbar-static .rd-nav-item>.rd-navbar-submenu-toggle::before {
	position: relative;
	display: inline-block;
	transition: .22s;
	content: '\f236';
}

.rd-navbar-static .rd-nav-item>.rd-navbar-submenu-toggle:hover {
	color: var(--accent);
}

.rd-navbar-static .rd-nav-item>.rd-navbar-submenu {
	margin-top: 20px;
}

.rd-navbar-static .rd-nav-item {
	margin-left: 16px;
	margin-right: 16px;
}

.rd-navbar-static .rd-nav-link {
	position: relative;
	display: inline-block;
	color: #ffffff;
	font-size: 18px;
	line-height: 1.2;
	transition: .25s;
	font-weight: 400;
}

.rd-navbar-static .rd-nav-link:hover {
	color: var(--accent);
}

.rd-navbar-static .rd-menu {
	z-index: 15;
	position: absolute;
	display: block;
	margin-top: 22px;
	visibility: hidden;
	opacity: 0;
	text-align: left;
	transform: translate3d(0, 30px, 0);
}

.rd-navbar-static .rd-navbar-dropdown {
	position: absolute;
	left: 0;
	width: 200px;
	padding: 0;
	background: var(--dark-bg);
	z-index: 5;
}

.rd-navbar-static .rd-navbar-dropdown .rd-navbar-dropdown {
	top: -1px;
	left: 100%;
	z-index: 2;
	margin-top: -15px;
	margin-left: 15px;
	transform: translate3d(30px, 0, 0);
}

.rd-navbar-static .rd-navbar-dropdown .rd-navbar-dropdown.rd-navbar-open-left {
	left: auto;
	right: 100%;
	margin-left: 0;
	margin-right: 15px;
	transform: translate3d(-30px, 0, 0);
}

.rd-navbar-static .rd-dropdown-item+.rd-dropdown-item {
	border-top: 1px solid #1B2A39;
}

.rd-navbar-static .rd-dropdown-item.focus .rd-dropdown-link,
.rd-navbar-static .rd-dropdown-item.opened .rd-dropdown-link {
	color: var(--accent);
}

.rd-navbar-static .rd-dropdown-link {
	color: #ffffff;
}

.rd-navbar-static .rd-dropdown-link:hover {
	color: var(--accent);
}

.rd-navbar-static .rd-navbar-dropdown li>a,
.rd-navbar-static .rd-megamenu-list li>a {
	position: relative;
	display: flex;
	padding: 11px 20px;
	text-align: left;
	font-size: 18px;
	font-weight: 300;
}

.rd-navbar-static .rd-navbar-dropdown li>a,
.rd-navbar-static .rd-navbar-dropdown li>a:focus,
.rd-navbar-static .rd-navbar-dropdown li>a:active,
.rd-navbar-static .rd-megamenu-list li>a,
.rd-navbar-static .rd-megamenu-list li>a:focus,
.rd-navbar-static .rd-megamenu-list li>a:active {
	color: #ffffff;
}

.rd-navbar-static .rd-navbar-dropdown li>a:hover,
.rd-navbar-static .rd-megamenu-list li>a:hover {
	color: var(--accent);
}

.rd-navbar-static .rd-navbar-dropdown li>a,
.rd-navbar-static .rd-navbar-dropdown li>a::before,
.rd-navbar-static .rd-megamenu-list li>a,
.rd-navbar-static .rd-megamenu-list li>a::before {
	transition: .15s ease-in-out;
}

.rd-navbar-static .rd-navbar-megamenu {
	display: flex;
	left: 0;
	width: 100%;
	max-width: 1200px;
	padding: 30px 40px;
	background: var(--dark-bg);
}

.rd-navbar-static .rd-megamenu-item {
	flex-basis: 50%;
	flex-grow: 1;
}

.rd-navbar-static .rd-megamenu-item+.rd-megamenu-item {
	padding-left: 20px;
}

.rd-navbar-static .rd-megamenu-title {
	padding-bottom: 10px;
	border-bottom: 1px solid #d7d7d7;
	color: #ffffff;
}

.rd-navbar-static *+.rd-megamenu-title {
	margin-top: 30px;
}

.rd-navbar-static .rd-megamenu-list-item+.rd-megamenu-list-item {
	margin-top: 5px;
}

.rd-navbar-static .rd-megamenu-list-link {
	color: #ffffff;
	background: transparent;
}

.rd-navbar-static .rd-megamenu-list-link:hover {
	color: var(--accent);
	background: transparent;
}

.rd-navbar-static *+.rd-megamenu-list {
	margin-top: 10px;
}

.rd-navbar-static .rd-navbar-submenu.focus>.rd-menu,
.rd-navbar-static .rd-navbar-submenu.opened>.rd-menu {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}

.rd-navbar-static .rd-navbar-search.active .rd-search {
	visibility: visible;
	opacity: 1;
}

.rd-navbar-static .rd-search {
	position: absolute;
	top: 100%;
	right: 0;
	width: 270px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	margin-top: 20px;
	z-index: 2;
}

.rd-navbar-static *+.rd-navbar-search {
	margin-left: 32px;
}

.rd-navbar-static .rd-navbar-search-toggle {
	display: inline-flex;
	color: #ffffff;
}

.rd-navbar-static .rd-navbar-search-toggle span {
	display: inline-block;
	position: relative;
	width: 32px;
	height: 32px;
	font-size: 26px;
	line-height: 32px;
	text-align: center;
	cursor: pointer;
	background: none;
	border: none;
	outline: none;
	padding: 0;
}

.rd-navbar-static .rd-navbar-search-toggle span,
.rd-navbar-static .rd-navbar-search-toggle span::before,
.rd-navbar-static .rd-navbar-search-toggle span::after {
	transition: .3s all ease-in-out;
}

.rd-navbar-static .rd-navbar-search-toggle span::before,
.rd-navbar-static .rd-navbar-search-toggle span::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.rd-navbar-static .rd-navbar-search-toggle span::before {
	content: "";
	transform: rotate(0deg) scale(1);
	opacity: 1;
	visibility: visible;
	font-family: "Material Design Icons";
}

.rd-navbar-static .rd-navbar-search-toggle span::after {
	content: "";
	transform: rotate(-90deg) scale(0.4);
	opacity: 0;
	visibility: hidden;
	font-family: "Material Design Icons";
}

.rd-navbar-static .rd-navbar-search-toggle.active span::before {
	opacity: 0;
	visibility: hidden;
	transform: rotate(90deg) scale(0.4);
}

.rd-navbar-static .rd-navbar-search-toggle.active span::after {
	transform: rotate(0deg) scale(1);
	opacity: 1;
	visibility: visible;
}

.rd-navbar-static .rd-navbar-search-toggle:hover {
	color: var(--accent);
}

.rd-navbar-static.rd-navbar--is-clone {
	display: block;
	transform: translate3d(0, -100%, 0);
}

.rd-navbar-static.rd-navbar--is-clone.rd-navbar--is-stuck {
	transform: translate3d(0, 0, 0);
}

.rd-navbar-static.rd-navbar--is-stuck,
.rd-navbar-static.rd-navbar--is-clone {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 1080;
	background: var(--dark-bg);
}

.rd-navbar-static .rd-navbar--has-dropdown {
	position: relative;
}

/*
*
* RD Navbar Fixed
*/
.rd-navbar-fixed {
	display: block;
}

.rd-navbar-fixed .rd-navbar-toggle {
	display: inline-block;
}

.rd-navbar-fixed .rd-navbar-brand {
	position: relative;
	margin-left: 6px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: left;
	font-size: 22px;
	line-height: 46px;
}

.rd-navbar-fixed .rd-navbar-brand img {
	max-width: 120px;
	width: auto;
	height: auto;
	max-width: 100px;
}

.rd-navbar-fixed .rd-navbar-panel {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 1080;
	display: flex;
	align-items: center;
	padding: 4px;
}

.rd-navbar-fixed .rd-navbar-nav-wrap {
	position: fixed;
	left: 0;
	top: 56px;
	bottom: -56px;
	z-index: 1079;
	width: 270px;
	padding: 0 0 81px;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	font-size: 14px;
	line-height: 34px;
	transform: translateX(-110%);
}

.rd-navbar-fixed .rd-navbar-nav-wrap::-webkit-scrollbar {
	width: 4px;
}

.rd-navbar-fixed .rd-navbar-nav-wrap::-webkit-scrollbar-thumb {
	background: #e87984;
	border: none;
	border-radius: 0;
	opacity: .2;
}

.rd-navbar-fixed .rd-navbar-nav-wrap::-webkit-scrollbar-track {
	background: var(--accent);
	border: none;
	border-radius: 0;
}

.rd-navbar-fixed .rd-navbar-nav-wrap.active {
	transform: translateX(0);
}

.rd-navbar-fixed .rd-navbar-nav {
	display: block;
	margin: 15px 0;
	height: auto;
	text-align: left;
}

.rd-navbar-fixed .rd-nav-item {
	text-align: left;
}

.rd-navbar-fixed .rd-nav-item+.rd-nav-item {
	margin-top: 4px;
}

.rd-navbar-fixed .rd-nav-link {
	display: block;
	padding: 9px 56px 9px 18px;
}

.rd-navbar-fixed li.opened>.rd-navbar-dropdown {
	padding: 4px 0 0;
}

.rd-navbar-fixed li.opened>.rd-navbar-megamenu {
	padding-top: 15px;
	padding-bottom: 15px;
}

.rd-navbar-fixed li.opened>.rd-menu {
	opacity: 1;
	height: auto;
}

.rd-navbar-fixed li.opened>.rd-navbar-submenu-toggle::after {
	transform: rotate(180deg);
}

.rd-navbar-fixed .rd-menu {
	display: none;
	transition: opacity 0.3s, height 0.4s ease;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.rd-navbar-fixed .rd-navbar-submenu {
	position: relative;
}

.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-dropdown .rd-navbar-submenu-toggle:after {
	height: 34px;
	line-height: 34px;
}

.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-dropdown>li>a {
	padding-left: 30px;
}

.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-dropdown li li>a,
.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-megamenu ul li li>a {
	padding-left: 46px;
}

.rd-navbar-fixed .rd-navbar-submenu.opened>.rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-submenu.opened>.rd-navbar-megamenu {
	display: block;
}

.rd-navbar-fixed .rd-megamenu-list>li>a,
.rd-navbar-fixed .rd-navbar-dropdown>li>a {
	display: block;
	padding: 9px 56px 9px 16px;
	font-size: 14px;
	line-height: 1.5;
}

.rd-navbar-fixed .rd-megamenu-list>li+li,
.rd-navbar-fixed .rd-navbar-dropdown>li+li {
	margin-top: 3px;
}

.rd-navbar-fixed .rd-megamenu-list>li>a {
	padding-left: 30px;
}

.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title {
	position: relative;
	display: block;
	padding: 0 18px 7px;
	font-size: 16px;
	line-height: 1.5;
}

.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title::after {
	content: '';
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 0;
	border-bottom: 1px solid;
}

.rd-navbar-fixed .rd-navbar-megamenu *+.rd-megamenu-list {
	margin-top: 11px;
}

.rd-navbar-fixed .rd-navbar-megamenu *+.rd-megamenu-title {
	margin-top: 20px;
}

.rd-navbar-fixed .rd-navbar-megamenu>li+li {
	margin-top: 20px;
}

.rd-navbar-fixed .rd-navbar-submenu-toggle {
	cursor: pointer;
}

.rd-navbar-fixed .rd-navbar-submenu-toggle::after {
	content: '\f107';
	position: absolute;
	top: 0;
	right: 0;
	width: 56px;
	height: 52px;
	font: 400 14px "FontAwesome";
	line-height: 52px;
	text-align: center;
	transition: 0.4s all ease;
	z-index: 2;
	cursor: pointer;
}

.rd-navbar-fixed .rd-navbar-collapse-toggle {
	display: none;
	top: 4px;
	z-index: 1081;
}

.rd-navbar-fixed .rd-navbar-collapse {
	position: fixed;
	right: 0;
	top: 56px;
	z-index: 1079;
	transform: translate3d(0, -10px, 0);
	padding: 15px;
	width: auto;
	border-radius: 0;
	text-align: left;
	font-size: 14px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}

.rd-navbar-fixed .rd-navbar-collapse.active {
	transform: translate3d(0, 0, 0);
	opacity: 1;
	visibility: visible;
}

.rd-navbar-fixed .rd-navbar-collapse .list-inline>li {
	display: block;
}

.rd-navbar-fixed .rd-navbar-collapse .list-inline>li+li {
	margin-top: 10px;
}

.rd-navbar-fixed .rd-navbar-main-element {
	position: absolute;
	float: left;
}

.rd-navbar-fixed .rd-navbar-search .rd-search {
	position: fixed;
	right: 0;
	left: 0;
	top: 56px;
	z-index: 1079;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	transform: translate3d(0, -10px, 0);
}

.rd-navbar-fixed .rd-navbar-search .rd-search-results-live {
	display: none;
}

.rd-navbar-fixed .rd-navbar-search .form-input {
	padding-right: 50px;
}

.rd-navbar-fixed .rd-navbar-search .rd-search-form-submit {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 50px;
	padding: 0;
	margin: 0;
	border: none;
	background-color: transparent;
}

.rd-navbar-fixed .rd-navbar-search.active .rd-search {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.rd-navbar-fixed .rd-navbar-search-toggle {
	display: inline-flex;
}

.rd-navbar-fixed .rd-navbar-search-toggle span {
	display: inline-block;
	position: relative;
	width: 48px;
	height: 48px;
	font-size: 26px;
	line-height: 48px;
	text-align: center;
	cursor: pointer;
	background: none;
	border: none;
	outline: none;
	padding: 0;
}

.rd-navbar-fixed .rd-navbar-search-toggle span,
.rd-navbar-fixed .rd-navbar-search-toggle span::before,
.rd-navbar-fixed .rd-navbar-search-toggle span::after {
	transition: .3s all ease-in-out;
}

.rd-navbar-fixed .rd-navbar-search-toggle span::before,
.rd-navbar-fixed .rd-navbar-search-toggle span::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.rd-navbar-fixed .rd-navbar-search-toggle span::before {
	content: "";
	transform: rotate(0deg) scale(1);
	opacity: 1;
	visibility: visible;
	font-family: "Material Design Icons";
}

.rd-navbar-fixed .rd-navbar-search-toggle span::after {
	content: "";
	transform: rotate(-90deg) scale(0.4);
	opacity: 0;
	visibility: hidden;
	font-family: "Material Design Icons";
}

.rd-navbar-fixed .rd-navbar-search-toggle.active span::before {
	opacity: 0;
	visibility: hidden;
	transform: rotate(90deg) scale(0.4);
}

.rd-navbar-fixed .rd-navbar-search-toggle.active span::after {
	transform: rotate(0deg) scale(1);
	opacity: 1;
	visibility: visible;
}

.rd-navbar-fixed [class*='rd-navbar-fixed-element'] {
	position: fixed;
	top: 4px;
	z-index: 1082;
}

.rd-navbar-fixed .rd-navbar-fixed-element-1 {
	right: 0;
}

.rd-navbar-fixed .rd-navbar-fixed-element-2 {
	right: 46px;
}

.rd-navbar-fixed.rd-navbar--is-clone {
	display: none;
}

.rd-navbar-fixed .rd-navbar-fixed--visible {
	display: block;
}

.rd-navbar-fixed .rd-navbar-fixed--hidden {
	display: none;
}

.rd-navbar-fixed .rd-navbar-panel {
	color: #9b9b9b;
	box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.1);
	background: var(--dark-bg);
}

.rd-navbar-fixed .rd-navbar-nav-wrap {
	color: #ffffff;
	background: var(--dark-bg);
	border: none;
	box-shadow: 2px 1px 2px 0px rgba(255, 255, 255, 0.1);
}

.rd-navbar-fixed .rd-nav-item:hover .rd-nav-link,
.rd-navbar-fixed .rd-nav-item.focus .rd-nav-link,
.rd-navbar-fixed .rd-nav-item.active .rd-nav-link,
.rd-navbar-fixed .rd-nav-item.opened .rd-nav-link {
	color: #ffffff;
	background: var(--accent);
}

.rd-navbar-fixed .rd-nav-item:hover>.rd-navbar-submenu-toggle,
.rd-navbar-fixed .rd-nav-item.focus>.rd-navbar-submenu-toggle,
.rd-navbar-fixed .rd-nav-item.active>.rd-navbar-submenu-toggle,
.rd-navbar-fixed .rd-nav-item.opened>.rd-navbar-submenu-toggle {
	color: #ffffff;
}

.rd-navbar-fixed .rd-nav-link {
	color: #ffffff;
	font-size: 16px;
}

.rd-navbar-fixed .rd-megamenu-list>li>a,
.rd-navbar-fixed .rd-navbar-dropdown>li>a {
	color: #ffffff;
}

.rd-navbar-fixed .rd-megamenu-list>li:hover>a,
.rd-navbar-fixed .rd-megamenu-list>li.focus>a,
.rd-navbar-fixed .rd-megamenu-list>li.active>a,
.rd-navbar-fixed .rd-megamenu-list>li.opened>a,
.rd-navbar-fixed .rd-navbar-dropdown>li:hover>a,
.rd-navbar-fixed .rd-navbar-dropdown>li.focus>a,
.rd-navbar-fixed .rd-navbar-dropdown>li.active>a,
.rd-navbar-fixed .rd-navbar-dropdown>li.opened>a {
	color: #ffffff;
	background: var(--accent);
}

.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title {
	color: #cccccc;
}

.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title::after {
	border-bottom: 1px solid #d7d7d7;
}

.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title a,
.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title a:focus,
.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title a:active {
	color: #ffffff;
}

.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title a:hover {
	color: var(--accent);
}

.rd-navbar-fixed .rd-navbar-submenu-toggle {
	color: #9b9b9b;
}

.rd-navbar-fixed .rd-navbar-search .rd-search-form-submit {
	color: #cccccc;
}

.rd-navbar-fixed .rd-navbar-search .rd-search-form-submit:hover {
	color: var(--accent);
}

.rd-navbar-fixed .rd-navbar-search-toggle {
	color: #ffffff;
}

.rd-navbar-fixed .rd-navbar-search-toggle:hover {
	color: var(--accent);
}

.rd-navbar-fixed .rd-navbar-collapse {
	background-color: var(--dark-bg);
	box-shadow: 0 0 22px -4px rgba(0, 0, 0, 0.17);
}

.rd-navbar-fixed .rd-navbar-collapse,
.rd-navbar-fixed .rd-navbar-collapse a {
	color: #9b9b9b;
}

html.rd-navbar-fixed-linked .page {
	padding-top: 56px;
}

/*
*
* RD Navbar Sidebar
*/
.rd-navbar-sidebar {
	display: block;
	background: #ffffff;
}

.rd-navbar-sidebar .rd-navbar-main-outer {
	padding-left: 15px;
	padding-right: 15px;
}

.rd-navbar-sidebar .rd-navbar-main {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 60px 22px 0;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
	transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rd-navbar-sidebar .rd-navbar-main-element {
	display: flex;
	align-items: center;
}

.rd-navbar-sidebar .rd-navbar-main-element>*+* {
	margin-left: 20px;
}

.rd-navbar-sidebar .rd-navbar-toggle {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	z-index: 1102;
}

.rd-navbar-sidebar .rd-navbar-panel {
	min-width: 200px;
	text-align: center;
}

.rd-navbar-sidebar .rd-navbar-brand img {
	width: auto;
	height: auto;
	max-width: 200px;
	max-height: 200px;
}

.rd-navbar-sidebar .rd-navbar-nav-wrap {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 1101;
	width: 450px;
	padding: 94px 0 0 0;
	background: #ffffff;
	transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateX(100%);
	box-shadow: 0 0 13px 0 rgba(204, 204, 204, 0.16);
}

.rd-navbar-sidebar .rd-navbar-nav-wrap.active {
	transition-delay: .1s;
	transform: translateX(0);
}

.rd-navbar-sidebar .rd-navbar-nav {
	height: calc(100vh - 100px);
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	border-top: 1px solid #d7d7d7;
}

.rd-navbar-sidebar .rd-nav-item {
	position: relative;
	display: block;
	padding: 19px 30px 19px 40px;
}

.rd-navbar-sidebar .rd-nav-item.active .rd-nav-link {
	color: var(--accent);
}

.rd-navbar-sidebar .rd-nav-item .rd-nav-link,
.rd-navbar-sidebar .rd-nav-item>.rd-navbar-submenu-toggle {
	font-size: 18px;
}

.rd-navbar-sidebar .rd-nav-item+.rd-nav-item {
	border-top: 1px solid #d7d7d7;
}

.rd-navbar-sidebar .rd-nav-item:last-child {
	border-bottom: 1px solid #d7d7d7;
	margin-bottom: 30px;
}

.rd-navbar-sidebar .rd-nav-link {
	max-width: calc(100% - 30px);
	word-break: break-all;
	font-size: 18px;
	line-height: 1.4;
	text-transform: none;
	color: #cccccc;
}

.rd-navbar-sidebar .rd-nav-link:hover {
	color: var(--accent);
}

.rd-navbar-sidebar .rd-navbar-submenu .opened>.rd-navbar-submenu-toggle::after {
	transform: rotate(180deg);
}

.rd-navbar-sidebar .rd-navbar-submenu>.rd-navbar-dropdown,
.rd-navbar-sidebar .rd-navbar-submenu>.rd-navbar-megamenu {
	display: none;
	opacity: 0;
	visibility: hidden;
	will-change: opacity, visibility;
	transition: opacity .2s;
}

.rd-navbar-sidebar .rd-navbar-submenu.opened>.rd-navbar-dropdown,
.rd-navbar-sidebar .rd-navbar-submenu.opened>.rd-navbar-megamenu {
	display: block;
	opacity: 1;
	visibility: visible;
}

.rd-navbar-sidebar .rd-navbar-submenu>.rd-navbar-submenu>.rd-navbar-dropdown,
.rd-navbar-sidebar .rd-navbar-submenu>.rd-navbar-submenu>.rd-navbar-megamenu {
	transform: translateY(30px);
}

.rd-navbar-sidebar .rd-navbar-submenu>.rd-navbar-submenu.opened>.rd-navbar-dropdown,
.rd-navbar-sidebar .rd-navbar-submenu>.rd-navbar-submenu.opened>.rd-navbar-megamenu {
	transform: translateY(0);
}

.rd-navbar-sidebar .rd-navbar-submenu>.rd-navbar-submenu .rd-navbar-submenu>.rd-navbar-dropdown {
	transform: translateX(-20px);
}

.rd-navbar-sidebar .rd-navbar-submenu>.rd-navbar-submenu .rd-navbar-submenu.opened>.rd-navbar-dropdown {
	transform: translateX(0);
}

.rd-navbar-sidebar .rd-nav-item>.rd-navbar-submenu-toggle,
.rd-navbar-sidebar .rd-nav-item .rd-navbar--has-dropdown>.rd-navbar-submenu-toggle {
	position: absolute;
	top: 0;
	right: 0;
	padding-top: inherit;
	padding-right: inherit;
	padding-left: 10px;
	margin-bottom: inherit;
	display: inline-block;
	width: 30px;
	margin-left: 5px;
	text-align: center;
	cursor: pointer;
	color: #ffffff;
}

.rd-navbar-sidebar .rd-nav-item>.rd-navbar-submenu-toggle:hover,
.rd-navbar-sidebar .rd-nav-item .rd-navbar--has-dropdown>.rd-navbar-submenu-toggle:hover {
	color: var(--accent);
}

.rd-navbar-sidebar .rd-nav-item>.rd-navbar-submenu-toggle::after,
.rd-navbar-sidebar .rd-nav-item .rd-navbar--has-dropdown>.rd-navbar-submenu-toggle::after {
	content: '\f107';
	position: relative;
	display: inline-block;
	font-family: "FontAwesome";
	font-size: inherit;
	line-height: inherit;
	text-align: center;
	vertical-align: middle;
	transition: 0.4s all ease;
	z-index: 2;
	will-change: transform;
}

.rd-navbar-sidebar .rd-nav-item .rd-navbar--has-dropdown>.rd-navbar-submenu-toggle {
	font-size: 14px;
	color: #cccccc;
	margin-left: 7px;
}

.rd-navbar-sidebar .rd-menu {
	margin-top: 31px;
}

.rd-navbar-sidebar .rd-navbar-dropdown,
.rd-navbar-sidebar .rd-megamenu-list {
	font-size: 14px;
}

.rd-navbar-sidebar .rd-navbar-dropdown li>a,
.rd-navbar-sidebar .rd-megamenu-list li>a {
	position: relative;
	display: flex;
	padding: 11px 20px;
	text-align: left;
	font-size: 18px;
	font-weight: 300;
}

.rd-navbar-sidebar .rd-navbar-dropdown li>a,
.rd-navbar-sidebar .rd-navbar-dropdown li>a:focus,
.rd-navbar-sidebar .rd-navbar-dropdown li>a:active,
.rd-navbar-sidebar .rd-megamenu-list li>a,
.rd-navbar-sidebar .rd-megamenu-list li>a:focus,
.rd-navbar-sidebar .rd-megamenu-list li>a:active {
	color: #ffffff;
}

.rd-navbar-sidebar .rd-navbar-dropdown li>a:hover,
.rd-navbar-sidebar .rd-megamenu-list li>a:hover {
	color: var(--accent);
}

.rd-navbar-sidebar .rd-navbar-dropdown li>a,
.rd-navbar-sidebar .rd-navbar-dropdown li>a::before,
.rd-navbar-sidebar .rd-megamenu-list li>a,
.rd-navbar-sidebar .rd-megamenu-list li>a::before {
	transition: .15s ease-in-out;
}

.rd-navbar-sidebar .rd-navbar-megamenu {
	max-width: 450px;
	margin-bottom: -30px;
}

.rd-navbar-sidebar .rd-navbar-megamenu>* {
	margin-bottom: 30px;
}

.rd-navbar-sidebar .rd-navbar-megamenu>li {
	display: inline-block;
	vertical-align: top;
	width: 45%;
}

.rd-navbar-sidebar .rd-megamenu-title {
	display: none;
}

.rd-navbar-sidebar .rd-megamenu-list {
	margin-top: 0;
}

.rd-navbar-sidebar .rd-megamenu-list>li+li {
	margin-top: 10px;
}

.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown>a {
	padding-right: 0;
}

.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown>a::before {
	display: none;
}

.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown>a:hover {
	padding-left: 0;
}

.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown.focus>a {
	padding-left: 0;
}

.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown.opened>.rd-navbar-submenu-toggle {
	color: var(--accent);
}

.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown.opened>.rd-navbar-submenu-toggle::after {
	top: 1px;
}

.rd-navbar-sidebar .rd-navbar-dropdown>li+li {
	margin-top: 10px;
}

.rd-navbar-sidebar .rd-nav-item>.rd-navbar-dropdown {
	margin-top: 25px;
}

.rd-navbar-sidebar .rd-nav-item>.rd-navbar-dropdown .rd-navbar-dropdown {
	margin-top: 10px;
	padding-left: 15px;
}

.rd-navbar-sidebar .rd-nav-item>.rd-navbar-dropdown .rd-navbar-dropdown>li>a {
	font-size: 12px;
}

@media (min-width: 1200px) {
	.rd-navbar-sidebar .rd-navbar-megamenu {
		margin-bottom: -30px;
	}

	.rd-navbar-sidebar .rd-navbar-megamenu>* {
		margin-bottom: 30px;
	}

	.rd-navbar-sidebar .rd-navbar-dropdown>li+li,
	.rd-navbar-sidebar .rd-megamenu-list>li+li {
		margin-top: 18px;
	}
}

@media (min-width: 1200px) {
	.rd-navbar-sidebar .rd-navbar-nav-wrap {
		width: auto;
		left: calc(50% + 600px - 80px);
	}
}

.rd-navbar-sidebar.rd-navbar--is-clone {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transform: translateY(-101%);
}

.rd-navbar-sidebar.rd-navbar--is-clone.rd-navbar--is-stuck {
	transform: translateY(0);
}

.rd-navbar-sidebar.rd-navbar--is-stuck {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.1);
}

.rd-navbar-sidebar.rd-navbar--is-stuck .rd-navbar-main {
	padding-top: 11px;
	padding-bottom: 11px;
}

/**
*
* RD Navbar Classic
* =====================================================
*/
.rd-navbar-classic .request {
	display: none;
}

@media (min-width: 1200px) {
	.rd-navbar-classic .request {
		display: flex;
	}
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (min-width: 992px) {
	.rd-navbar-classic.rd-navbar-static .rd-navbar-panel {
		gap: 50px;
	}
}

@media (min-width: 1200px) {
	.rd-navbar-classic.rd-navbar-static .rd-navbar-panel {
		gap: 100px;
	}
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-aside-outer,
.rd-navbar-classic.rd-navbar-static .rd-navbar-main-outer {
	padding-left: 15px;
	padding-right: 15px;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-aside,
.rd-navbar-classic.rd-navbar-static .rd-navbar-main {
	max-width: 1270px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 1270px) {

	.rd-navbar-classic.rd-navbar-static .rd-navbar-aside,
	.rd-navbar-classic.rd-navbar-static .rd-navbar-main {
		max-width: 1270px;
	}
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-aside {
	padding: 10px 0;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-main {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-brand img {
	width: auto;
	height: auto;
	max-width: 121px;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-main-element {
	display: flex;
	align-items: center;
}

.rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck,
.rd-navbar-classic.rd-navbar-static.rd-navbar--is-clone {
	border-bottom-color: #d7d7d7;
}

.rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-aside-outer,
.rd-navbar-classic.rd-navbar-static.rd-navbar--is-clone .rd-navbar-aside-outer {
	display: none;
}

.rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-main,
.rd-navbar-classic.rd-navbar-static.rd-navbar--is-clone .rd-navbar-main {
	padding: 17px 0;
}

.rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-nav-item>.rd-navbar-submenu,
.rd-navbar-classic.rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav-item>.rd-navbar-submenu {
	margin-top: 17px;
}

.rd-navbar-classic.rd-navbar--is-stuck {
	box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.1);
}

.rd-navbar-classic.rd-navbar--is-stuck .rd-navbar-dropdown {
	box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.1);
}

/**
*
* RD Navbar Classic
* =====================================================
*/
.rd-navbar-classic-2 {
	background-color: var(--dark-bg);
}

.rd-navbar-classic-2 .request {
	display: none;
}

@media (min-width: 1200px) {
	.rd-navbar-classic-2 .request {
		display: flex;
	}
}

/* @media (min-width: 992px) {
	.rd-navbar-classic-2.rd-navbar-static .rd-navbar-nav {
		margin-left: 50px;
	}
}

@media (min-width: 1200px) {
	.rd-navbar-classic-2.rd-navbar-static .rd-navbar-nav {
		margin-left: 100px;
	}
} */

.rd-navbar-classic-2.rd-navbar-static .rd-navbar-panel {
	display: flex;
	align-items: center;
}

@media (min-width: 992px) {
	.rd-navbar-classic-2.rd-navbar-static .rd-navbar-panel {
		gap: 50px;
	}
}

@media (min-width: 1200px) {
	.rd-navbar-classic-2.rd-navbar-static .rd-navbar-panel {
		gap: 100px;
	}
}

.rd-navbar-classic-2.rd-navbar-static .rd-navbar-aside-outer,
.rd-navbar-classic-2.rd-navbar-static .rd-navbar-main-outer {
	padding-left: 15px;
	padding-right: 15px;
}

.rd-navbar-classic-2.rd-navbar-static .rd-navbar-aside,
.rd-navbar-classic-2.rd-navbar-static .rd-navbar-main {
	max-width: 1270px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 1270px) {

	.rd-navbar-classic-2.rd-navbar-static .rd-navbar-aside,
	.rd-navbar-classic-2.rd-navbar-static .rd-navbar-main {
		max-width: 1270px;
	}
}

.rd-navbar-classic-2.rd-navbar-static .rd-navbar-aside {
	padding: 10px 0;
}

.rd-navbar-classic-2.rd-navbar-static .rd-navbar-main {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 37px 0;
}

.rd-navbar-classic-2.rd-navbar-static .rd-navbar-brand img {
	width: auto;
	height: auto;
	max-width: 121px;
}

.rd-navbar-classic-2.rd-navbar-static .rd-navbar-main-element {
	display: flex;
	align-items: center;
}

.rd-navbar-classic-2.rd-navbar-static.rd-navbar--is-stuck,
.rd-navbar-classic-2.rd-navbar-static.rd-navbar--is-clone {
	border-bottom-color: #d7d7d7;
}

.rd-navbar-classic-2.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-aside-outer,
.rd-navbar-classic-2.rd-navbar-static.rd-navbar--is-clone .rd-navbar-aside-outer {
	display: none;
}

.rd-navbar-classic-2.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-main,
.rd-navbar-classic-2.rd-navbar-static.rd-navbar--is-clone .rd-navbar-main {
	padding: 17px 0;
}

.rd-navbar-classic-2.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-nav-item>.rd-navbar-submenu,
.rd-navbar-classic-2.rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav-item>.rd-navbar-submenu {
	margin-top: 17px;
}

.rd-navbar-classic-2.rd-navbar--is-stuck {
	box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.1);
}

.rd-navbar-classic-2.rd-navbar--is-stuck .rd-navbar-dropdown {
	box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.1);
}

/*
*
* RD Navbar Fullwidth
*/
.rd-navbar-fullwidth {
	display: block;
}

.rd-navbar-fullwidth .rd-navbar-nav>li+li {
	margin-left: 20px;
}

.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-main,
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-main {
	padding: 10px 0;
}

/** @section Swiper */
@font-face {
	font-family: 'swiper-icons';
	src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
	font-weight: 400;
	font-style: normal;
}

:root {
	--swiper-theme-color: #007aff;
	/*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
}

.swiper {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	/* Fix of Webkit flickering */
	z-index: 1;
	display: block;
}

.swiper-vertical>.swiper-wrapper {
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
	box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
	transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
	touch-action: pan-y;
}

.swiper-vertical {
	touch-action: pan-x;
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
	display: block;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
}

.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
	transform: translateZ(0);
	backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
	transform-style: preserve-3d;
}

.swiper-3d {
	perspective: 1200px;

	.swiper-slide,
	.swiper-cube-shadow {
		transform-style: preserve-3d;
	}
}

/* CSS Mode */
.swiper-css-mode {
	>.swiper-wrapper {
		overflow: auto;
		scrollbar-width: none;
		/* For Firefox */
		-ms-overflow-style: none;

		/* For Internet Explorer and Edge */
		&::-webkit-scrollbar {
			display: none;
		}
	}

	>.swiper-wrapper>.swiper-slide {
		scroll-snap-align: start start;
	}

	&.swiper-horizontal {
		>.swiper-wrapper {
			scroll-snap-type: x mandatory;
		}
	}

	&.swiper-vertical {
		>.swiper-wrapper {
			scroll-snap-type: y mandatory;
		}
	}

	&.swiper-free-mode {
		>.swiper-wrapper {
			scroll-snap-type: none;
		}

		>.swiper-wrapper>.swiper-slide {
			scroll-snap-align: none;
		}
	}

	&.swiper-centered {
		>.swiper-wrapper::before {
			content: '';
			flex-shrink: 0;
			order: 9999;
		}

		>.swiper-wrapper>.swiper-slide {
			scroll-snap-align: center center;
			scroll-snap-stop: always;
		}
	}

	&.swiper-centered.swiper-horizontal {
		>.swiper-wrapper>.swiper-slide:first-child {
			margin-inline-start: var(--swiper-centered-offset-before);
		}

		>.swiper-wrapper::before {
			height: 100%;
			min-height: 1px;
			width: var(--swiper-centered-offset-after);
		}
	}

	&.swiper-centered.swiper-vertical {
		>.swiper-wrapper>.swiper-slide:first-child {
			margin-block-start: var(--swiper-centered-offset-before);
		}

		>.swiper-wrapper::before {
			width: 100%;
			min-width: 1px;
			height: var(--swiper-centered-offset-after);
		}
	}
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {

	.swiper-slide-shadow,
	.swiper-slide-shadow-left,
	.swiper-slide-shadow-right,
	.swiper-slide-shadow-top,
	.swiper-slide-shadow-bottom,
	.swiper-slide-shadow,
	.swiper-slide-shadow-left,
	.swiper-slide-shadow-right,
	.swiper-slide-shadow-top,
	.swiper-slide-shadow-bottom {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		z-index: 10;
	}

	.swiper-slide-shadow {
		background: rgba(0, 0, 0, 0.15);
	}

	.swiper-slide-shadow-left {
		background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	}

	.swiper-slide-shadow-right {
		background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	}

	.swiper-slide-shadow-top {
		background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	}

	.swiper-slide-shadow-bottom {
		background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	}
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	transform-origin: 50%;
	box-sizing: border-box;
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
	.swiper-lazy-preloader {
		animation: swiper-preloader-spin 1s infinite linear;
	}
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Slide styles end */

.swiper-virtual .swiper-slide {
	-webkit-backface-visibility: hidden;
	transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode {
	.swiper-wrapper::after {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		pointer-events: none;
	}
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
	.swiper-wrapper::after {
		height: 1px;
		width: var(--swiper-virtual-size);
	}
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
	.swiper-wrapper::after {
		width: 1px;
		height: var(--swiper-virtual-size);
	}
}



:root {
	--swiper-navigation-size: 44px;
	/*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
	position: absolute;

	width: var(--swiper-navigation-size);
	height: var(--swiper-navigation-size);

	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color));

	&.swiper-button-disabled {
		opacity: 0.35;
		cursor: auto;
		pointer-events: none;
	}

	&.swiper-button-hidden {
		opacity: 0;
		cursor: auto;
		pointer-events: none;
	}

	.swiper-navigation-disabled & {
		display: none !important;
	}

	svg {
		width: 100%;
		height: 100%;
		object-fit: contain;
		transform-origin: center;
		fill: currentColor;
		pointer-events: none;
	}
}

.swiper-button-lock {
	display: none;
}

.swiper-button-prev,
.swiper-button-next {
	top: var(--swiper-navigation-top-offset, 50%);
	margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}

.swiper-button-prev {
	left: var(--swiper-navigation-sides-offset, 4px);
	right: auto;

	.swiper-navigation-icon {
		transform: rotate(180deg);
	}
}

.swiper-button-next {
	right: var(--swiper-navigation-sides-offset, 4px);
	left: auto;
}

.swiper-horizontal {

	.swiper-button-prev,
	.swiper-button-next,
	~.swiper-button-prev,
	~.swiper-button-next {
		top: var(--swiper-navigation-top-offset, 50%);
		margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
		margin-left: 0;
	}

	.swiper-button-prev,
	&~.swiper-button-prev,
	&.swiper-rtl .swiper-button-next,
	&.swiper-rtl~.swiper-button-next {
		left: var(--swiper-navigation-sides-offset, 4px);
		right: auto;
	}

	.swiper-button-next,
	&~.swiper-button-next,
	&.swiper-rtl .swiper-button-prev,
	&.swiper-rtl~.swiper-button-prev {
		right: var(--swiper-navigation-sides-offset, 4px);
		left: auto;
	}

	.swiper-button-prev,
	&~.swiper-button-prev,
	&.swiper-rtl .swiper-button-next,
	&.swiper-rtl~.swiper-button-next {
		.swiper-navigation-icon {
			transform: rotate(180deg);
		}
	}

	&.swiper-rtl .swiper-button-prev,
	&.swiper-rtl~.swiper-button-prev {
		.swiper-navigation-icon {
			transform: rotate(0deg);
		}
	}
}

.swiper-vertical {

	.swiper-button-prev,
	.swiper-button-next,
	~.swiper-button-prev,
	~.swiper-button-next {
		left: var(--swiper-navigation-top-offset, 50%);
		right: auto;
		margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
		margin-top: 0;
	}

	.swiper-button-prev,
	~.swiper-button-prev {
		top: var(--swiper-navigation-sides-offset, 4px);
		bottom: auto;

		.swiper-navigation-icon {
			transform: rotate(-90deg);
		}
	}

	.swiper-button-next,
	~.swiper-button-next {
		bottom: var(--swiper-navigation-sides-offset, 4px);
		top: auto;

		.swiper-navigation-icon {
			transform: rotate(90deg);
		}
	}
}

:root {
	/*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	transition: 300ms opacity;
	transform: translate3d(0, 0, 0);
	z-index: 10;

	&.swiper-pagination-hidden {
		opacity: 0;
	}

	.swiper-pagination-disabled>&,
	&.swiper-pagination-disabled {
		display: none !important;
	}
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: var(--swiper-pagination-bottom, 8px);
	top: var(--swiper-pagination-top, auto);
	left: 0;
	width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;

	.swiper-pagination-bullet {
		transform: scale(0.33);
		position: relative;
	}

	.swiper-pagination-bullet-active {
		transform: scale(1);
	}

	.swiper-pagination-bullet-active-main {
		transform: scale(1);
	}

	.swiper-pagination-bullet-active-prev {
		transform: scale(0.66);
	}

	.swiper-pagination-bullet-active-prev-prev {
		transform: scale(0.33);
	}

	.swiper-pagination-bullet-active-next {
		transform: scale(0.66);
	}

	.swiper-pagination-bullet-active-next-next {
		transform: scale(0.33);
	}
}

.swiper-pagination-bullet {
	width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
	height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
	display: inline-block;
	border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
	background: var(--swiper-pagination-bullet-inactive-color, #000);
	opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);

	button& {
		border: none;
		margin: 0;
		padding: 0;
		box-shadow: none;
		appearance: none;
	}

	.swiper-pagination-clickable & {
		cursor: pointer;
	}

	&:only-child {
		display: none !important;
	}
}

.swiper-pagination-bullet-active {
	opacity: var(--swiper-pagination-bullet-opacity, 1);
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical>.swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
	right: var(--swiper-pagination-right, 8px);
	left: var(--swiper-pagination-left, auto);
	top: 50%;
	transform: translate3d(0px, -50%, 0);

	.swiper-pagination-bullet {
		margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
		display: block;
	}

	&.swiper-pagination-bullets-dynamic {
		top: 50%;
		transform: translateY(-50%);
		width: 8px;

		.swiper-pagination-bullet {
			display: inline-block;
			transition:
				200ms transform,
				200ms top;
		}
	}
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
	.swiper-pagination-bullet {
		margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
	}

	&.swiper-pagination-bullets-dynamic {
		left: 50%;
		transform: translateX(-50%);
		white-space: nowrap;

		.swiper-pagination-bullet {
			transition:
				200ms transform,
				200ms left;
		}
	}
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition:
		200ms transform,
		200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
	color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
	background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
	position: absolute;

	.swiper-pagination-progressbar-fill {
		background: var(--swiper-pagination-color, var(--swiper-theme-color));
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		transform: scale(0);
		transform-origin: left top;
	}

	.swiper-rtl & .swiper-pagination-progressbar-fill {
		transform-origin: right top;
	}

	.swiper-horizontal>&,
	&.swiper-pagination-horizontal,
	.swiper-vertical>&.swiper-pagination-progressbar-opposite,
	&.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
		width: 100%;
		height: var(--swiper-pagination-progressbar-size, 4px);
		left: 0;
		top: 0;
	}

	.swiper-vertical>&,
	&.swiper-pagination-vertical,
	.swiper-horizontal>&.swiper-pagination-progressbar-opposite,
	&.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
		width: var(--swiper-pagination-progressbar-size, 4px);
		height: 100%;
		left: 0;
		top: 0;
	}
}

.swiper-pagination-lock {
	display: none;
}

:root {
	/*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
	border-radius: var(--swiper-scrollbar-border-radius, 10px);
	position: relative;
	touch-action: none;
	background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));

	.swiper-scrollbar-disabled>&,
	&.swiper-scrollbar-disabled {
		display: none !important;
	}

	.swiper-horizontal>&,
	&.swiper-scrollbar-horizontal {
		position: absolute;
		left: var(--swiper-scrollbar-sides-offset, 1%);
		bottom: var(--swiper-scrollbar-bottom, 4px);
		top: var(--swiper-scrollbar-top, auto);
		z-index: 50;
		height: var(--swiper-scrollbar-size, 4px);
		width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
	}

	.swiper-vertical>&,
	&.swiper-scrollbar-vertical {
		position: absolute;
		left: var(--swiper-scrollbar-left, auto);
		right: var(--swiper-scrollbar-right, 4px);
		top: var(--swiper-scrollbar-sides-offset, 1%);
		z-index: 50;
		width: var(--swiper-scrollbar-size, 4px);
		height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
	}
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
	border-radius: var(--swiper-scrollbar-border-radius, 10px);
	left: 0;
	top: 0;
}

.swiper-scrollbar-cursor-drag {
	cursor: move;
}

.swiper-scrollbar-lock {
	display: none;
}


/* Zoom container styles start */
.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;

	>img,
	>svg,
	>canvas {
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
	}
}

/* Zoom container styles end */

.swiper-slide-zoomed {
	cursor: move;
	touch-action: none;
}


/* a11y */
.swiper .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}




.swiper-thumbs {
	.swiper-slide-thumb-active {
		/* Styles for active thumb slide */
	}
}

.swiper-free-mode>.swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto;
}

.swiper-grid>.swiper-wrapper {
	flex-wrap: wrap;
}

.swiper-grid-column>.swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: column;
}


.swiper-fade {
	&.swiper-free-mode {
		.swiper-slide {
			transition-timing-function: ease-out;
		}
	}

	.swiper-slide {
		pointer-events: none;
		transition-property: opacity;

		.swiper-slide {
			pointer-events: none;
		}
	}

	.swiper-slide-active {
		pointer-events: auto;

		& .swiper-slide-active {
			pointer-events: auto;
		}
	}
}

.swiper.swiper-cube {
	overflow: visible;
}

.swiper-cube {
	.swiper-slide {
		pointer-events: none;
		backface-visibility: hidden;
		z-index: 1;
		visibility: hidden;
		transform-origin: 0 0;
		width: 100%;
		height: 100%;

		.swiper-slide {
			pointer-events: none;
		}
	}

	&.swiper-rtl .swiper-slide {
		transform-origin: 100% 0;
	}

	.swiper-slide-active {

		&,
		& .swiper-slide-active {
			pointer-events: auto;
		}
	}

	.swiper-slide-active,
	.swiper-slide-next,
	.swiper-slide-prev {
		pointer-events: auto;
		visibility: visible;
	}

	.swiper-cube-shadow {
		position: absolute;
		left: 0;
		bottom: 0px;
		width: 100%;
		height: 100%;
		opacity: 0.6;
		z-index: 0;

		&:before {
			content: '';
			background: #000;
			position: absolute;
			left: 0;
			top: 0;
			bottom: 0;
			right: 0;
			filter: blur(50px);
		}
	}
}

.swiper-cube {
	.swiper-slide-next+.swiper-slide {
		pointer-events: auto;
		visibility: visible;
	}
}

/* Cube slide shadows start */
.swiper-cube {

	.swiper-slide-shadow-cube.swiper-slide-shadow-top,
	.swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
	.swiper-slide-shadow-cube.swiper-slide-shadow-left,
	.swiper-slide-shadow-cube.swiper-slide-shadow-right {
		z-index: 0;
		backface-visibility: hidden;
	}
}

/* Cube slide shadows end */

.swiper.swiper-flip {
	overflow: visible;
}

.swiper-flip {
	.swiper-slide {
		pointer-events: none;
		backface-visibility: hidden;
		z-index: 1;

		.swiper-slide {
			pointer-events: none;
		}
	}

	.swiper-slide-active {

		&,
		& .swiper-slide-active {
			pointer-events: auto;
		}
	}
}

/* Flip slide shadows start */
.swiper-flip {

	.swiper-slide-shadow-flip.swiper-slide-shadow-top,
	.swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
	.swiper-slide-shadow-flip.swiper-slide-shadow-left,
	.swiper-slide-shadow-flip.swiper-slide-shadow-right {
		z-index: 0;
		backface-visibility: hidden;
	}
}

/* Flip slide shadows end */

.swiper-coverflow {}

.swiper-creative {
	.swiper-slide {
		backface-visibility: hidden;
		overflow: hidden;
		transition-property: transform, opacity, height;
	}
}

.swiper.swiper-cards {
	overflow: visible;
}

.swiper-cards {
	.swiper-slide {
		transform-origin: center bottom;
		backface-visibility: hidden;
		overflow: hidden;
	}
}

/** @section Google Map */
.google-map-markers {
	display: none;
}

.google-map-container {
	width: 100%;
}

.google-map-container button img {
	margin: 0;
}

.google-map {
	height: 250px;
	width: 100%;
	height: 250px;
}

@media (min-width: 768px) {
	.google-map {
		height: 350px;
	}
}

@media (min-width: 1200px) {
	.google-map {
		height: 668px;
	}
}

/** @section Search Results */
.rd-search-results-live {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	max-height: 600px;
	overflow-y: auto;
	margin: -3px 0 0;
	text-align: left;
	z-index: 998;
}

.rd-search-results-live #search-results {
	position: relative;
	padding: 16px 0 0;
	color: var(--headers);
	background: #F9F9FE;
	opacity: 0;
	visibility: hidden;
	transform-origin: 50% 0;
	transform: scale(1, 0.9);
	transition: .3s all ease;
}

.rd-search-results-live #search-results::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	z-index: -1;
	border: 1px solid #d7d7d7;
	border-top: 0;
}

.rd-search-results-live #search-results.active {
	opacity: 1;
	visibility: visible;
	transform: scale(1, 1);
}

.rd-search-results-live .search-quick-result {
	padding-left: 15px;
	padding-right: 15px;
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 30px;
	text-transform: uppercase;
	color: var(--dark-bg);
}

.rd-search-results-live .search-list {
	margin-top: 11px;
}

.rd-search-results-live .search-list li:only-child {
	padding: 0 15px 15px;
}

.rd-search-results-live .search-link {
	color: #cccccc;
}

.rd-search-results-live .search-link:hover {
	color: var(--accent);
}

.rd-search-results-live .search-error {
	font-size: 14px;
	line-height: 1.6;
}

.rd-search-results-live .search-title {
	position: relative;
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: var(--dark-bg);
}

.rd-search-results-live .search-title a:hover {
	color: var(--accent);
}

.rd-search-results-live .search-list-item-all {
	margin-top: 18px;
	width: 100%;
}

.rd-search-results-live .search-submit {
	position: relative;
	overflow: hidden;
	z-index: 0;
	display: block;
	padding: 8px;
	font-family: 'Commissioner', sans-serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-align: center;
	color: #ffffff;
	background: var(--accent);
}

.rd-search-results-live .search-submit:hover {
	color: #ffffff;
	background: #cccccc;
}

.rd-search-results-live .match {
	display: none;
}

.not-empty~.rd-search-results-live {
	visibility: visible;
	opacity: 1;
}

.rd-search-results-live p {
	font-size: 11px;
}

.rd-search-results-live p * {
	margin: 0;
}

.rd-search-results-live .search-list-item {
	padding: 0 15px;
}

.rd-search-results-live *+p {
	margin-top: 5px;
}

.rd-search-results-live .search-list-item+.search-list-item {
	margin-top: 17px;
}

*+.rd-search-results {
	margin-top: 40px;
}

@media (min-width: 768px) {
	*+.rd-search-results {
		margin-top: 55px;
	}
}

.rd-search-results .search-list {
	counter-reset: li;
	text-align: left;
	padding-left: 0;
	font-size: 18px;
	list-style-type: none;
	overflow: hidden;
}

.rd-search-results .search-list li div {
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	white-space: nowrap;
}

.rd-search-results .search-list li:only-child::before {
	display: none;
}

.rd-search-results .search-list-item {
	position: relative;
	padding-left: 40px;
	font-size: 20px;
	color: #9b9b9b;
}

.rd-search-results .search-list-item+.search-list-item {
	margin-top: 40px;
}

.rd-search-results .search-title::before {
	content: counter(li, decimal-leading-zero) ".";
	counter-increment: li;
	position: absolute;
	left: 0;
	top: 0;
}

.rd-search-results .search {
	color: #ffffff;
	padding: 0 .25em;
	background: var(--accent);
}

.rd-search-results .match {
	padding: 5px;
	font-size: 12px;
	line-height: 1.7;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #000000;
}

.rd-search-results .match em {
	margin: 0;
	font-style: normal;
}

.rd-search-results p * {
	margin: 0;
}

.rd-search-results *+.match {
	margin-top: 10px;
}

.rd-search-classic {
	position: relative;
}

.rd-search-classic .form-input {
	padding-right: 50px;
}

.rd-search-classic .form-input,
.rd-search-classic .form-label {
	letter-spacing: 0;
}

.rd-search-classic .rd-search-submit {
	background: none;
	border: none;
	display: inline-block;
	padding: 0;
	outline: none;
	outline-offset: 0;
	cursor: pointer;
	-webkit-appearance: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50px;
	padding-top: 3px;
	padding-right: 2px;
	margin: 0;
	text-align: center;
	color: #cccccc;
	font-size: 0;
	line-height: 0;
}

.rd-search-classic .rd-search-submit::-moz-focus-inner {
	border: none;
	padding: 0;
}

.rd-search-classic .rd-search-submit:before {
	position: relative;
	top: -1px;
	content: '\e014';
	font: 400 20px 'fl-chapps';
	line-height: 1;
	transition: .33s all ease;
}

.rd-search-classic .rd-search-submit:hover {
	color: var(--accent);
}

.rd-search.rd-search-inline {
	position: relative;
}

.rd-search.rd-search-inline .form-input {
	padding-right: 40px;
}

.rd-search.rd-search-inline .btn-link {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	right: 0;
	margin: 0;
	font-size: 21px;
	color: #cccccc;
	transition: .33s;
}

.rd-search.rd-search-inline .btn-link::before {
	display: block;
	margin: auto;
}

.rd-search.rd-search-inline .btn-link:hover {
	color: var(--accent);
}

.rd-search.rd-search-inline.form-sm .form-input {
	padding-right: 40px;
}

.rd-search.rd-search-inline.form-sm .btn-link {
	width: 40px;
	font-size: 18px;
}

.rd-search.rd-search-inline.form-lg .form-input {
	padding-right: 60px;
}

.rd-search.rd-search-inline.form-lg .btn-link {
	width: 60px;
}

/** @section Isotope */
.isotope {
	z-index: 0;
	display: block;
	transition: .3s ease;
}

.isotope-sizer {
	height: 0;
	margin-top: -1px;
	margin-bottom: 0;
}

.isotope-item {
	display: block;
	will-change: transform;
	backface-visibility: hidden;
	transition: .1s opacity ease-in;
}

.isotope-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

*+.isotope {
	margin-top: 28px;
}

/** @section Nav custom */
.tabs-custom {
	text-align: left;
}

.tabs-custom .nav-tabs {
	font-size: 0;
	line-height: 0;
	word-spacing: 0;
	border: 0;
}

.tabs-custom .nav-tabs:before,
.tabs-custom .nav-tabs:after {
	display: none;
}

.tabs-custom .nav-item {
	float: none;
	border: 0;
	cursor: pointer;
	transition: .33s all ease;
}

.tabs-custom .nav-link {
	margin: 0;
	border-radius: 0;
	border: 0;
}

.tabs-custom .nav-link.active {
	cursor: default;
}

.tab-content>.tab-pane {
	display: block;
	visibility: hidden;
	height: 0;
	overflow: hidden;
}

.tab-content>.active {
	visibility: visible;
	height: auto;
	overflow: visible;
	text-align: center;
}

*+.tabs-horizontal.tabs-corporate {
	margin-top: 40px;
}

*+.tabs-vertical.tabs-corporate {
	margin-top: 40px;
}

@media (min-width: 768px) {
	*+.tabs-vertical.tabs-corporate {
		margin-top: 60px;
	}
}

@media (min-width: 1200px) {
	*+.tabs-vertical.tabs-corporate {
		margin-top: 80px;
	}
}

.tabs-line .nav-tabs {
	position: relative;
}

.tabs-line .nav-link {
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	vertical-align: middle;
}

.tabs-line *+.tab-content {
	margin-top: 20px;
}

@media (max-width: 991.98px) {
	.tabs-line .nav-tabs {
		max-width: 100%;
		border: 1px solid #e5e7e9;
	}

	.tabs-line .nav-item {
		margin: -1px;
	}

	.tabs-line .nav-link {
		padding: 7px 10px;
		color: var(--headers);
		background: transparent;
		border-bottom: 1px solid #e5e7e9;
	}

	.tabs-line .nav-link:first-child {
		border-top: 1px solid #e5e7e9;
	}

	.tabs-line .nav-link:hover,
	.tabs-line .nav-link.active {
		color: #ffffff;
		background: var(--accent);
		border-color: var(--accent);
	}
}

.tabs-corporate .nav-tabs {
	position: relative;
	margin-bottom: -10px;
	margin-left: -10px;
}

.tabs-corporate .nav-tabs:empty {
	margin-bottom: 0;
	margin-left: 0;
}

.tabs-corporate .nav-tabs>* {
	margin-top: 0;
	margin-bottom: 10px;
	margin-left: 10px;
}

.tabs-corporate .nav-link {
	padding: 10px 10px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--headers);
	background: transparent;
	border: 1px solid #e5e7e9;
	text-align: center;
	vertical-align: middle;
}

.tabs-corporate .nav-link:hover,
.tabs-corporate .nav-link.active {
	color: #ffffff;
	background: var(--accent);
	border-color: var(--accent);
}

.tabs-corporate .tab-content {
	padding: 30px 0 0;
}

@media (min-width: 768px) {
	.tabs-horizontal.tabs-corporate .nav-tabs {
		position: relative;
		width: 100%;
		display: block;
		text-align: center;
		border: 0;
		will-change: transform;
	}

	.tabs-horizontal.tabs-corporate .nav-item {
		display: inline-block;
		will-change: transform;
	}

	.tabs-horizontal.tabs-corporate .nav-link {
		display: block;
		position: relative;
		z-index: 1;
		min-width: 130px;
		letter-spacing: .1em;
		padding: 13px 20px;
		border: 2px solid #e5e7e9;
	}

	.tabs-horizontal.tabs-corporate .nav-link,
	.tabs-horizontal.tabs-corporate .nav-link::before {
		transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	}

	.tabs-horizontal.tabs-corporate .nav-link::before {
		content: '';
		position: absolute;
		top: -1px;
		left: -1px;
		width: calc(100% + 2px);
		height: calc(100% + 2px);
		z-index: -1;
		opacity: 0;
		transform: scale3d(0.7, 1, 1);
		transition: transform 0.4s, opacity 0.4s;
		transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
		background: var(--accent);
	}

	.tabs-horizontal.tabs-corporate .nav-link.active,
	.tabs-horizontal.tabs-corporate .nav-link:hover {
		color: #ffffff;
		border-color: var(--accent);
		background-color: transparent;
	}

	.tabs-horizontal.tabs-corporate .nav-link.active::before,
	.tabs-horizontal.tabs-corporate .nav-link:hover::before {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
	}

	.tabs-horizontal.tabs-line .nav-tabs {
		border: 0;
		border-bottom: 4px solid #d7d7d7;
	}

	.tabs-horizontal.tabs-line .nav-item {
		display: inline-block;
	}

	.tabs-horizontal.tabs-line .nav-item:not(:last-child) {
		margin-right: 52px;
	}

	.tabs-horizontal.tabs-line .nav-link {
		position: relative;
		padding: 0 0 15px 0;
		background-color: transparent;
		color: #9b9b9b;
		border: 0;
	}

	.tabs-horizontal.tabs-line .nav-link::after {
		content: '';
		position: absolute;
		bottom: -4px;
		left: 0;
		height: 4px;
		width: 0;
		background: var(--accent);
		transition: .22s ease;
	}

	.tabs-horizontal.tabs-line .nav-link.active,
	.tabs-horizontal.tabs-line .nav-link:hover {
		color: #cccccc;
	}

	.tabs-horizontal.tabs-line .nav-link.active::after {
		width: 100%;
	}

	.tabs-horizontal.tabs-line *+.tab-content {
		margin-top: 30px;
	}

	.tabs-vertical {
		display: flex;
		align-items: flex-start;
	}

	.tabs-vertical .nav-tabs {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		flex-shrink: 0;
		max-width: 50%;
	}

	.tabs-vertical .nav-item {
		border: 0;
		width: 100%;
		text-align: left;
	}

	.tabs-vertical .nav-link.active,
	.tabs-vertical .nav-link:hover {
		box-shadow: 0 9px 21px 0 rgba(30, 30, 30, 0.13);
	}

	.tabs-vertical .tab-content {
		flex-grow: 1;
	}

	.tabs-vertical.tabs-corporate .nav-tabs {
		width: auto;
		min-width: 260px;
		border: 0;
	}

	.tabs-vertical.tabs-corporate .nav-item {
		margin: 0;
	}

	.tabs-vertical.tabs-corporate .nav-link {
		position: relative;
		padding: 17px 30px;
		border: 0;
		overflow: hidden;
		text-align: left;
	}

	.tabs-vertical.tabs-corporate .nav-item+.nav-item {
		margin-top: 2px;
	}

	.tabs-vertical.tabs-corporate .tab-content {
		padding: 0 0 0 30px;
	}
}

@media (min-width: 992px) {
	.tabs-horizontal.tabs-corporate .tab-content {
		padding: 30px 30px 0;
	}

	.tabs-vertical.tabs-corporate .tab-content {
		padding: 0 0 0 45px;
	}
}

*+.tabs-creative.tabs-horizontal {
	margin-top: 20px;
}

@media (min-width: 992px) {
	*+.tabs-creative.tabs-horizontal {
		margin-top: 3px;
	}
}

.tabs-creative.tabs-horizontal .nav-tabs {
	display: flex;
	justify-content: center;
	margin-left: -25px;
	flex-wrap: wrap;
}



@media (min-width: 576px) {
	.tabs-creative.tabs-horizontal .nav-tabs>* {
		width: auto;
	}
}

.tabs-creative.tabs-horizontal .nav-tabs>* {
	margin-left: 25px;
}

.tabs-creative.tabs-horizontal .nav-tabs .nav-item {
	padding: 0;
	background: none;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

@media (min-width: 576px) {
	.tabs-creative.tabs-horizontal .nav-tabs .nav-item {
		justify-content: flex-start;
	}
}

@media (min-width: 1200px) {
	.tabs-creative.tabs-horizontal .nav-tabs .nav-item {
		padding: 10px;
	}
}

.tabs-creative.tabs-horizontal .nav-tabs .nav-item .nav-link {
	color: var(--headers);
	transition: all 0.3s ease-in-out;
	border: none;
	min-width: 40px;
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	font-family: 'Oswald', sans-serif;
	letter-spacing: normal;
}

@media (min-width: 1200px) {
	.tabs-creative.tabs-horizontal .nav-tabs .nav-item .nav-link {
		margin-bottom: 3px;
		font-size: 22px;
	}
}

@media (min-width: 576px) {
	.tabs-creative.tabs-horizontal .nav-tabs .nav-item .nav-link {
		padding: 0;
	}
}

.tabs-creative.tabs-horizontal .nav-tabs .nav-item .nav-link:before {
	display: none;
}

.tabs-creative.tabs-horizontal .nav-tabs .nav-item .nav-link.active {
	background: none;
}

@media (min-width: 1200px) {
	.tabs-creative.tabs-horizontal .nav-tabs .nav-item .nav-link.active {
		font-size: 48px;
		margin-bottom: 0;
	}
}

.tabs-creative.tabs-horizontal .nav-tabs .nav-item .nav-link.active,
.tabs-creative.tabs-horizontal .nav-tabs .nav-item .nav-link:hover {
	color: var(--accent);
	background: transparent;
}

.tabs-creative.tabs-horizontal .nav-tabs .nav-item .nav-link.active:before,
.tabs-creative.tabs-horizontal .nav-tabs .nav-item .nav-link:hover:before {
	display: none;
}

.tabs-creative.tabs-horizontal .tab-content {
	padding: 20px 0 0 0;
}

@media (min-width: 1200px) {
	.tabs-creative.tabs-horizontal .tab-content {
		padding: 35px 0 0 0;
	}
}

/** @section Panel custom */
.card-group-custom {
	margin-bottom: 0;
}

.card-group-custom .card-header+.collapse>.card-body,
.card-group-custom .card-header+.collapse>.list-group {
	border-top: 0;
}

.card-group-custom .card+.card {
	margin-top: 0;
}

.card-group-custom.card-group-corporate .card+.card {
	margin-top: 30px;
}

.card-custom {
	display: block;
	margin: 0;
	background: inherit;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	text-align: left;
}

.card-custom a {
	display: block;
}

.card-custom .card-header {
	padding: 0;
	border-bottom: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.card-custom .card-body {
	padding: 0;
	border: 0;
}

.card-custom .card-title {
	margin-bottom: 0;
}

*+.card-group-custom {
	margin-top: 35px;
}

@media (min-width: 768px) {
	*+.card-group-custom {
		margin-top: 50px;
	}
}

.card-corporate {
	text-align: left;
	box-shadow: -1px 2px 5px 0px rgba(68, 73, 83, 0.12);
}

.card-corporate .card-title a,
.card-corporate .card-body {
	background: #ffffff;
}

.card-corporate .card-title a {
	position: relative;
	z-index: 1;
	padding: 21px 82px 21px 32px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: 0;
	color: #2c343b;
	transition: 1.3s all ease;
	border-radius: 6px 6px 0 0;
	border-bottom: 1px solid #dedede;
}

.card-corporate .card-title a .card-arrow:after {
	opacity: 0;
	visibility: hidden;
}

.card-corporate .card-title a.collapsed {
	border-radius: 6px;
	border-bottom-width: 0;
}

.card-corporate .card-title a.collapsed .card-arrow {
	border-radius: 0 6px 6px 0;
}

.card-corporate .card-title a.collapsed .card-arrow:after {
	opacity: 1;
	visibility: visible;
}

.card-corporate .card-arrow {
	position: absolute;
	top: 0;
	bottom: -1px;
	right: -1px;
	z-index: 2;
	width: 70px;
	background: var(--accent);
	border-radius: 0 6px 0 0;
	transition: .33s all ease;
}

.card-corporate .card-arrow::before,
.card-corporate .card-arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	z-index: 4;
	transform: translateY(-50%);
	background: #ffffff;
}

.card-corporate .card-arrow::before {
	width: 14px;
	height: 2px;
	right: 28px;
}

.card-corporate .card-arrow::after {
	width: 2px;
	height: 14px;
	right: 34px;
}

.card-corporate .collapse {
	position: relative;
	z-index: 1;
	color: var(--headers);
	border-radius: 0 0 6px 6px;
}

.card-corporate .card-body {
	padding: 25px 44px 25px 32px;
}

@media (max-width: 991.98px) {

	.card-corporate .card-title a,
	.card-corporate .card-body {
		padding-left: 25px;
	}
}

@media (min-width: 768px) {
	.card-corporate .card-title a {
		font-size: 18px;
	}
}

/** @section Tooltop Custom */
.tooltip {
	font-size: 20px;
	line-height: 1.2;
}

.tooltip.bs-tooltip-top .arrow::before {
	border-top-color: var(--accent);
}

.tooltip.bs-tooltip-bottom .arrow::before {
	border-bottom-color: var(--accent);
}

/** @section Counter */
.counters-xl-wrap {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.counters-xl-wrap>* {
	margin-top: 25px;
}

.counters-xl-wrap .box-counter {
	margin-left: 15px;
	margin-right: 15px;
}

@media (min-width: 1200px) {
	.counters-xl-wrap {
		justify-content: space-between;
		margin-top: 30px;
		margin-left: -20px;
		margin-right: 0;
	}

	.counters-xl-wrap .box-counter {
		margin-left: 0px;
		margin-right: 0px;
	}

	.counters-xl-wrap.mode-2 {
		margin-left: -120px;
	}

	.counters-xl-wrap.mode-2>* {
		margin-left: 120px;
	}

	.counters-xl-wrap>* {
		margin-left: 20px;
	}
}

.counters-xl-wrap .box-counter {
	text-align: left;
}

.counters-xl-wrap .box-counter-divider {
	display: none;
}

.counters-xl-wrap .box-counter-title {
	font-size: 20px;
	color: var(--text-on-dark);
	font-family: 'Commissioner', sans-serif;
}

.counters-xl-wrap .box-counter-main {
	font-weight: 700;
	color: var(--accent);
	display: flex;
	align-items: flex-end;
	line-height: 1;
	font-size: 40px;
	justify-content: center;
}

.counters-xl-wrap .box-counter-main .counter-postfix {
	font-size: 30px;
	margin-bottom: 3px;
}

@media (min-width: 768px) {
	.counters-xl-wrap .box-counter-main {
		font-size: 60px;
	}

	.counters-xl-wrap .box-counter-main .counter-postfix {
		font-size: 40px;
	}
}

@media (min-width: 1200px) {
	.counters-xl-wrap .box-counter-main {
		font-size: 100px;
	}

	.counters-xl-wrap .box-counter-main .counter-postfix {
		font-size: 60px;
		margin-bottom: 10px;
	}
}

/** @section Progress Bars */
.progress-linear {
	position: relative;
	text-align: left;
}

.progress-linear-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	transform: translate3d(0, -10px, 0);
	margin-bottom: -10px;
	margin-left: -5px;
	margin-right: -5px;
}

.progress-linear-header>* {
	margin-top: 10px;
	padding-left: 5px;
	padding-right: 5px;
}

.progress-linear-body {
	height: 10px;
	background: #d7d7d7;
}

.progress-linear-bar {
	width: 0;
	height: inherit;
	background: var(--accent);
	transition: 1s all ease-in-out;
}

.progress-linear-counter {
	font-weight: 700;
	color: #cccccc;
}

.progress-linear-counter::after {
	content: "%";
}

*+.progress-linear-body {
	margin-top: 8px;
}

.progress-linear+.progress-linear {
	margin-top: 15px;
}

@media (min-width: 992px) {
	.progress-linear+.progress-linear {
		margin-top: 25px;
	}
}

/** @section Progress Circle */
.progress-circle {
	display: inline-block;
	text-align: center;
	line-height: 1.2;
}

.progress-circle-block {
	position: relative;
}

.progress-circle-bg {
	fill: transparent;
	stroke: #edeff4;
	stroke-width: 10px;
}

.progress-circle-fg {
	fill: transparent;
	stroke: var(--accent);
	stroke-width: 10px;
}

.progress-circle-counter {
	position: absolute;
	top: 50%;
	left: 51%;
	font-size: 36px;
	line-height: 36px;
	transform: translate(-50%, -50%);
	color: #9b9b9b;
}

.progress-circle-counter::after {
	content: "%";
}

.progress-circle-title {
	font-size: 14px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

*+.progress-bar-circle-title {
	margin-top: 12px;
}

/** @section Countdown */
.countdown {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
	text-align: center;
	margin-bottom: -15px;
	margin-left: -15px;
}

.countdown:empty {
	margin-bottom: 0;
	margin-left: 0;
}

.countdown>* {
	margin-top: 0;
	margin-bottom: 15px;
	margin-left: 15px;
}

@media (min-width: 768px) {
	.countdown {
		margin-bottom: -30px;
		margin-left: -30px;
	}

	.countdown:empty {
		margin-bottom: 0;
		margin-left: 0;
	}

	.countdown>* {
		margin-top: 0;
		margin-bottom: 30px;
		margin-left: 30px;
	}
}

.countdown-block {
	position: relative;
	flex: 1 1 33.33%;
}

@media (min-width: 576px) {
	.countdown-block {
		flex: 1 1 25%;
	}
}

.countdown-block-seconds {
	display: none;
}

@media (min-width: 576px) {
	.countdown-block-seconds {
		display: block;
	}
}

.countdown-wrap {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.countdown-circle {
	fill: transparent;
}

html:not(.ie-11):not(.ie-10) .countdown-circle {
	width: 100%;
	height: auto;
}

.countdown-circle-bg {
	stroke: white;
	stroke-width: 5px;
}

.countdown-circle-fg {
	stroke: var(--accent);
	stroke-width: 10px;
}

.countdown-counter {
	line-height: 1;
	letter-spacing: 0;
}

.countdown-title {
	font-size: 13px;
	line-height: 1.2;
	text-transform: uppercase;
	color: #868e96;
}

*+.countdown {
	margin-top: 35px;
}

.countdown+* {
	margin-top: 35px;
}

@media (min-width: 768px) {
	.countdown-circle-bg {
		stroke-width: 3px;
	}

	.countdown-circle-fg {
		stroke-width: 5px;
	}
}

/** @section Owl Carousel */
.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	/* position relative and z-index fix webkit rendering fonts issue */
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	touch-action: manipulation;
	-moz-backface-visibility: hidden;
	/* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	/* fix for flashing background */
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
	display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
	background: none;
	color: inherit;
	border: none;
	padding: 0 !important;
	font: inherit;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

/* No Js */
.no-js .owl-carousel {
	display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
	animation-duration: 1000ms;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	animation-name: fadeOut;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
	transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
	/**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
	max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
	transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url("owl.video.play.png") no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-ms-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}

/** @section Lightgallery */
@font-face {
	font-family: "lg";
	src: url("../fonts/lg.woff2?io9a6k") format("woff2"), url("../fonts/lg.ttf?io9a6k") format("truetype"), url("../fonts/lg.woff?io9a6k") format("woff"), url("../fonts/lg.svg?io9a6k#lg") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

.lg-icon {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: "lg" !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.lg-container {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.lg-next,
.lg-prev {
	background-color: rgba(0, 0, 0, 0.45);
	border-radius: 2px;
	color: #999;
	cursor: pointer;
	display: block;
	font-size: 22px;
	margin-top: -10px;
	padding: 8px 10px 9px;
	position: absolute;
	top: 50%;
	z-index: 1084;
	outline: none;
	border: none;
}

.lg-next.disabled,
.lg-prev.disabled {
	opacity: 0 !important;
	cursor: default;
}

.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
	color: #fff;
}

.lg-single-item .lg-next,
.lg-single-item .lg-prev {
	display: none;
}

.lg-next {
	right: 20px;
}

.lg-next:before {
	content: "\e095";
}

.lg-prev {
	left: 20px;
}

.lg-prev:after {
	content: "\e094";
}

@-webkit-keyframes lg-right-end {
	0% {
		left: 0;
	}

	50% {
		left: -30px;
	}

	100% {
		left: 0;
	}
}

@-moz-keyframes lg-right-end {
	0% {
		left: 0;
	}

	50% {
		left: -30px;
	}

	100% {
		left: 0;
	}
}

@-ms-keyframes lg-right-end {
	0% {
		left: 0;
	}

	50% {
		left: -30px;
	}

	100% {
		left: 0;
	}
}

@keyframes lg-right-end {
	0% {
		left: 0;
	}

	50% {
		left: -30px;
	}

	100% {
		left: 0;
	}
}

@-webkit-keyframes lg-left-end {
	0% {
		left: 0;
	}

	50% {
		left: 30px;
	}

	100% {
		left: 0;
	}
}

@-moz-keyframes lg-left-end {
	0% {
		left: 0;
	}

	50% {
		left: 30px;
	}

	100% {
		left: 0;
	}
}

@-ms-keyframes lg-left-end {
	0% {
		left: 0;
	}

	50% {
		left: 30px;
	}

	100% {
		left: 0;
	}
}

@keyframes lg-left-end {
	0% {
		left: 0;
	}

	50% {
		left: 30px;
	}

	100% {
		left: 0;
	}
}

.lg-outer.lg-right-end .lg-object {
	-webkit-animation: lg-right-end 0.3s;
	-o-animation: lg-right-end 0.3s;
	animation: lg-right-end 0.3s;
	position: relative;
}

.lg-outer.lg-left-end .lg-object {
	-webkit-animation: lg-left-end 0.3s;
	-o-animation: lg-left-end 0.3s;
	animation: lg-left-end 0.3s;
	position: relative;
}

.lg-toolbar {
	z-index: 1082;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.lg-media-overlap .lg-toolbar {
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.lg-toolbar .lg-icon {
	color: #999;
	cursor: pointer;
	float: right;
	font-size: 24px;
	height: 47px;
	line-height: 27px;
	padding: 10px 0;
	text-align: center;
	width: 50px;
	text-decoration: none !important;
	outline: medium none;
	will-change: color;
	-webkit-transition: color 0.2s linear;
	-o-transition: color 0.2s linear;
	transition: color 0.2s linear;
	background: none;
	border: none;
	box-shadow: none;
}

.lg-toolbar .lg-icon.lg-icon-18 {
	font-size: 18px;
}

.lg-toolbar .lg-icon:hover {
	color: #fff;
}

.lg-toolbar .lg-close:after {
	content: "\e070";
}

.lg-toolbar .lg-maximize {
	font-size: 22px;
}

.lg-toolbar .lg-maximize:after {
	content: "\e90a";
}

.lg-toolbar .lg-download:after {
	content: "\e0f2";
}

.lg-sub-html {
	color: #eee;
	font-size: 16px;
	padding: 10px 40px;
	text-align: center;
	z-index: 1080;
	opacity: 0;
	-webkit-transition: opacity 0.2s ease-out 0s;
	-o-transition: opacity 0.2s ease-out 0s;
	transition: opacity 0.2s ease-out 0s;
}

.lg-sub-html h4 {
	margin: 0;
	font-size: 13px;
	font-weight: bold;
}

.lg-sub-html p {
	font-size: 12px;
	margin: 5px 0 0;
}

.lg-sub-html a {
	color: inherit;
}

.lg-sub-html a:hover {
	text-decoration: underline;
}

.lg-media-overlap .lg-sub-html {
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.lg-item .lg-sub-html {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
}

.lg-error-msg {
	font-size: 14px;
	color: #999;
}

.lg-counter {
	color: #999;
	display: inline-block;
	font-size: 16px;
	padding-left: 20px;
	padding-top: 12px;
	height: 47px;
	vertical-align: middle;
}

.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
	opacity: 0;
	-webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
	-moz-transition: -moz-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
	-o-transition: -o-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
	transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-media-cont {
	opacity: 0;
	-moz-transform: scale3d(0.5, 0.5, 0.5);
	-o-transform: scale3d(0.5, 0.5, 0.5);
	-ms-transform: scale3d(0.5, 0.5, 0.5);
	-webkit-transform: scale3d(0.5, 0.5, 0.5);
	transform: scale3d(0.5, 0.5, 0.5);
	will-change: transform, opacity;
	-webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
	-moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
	-o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
	transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-media-cont {
	opacity: 1;
	-moz-transform: scale3d(1, 1, 1);
	-o-transform: scale3d(1, 1, 1);
	-ms-transform: scale3d(1, 1, 1);
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.lg-icon:focus-visible {
	color: #fff;
	border-radius: 3px;
	outline: 1px dashed rgba(255, 255, 255, 0.6);
}

.lg-toolbar .lg-icon:focus-visible {
	border-radius: 8px;
	outline-offset: -5px;
}

.lg-outer .lg-thumb-outer {
	background-color: #0d0a0a;
	width: 100%;
	max-height: 350px;
	overflow: hidden;
	float: left;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: -o-grabbing;
	cursor: -ms-grabbing;
	cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
	-webkit-transition-duration: 0s !important;
	transition-duration: 0s !important;
}

.lg-outer .lg-thumb-outer.lg-rebuilding-thumbnails .lg-thumb {
	-webkit-transition-duration: 0s !important;
	transition-duration: 0s !important;
}

.lg-outer .lg-thumb-outer.lg-thumb-align-middle {
	text-align: center;
}

.lg-outer .lg-thumb-outer.lg-thumb-align-left {
	text-align: left;
}

.lg-outer .lg-thumb-outer.lg-thumb-align-right {
	text-align: right;
}

.lg-outer.lg-single-item .lg-thumb-outer {
	display: none;
}

.lg-outer .lg-thumb {
	padding: 5px 0;
	height: 100%;
	margin-bottom: -5px;
	display: inline-block;
	vertical-align: middle;
}

@media (min-width: 768px) {
	.lg-outer .lg-thumb {
		padding: 10px 0;
	}
}

.lg-outer .lg-thumb-item {
	cursor: pointer;
	float: left;
	overflow: hidden;
	height: 100%;
	border-radius: 2px;
	margin-bottom: 5px;
	will-change: border-color;
}

@media (min-width: 768px) {
	.lg-outer .lg-thumb-item {
		border-radius: 4px;
		border: 2px solid #fff;
		-webkit-transition: border-color 0.25s ease;
		-o-transition: border-color 0.25s ease;
		transition: border-color 0.25s ease;
	}
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
	border-color: rgb(169, 7, 7);
}

.lg-outer .lg-thumb-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lg-outer.lg-can-toggle .lg-item {
	padding-bottom: 0;
}

.lg-outer .lg-toggle-thumb:after {
	content: "\e1ff";
}

.lg-outer.lg-animate-thumb .lg-thumb {
	-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.lg-outer .lg-video-cont {
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

.lg-outer .lg-video-cont .lg-object {
	width: 100% !important;
	height: 100% !important;
}

.lg-outer .lg-has-iframe .lg-video-cont {
	-webkit-overflow-scrolling: touch;
	overflow: auto;
}

.lg-outer .lg-video-object {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	z-index: 3;
}

.lg-outer .lg-video-poster {
	z-index: 1;
}

.lg-outer .lg-has-video .lg-video-object {
	opacity: 0;
	will-change: opacity;
	-webkit-transition: opacity 0.3s ease-in;
	-o-transition: opacity 0.3s ease-in;
	transition: opacity 0.3s ease-in;
}

.lg-outer .lg-has-video.lg-video-loaded .lg-video-poster,
.lg-outer .lg-has-video.lg-video-loaded .lg-video-play-button {
	opacity: 0 !important;
}

.lg-outer .lg-has-video.lg-video-loaded .lg-video-object {
	opacity: 1;
}

@keyframes lg-play-stroke {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}

	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}

	100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -124px;
	}
}

@keyframes lg-play-rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.lg-video-play-button {
	width: 18%;
	max-width: 140px;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	cursor: pointer;
	transform: translate(-50%, -50%) scale(1);
	will-change: opacity, transform;
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
	-moz-transition: -moz-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
	-o-transition: -o-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
	transition: transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
}

.lg-video-play-button:hover .lg-video-play-icon-bg,
.lg-video-play-button:hover .lg-video-play-icon {
	opacity: 1;
}

.lg-video-play-icon-bg {
	fill: none;
	stroke-width: 3%;
	stroke: #fcfcfc;
	opacity: 0.6;
	will-change: opacity;
	-webkit-transition: opacity 0.12s ease-in;
	-o-transition: opacity 0.12s ease-in;
	transition: opacity 0.12s ease-in;
}

.lg-video-play-icon-circle {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	fill: none;
	stroke-width: 3%;
	stroke: rgba(30, 30, 30, 0.9);
	stroke-opacity: 1;
	stroke-linecap: round;
	stroke-dasharray: 200;
	stroke-dashoffset: 200;
}

.lg-video-play-icon {
	position: absolute;
	width: 25%;
	max-width: 120px;
	left: 50%;
	top: 50%;
	transform: translate3d(-50%, -50%, 0);
	opacity: 0.6;
	will-change: opacity;
	-webkit-transition: opacity 0.12s ease-in;
	-o-transition: opacity 0.12s ease-in;
	transition: opacity 0.12s ease-in;
}

.lg-video-play-icon .lg-video-play-icon-inner {
	fill: #fcfcfc;
}

.lg-video-loading .lg-video-play-icon-circle {
	animation: lg-play-rotate 2s linear 0.25s infinite, lg-play-stroke 1.5s ease-in-out 0.25s infinite;
}

.lg-video-loaded .lg-video-play-button {
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.7);
}

.lg-progress-bar {
	background-color: #333;
	height: 5px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1083;
	opacity: 0;
	will-change: opacity;
	-webkit-transition: opacity 0.08s ease 0s;
	-moz-transition: opacity 0.08s ease 0s;
	-o-transition: opacity 0.08s ease 0s;
	transition: opacity 0.08s ease 0s;
}

.lg-progress-bar .lg-progress {
	background-color: rgb(169, 7, 7);
	height: 5px;
	width: 0;
}

.lg-progress-bar.lg-start .lg-progress {
	width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
	opacity: 1;
}

.lg-autoplay-button:after {
	content: "\e01d";
}

.lg-show-autoplay .lg-autoplay-button:after {
	content: "\e01a";
}

.lg-single-item .lg-autoplay-button {
	opacity: 0.75;
	pointer-events: none;
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
	-webkit-transition-duration: 0ms !important;
	transition-duration: 0ms !important;
}

.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
	will-change: transform;
	-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
	-moz-transition: -moz-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
	-o-transition: -o-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
	transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
}

.lg-outer.lg-use-transition-for-zoom.lg-zoom-drag-transition .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
	will-change: transform;
	-webkit-transition: -webkit-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
	-moz-transition: -moz-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
	-o-transition: -o-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
	-moz-transition: -moz-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
	-o-transition: -o-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
	transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.no-transition,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.no-transition {
	transition: none !important;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition {
	transform: scale3d(1, 1, 1) translate3d(-50%, -50%, 0px) !important;
	max-width: none !important;
	max-height: none !important;
	top: 50% !important;
	left: 50% !important;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-x,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-x {
	transform: scale3d(1, 1, 1) translate3d(-50%, 0, 0px) !important;
	top: 0 !important;
	left: 50% !important;
	max-width: none !important;
	max-height: none !important;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-y,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-y {
	transform: scale3d(1, 1, 1) translate3d(0, -50%, 0px) !important;
	top: 50% !important;
	left: 0% !important;
	max-width: none !important;
	max-height: none !important;
}

.lg-icon.lg-zoom-in:after {
	content: "\e311";
}

.lg-actual-size .lg-icon.lg-zoom-in {
	opacity: 1;
	pointer-events: auto;
}

.lg-icon.lg-actual-size {
	font-size: 20px;
}

.lg-icon.lg-actual-size:after {
	content: "\e033";
}

.lg-icon.lg-zoom-out {
	opacity: 0.5;
	pointer-events: none;
}

.lg-icon.lg-zoom-out:after {
	content: "\e312";
}

.lg-zoomed .lg-icon.lg-zoom-out {
	opacity: 1;
	pointer-events: auto;
}

.lg-outer[data-lg-slide-type=video] .lg-zoom-in,
.lg-outer[data-lg-slide-type=video] .lg-actual-size,
.lg-outer[data-lg-slide-type=video] .lg-zoom-out,
.lg-outer[data-lg-slide-type=iframe] .lg-zoom-in,
.lg-outer[data-lg-slide-type=iframe] .lg-actual-size,
.lg-outer[data-lg-slide-type=iframe] .lg-zoom-out,
.lg-outer.lg-first-slide-loading .lg-zoom-in,
.lg-outer.lg-first-slide-loading .lg-actual-size,
.lg-outer.lg-first-slide-loading .lg-zoom-out {
	opacity: 0.75;
	pointer-events: none;
}

.lg-outer .lg-pager-outer {
	text-align: center;
	z-index: 1080;
	height: 10px;
	margin-bottom: 10px;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
	overflow: visible;
}

.lg-outer.lg-single-item .lg-pager-outer {
	display: none;
}

.lg-outer .lg-pager-cont {
	cursor: pointer;
	display: inline-block;
	overflow: hidden;
	position: relative;
	vertical-align: top;
	margin: 0 5px;
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
	box-shadow: 0 0 0 2px white inset;
}

.lg-outer .lg-pager-thumb-cont {
	background-color: #fff;
	color: #fff;
	bottom: 100%;
	height: 83px;
	left: 0;
	margin-bottom: 20px;
	margin-left: -60px;
	opacity: 0;
	padding: 5px;
	position: absolute;
	width: 120px;
	border-radius: 3px;
	will-change: transform, opacity;
	-webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
	-moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
	-o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
	transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
	-webkit-transform: translate3d(0, 5px, 0);
	transform: translate3d(0, 5px, 0);
}

.lg-outer .lg-pager-thumb-cont img {
	width: 100%;
	height: 100%;
}

.lg-outer .lg-pager {
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
	display: block;
	height: 12px;
	-webkit-transition: box-shadow 0.3s ease 0s;
	-o-transition: box-shadow 0.3s ease 0s;
	transition: box-shadow 0.3s ease 0s;
	width: 12px;
}

.lg-outer .lg-pager:hover,
.lg-outer .lg-pager:focus {
	box-shadow: 0 0 0 8px white inset;
}

.lg-outer .lg-caret {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px dashed;
	bottom: -10px;
	display: inline-block;
	height: 0;
	left: 50%;
	margin-left: -5px;
	position: absolute;
	vertical-align: middle;
	width: 0;
}

.lg-fullscreen:after {
	content: "\e20c";
}

.lg-fullscreen-on .lg-fullscreen:after {
	content: "\e20d";
}

.lg-outer .lg-dropdown-overlay {
	background-color: rgba(0, 0, 0, 0.25);
	bottom: 0;
	cursor: default;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1081;
	opacity: 0;
	visibility: hidden;
	will-change: visibility, opacity;
	-webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
	-o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
	transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}

.lg-outer.lg-dropdown-active .lg-dropdown,
.lg-outer.lg-dropdown-active .lg-dropdown-overlay {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-moz-transform: translate3d(0, 0px, 0);
	-o-transform: translate3d(0, 0px, 0);
	-ms-transform: translate3d(0, 0px, 0);
	-webkit-transform: translate3d(0, 0px, 0);
	transform: translate3d(0, 0px, 0);
	opacity: 1;
	visibility: visible;
}

.lg-outer.lg-dropdown-active .lg-share {
	color: #fff;
}

.lg-outer .lg-dropdown {
	background-color: #fff;
	border-radius: 2px;
	font-size: 14px;
	list-style-type: none;
	margin: 0;
	padding: 10px 0;
	position: absolute;
	right: 0;
	text-align: left;
	top: 50px;
	opacity: 0;
	visibility: hidden;
	-moz-transform: translate3d(0, 5px, 0);
	-o-transform: translate3d(0, 5px, 0);
	-ms-transform: translate3d(0, 5px, 0);
	-webkit-transform: translate3d(0, 5px, 0);
	transform: translate3d(0, 5px, 0);
	will-change: visibility, opacity, transform;
	-webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
	-moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
	-o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
	transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
}

.lg-outer .lg-dropdown:after {
	content: "";
	display: block;
	height: 0;
	width: 0;
	position: absolute;
	border: 8px solid transparent;
	border-bottom-color: #fff;
	right: 16px;
	top: -16px;
}

.lg-outer .lg-dropdown>li:last-child {
	margin-bottom: 0px;
}

.lg-outer .lg-dropdown>li:hover a {
	color: #333;
}

.lg-outer .lg-dropdown a {
	color: #333;
	display: block;
	white-space: pre;
	padding: 4px 12px;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 12px;
}

.lg-outer .lg-dropdown a:hover {
	background-color: rgba(0, 0, 0, 0.07);
}

.lg-outer .lg-dropdown .lg-dropdown-text {
	display: inline-block;
	line-height: 1;
	margin-top: -3px;
	vertical-align: middle;
}

.lg-outer .lg-dropdown .lg-icon {
	color: #333;
	display: inline-block;
	float: none;
	font-size: 20px;
	height: auto;
	line-height: 1;
	margin-right: 8px;
	padding: 0;
	vertical-align: middle;
	width: auto;
}

.lg-outer .lg-share {
	position: relative;
}

.lg-outer .lg-share:after {
	content: "\e80d";
}

.lg-outer .lg-share-facebook .lg-icon {
	color: #3b5998;
}

.lg-outer .lg-share-facebook .lg-icon:after {
	content: "\e904";
}

.lg-outer .lg-share-twitter .lg-icon {
	color: #00aced;
}

.lg-outer .lg-share-twitter .lg-icon:after {
	content: "\e907";
}

.lg-outer .lg-share-pinterest .lg-icon {
	color: #cb2027;
}

.lg-outer .lg-share-pinterest .lg-icon:after {
	content: "\e906";
}

.lg-comment-box {
	width: 420px;
	max-width: 100%;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 9999;
	background-color: #fff;
	will-change: transform;
	-moz-transform: translate3d(100%, 0, 0);
	-o-transform: translate3d(100%, 0, 0);
	-ms-transform: translate3d(100%, 0, 0);
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
	-moz-transition: -moz-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
	-o-transition: -o-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-comment-box .lg-comment-title {
	margin: 0;
	color: #fff;
	font-size: 18px;
}

.lg-comment-box .lg-comment-header {
	background-color: #000;
	padding: 12px 20px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
}

.lg-comment-box .lg-comment-body {
	height: 100% !important;
	padding-top: 43px !important;
	width: 100% !important;
}

.lg-comment-box .fb-comments {
	height: 100%;
	width: 100%;
	background: url("../images/loading.gif") no-repeat scroll center center #fff;
	overflow-y: auto;
	display: inline-block;
}

.lg-comment-box .fb-comments[fb-xfbml-state=rendered] {
	background-image: none;
}

.lg-comment-box .fb-comments>span {
	max-width: 100%;
}

.lg-comment-box .lg-comment-close {
	position: absolute;
	right: 5px;
	top: 12px;
	cursor: pointer;
	font-size: 20px;
	color: #999;
	will-change: color;
	-webkit-transition: color 0.2s linear;
	-o-transition: color 0.2s linear;
	transition: color 0.2s linear;
}

.lg-comment-box .lg-comment-close:hover {
	color: #fff;
}

.lg-comment-box .lg-comment-close:after {
	content: "\e070";
}

.lg-comment-box iframe {
	max-width: 100% !important;
	width: 100% !important;
}

.lg-comment-box #disqus_thread {
	padding: 0 20px;
}

.lg-outer .lg-comment-overlay {
	background-color: rgba(0, 0, 0, 0.25);
	bottom: 0;
	cursor: default;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1081;
	opacity: 0;
	visibility: hidden;
	will-change: visibility, opacity;
	-webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
	-o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
	transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}

.lg-outer .lg-comment-toggle:after {
	content: "\e908";
}

.lg-outer.lg-comment-active .lg-comment-overlay {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-moz-transform: translate3d(0, 0px, 0);
	-o-transform: translate3d(0, 0px, 0);
	-ms-transform: translate3d(0, 0px, 0);
	-webkit-transform: translate3d(0, 0px, 0);
	transform: translate3d(0, 0px, 0);
	opacity: 1;
	visibility: visible;
}

.lg-outer.lg-comment-active .lg-comment-toggle {
	color: #fff;
}

.lg-outer.lg-comment-active .lg-comment-box {
	-moz-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.lg-outer .lg-img-rotate {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
	-moz-transition: -moz-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
	-o-transition: -o-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer[data-lg-slide-type=video] .lg-rotate-left,
.lg-outer[data-lg-slide-type=video] .lg-rotate-right,
.lg-outer[data-lg-slide-type=video] .lg-flip-ver,
.lg-outer[data-lg-slide-type=video] .lg-flip-hor,
.lg-outer[data-lg-slide-type=iframe] .lg-rotate-left,
.lg-outer[data-lg-slide-type=iframe] .lg-rotate-right,
.lg-outer[data-lg-slide-type=iframe] .lg-flip-ver,
.lg-outer[data-lg-slide-type=iframe] .lg-flip-hor {
	opacity: 0.75;
	pointer-events: none;
}

.lg-outer .lg-img-rotate:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.lg-rotate-left:after {
	content: "\e900";
}

.lg-rotate-right:after {
	content: "\e901";
}

.lg-icon.lg-flip-hor,
.lg-icon.lg-flip-ver {
	font-size: 26px;
}

.lg-flip-ver:after {
	content: "\e903";
}

.lg-flip-hor:after {
	content: "\e902";
}

.lg-medium-zoom-item {
	cursor: zoom-in;
}

.lg-medium-zoom .lg-outer {
	cursor: zoom-out;
}

.lg-medium-zoom .lg-outer.lg-grab img.lg-object {
	cursor: zoom-out;
}

.lg-medium-zoom .lg-outer.lg-grabbing img.lg-object {
	cursor: zoom-out;
}

.lg-relative-caption .lg-outer .lg-sub-html {
	white-space: normal;
	bottom: auto;
	padding: 0;
	background-image: none;
}

.lg-relative-caption .lg-outer .lg-relative-caption-item {
	opacity: 0;
	padding: 16px 0;
	transition: 0.5s opacity ease;
}

.lg-relative-caption .lg-outer .lg-show-caption .lg-relative-caption-item {
	opacity: 1;
}

.lg-group:after {
	content: "";
	display: table;
	clear: both;
}

.lg-container {
	display: none;
	outline: none;
}

.lg-container.lg-show {
	display: block;
}

.lg-on {
	scroll-behavior: unset;
}

.lg-overlay-open {
	overflow: hidden;
}

.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
	opacity: 0;
	will-change: transform, opacity;
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	-moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	-o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
	opacity: 1;
}

.lg-show-in.lg-hide-sub-html .lg-sub-html {
	opacity: 1;
}

.lg-show-in .lg-hide-items .lg-prev {
	opacity: 0;
	-webkit-transform: translate3d(-10px, 0, 0);
	transform: translate3d(-10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-next {
	opacity: 0;
	-webkit-transform: translate3d(10px, 0, 0);
	transform: translate3d(10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-toolbar {
	opacity: 0;
	-webkit-transform: translate3d(0, -10px, 0);
	transform: translate3d(0, -10px, 0);
}

.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
	opacity: 0;
	-webkit-transform: translate3d(0, 20px, 0);
	transform: translate3d(0, 20px, 0);
}

.lg-outer {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	text-align: left;
	opacity: 0.001;
	outline: none;
	will-change: auto;
	overflow: hidden;
	-webkit-transition: opacity 0.15s ease 0s;
	-o-transition: opacity 0.15s ease 0s;
	transition: opacity 0.15s ease 0s;
}

.lg-outer * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.lg-outer.lg-zoom-from-image {
	opacity: 1;
}

.lg-outer.lg-visible {
	opacity: 1;
}

.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
	-webkit-transition-duration: inherit !important;
	transition-duration: inherit !important;
	-webkit-transition-timing-function: inherit !important;
	transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
	-webkit-transition-duration: 0s !important;
	transition-duration: 0s !important;
	opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: -o-grabbing;
	cursor: -ms-grabbing;
	cursor: grabbing;
}

.lg-outer .lg-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.lg-outer .lg-inner {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	-webkit-transition: opacity 0s;
	-o-transition: opacity 0s;
	transition: opacity 0s;
	white-space: nowrap;
}

.lg-outer .lg-item {
	display: none !important;
}

.lg-outer .lg-item:not(.lg-start-end-progress) {
	background: url("../images/loading.gif") no-repeat scroll center center transparent;
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
	display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
	display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
	display: inline-block;
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.lg-outer .lg-img-wrap {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	white-space: nowrap;
	font-size: 0;
}

.lg-outer .lg-item.lg-complete {
	background-image: none;
}

.lg-outer .lg-item.lg-current {
	z-index: 1060;
}

.lg-outer .lg-object {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	position: relative;
}

.lg-outer .lg-empty-html.lg-sub-html,
.lg-outer .lg-empty-html .lg-sub-html {
	display: none;
}

.lg-outer.lg-hide-download .lg-download {
	opacity: 0.75;
	pointer-events: none;
}

.lg-outer .lg-first-slide .lg-dummy-img {
	position: absolute;
	top: 50%;
	left: 50%;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
	-webkit-transform: translate3d(0, 0%, 0);
	transform: translate3d(0, 0%, 0);
	opacity: 1;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
	opacity: 1;
	transition: opacity 0.2s ease-out 0.15s;
}

.lg-outer .lg-media-cont {
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

.lg-outer .lg-media-cont .lg-object {
	width: 100% !important;
	height: 100% !important;
}

.lg-outer .lg-has-iframe .lg-media-cont {
	-webkit-overflow-scrolling: touch;
	overflow: auto;
}

.lg-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1040;
	background-color: #000;
	opacity: 0;
	will-change: auto;
	-webkit-transition: opacity 333ms ease-in 0s;
	-o-transition: opacity 333ms ease-in 0s;
	transition: opacity 333ms ease-in 0s;
}

.lg-backdrop.in {
	opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
	-webkit-transition: none 0s ease 0s !important;
	-moz-transition: none 0s ease 0s !important;
	-o-transition: none 0s ease 0s !important;
	transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
	opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
	opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
	-webkit-transition: opacity 0.1s ease 0s;
	-moz-transition: opacity 0.1s ease 0s;
	-o-transition: opacity 0.1s ease 0s;
	transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
	-o-transition: -o-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
	transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-container {
	display: none;
}

.lg-container.lg-show {
	display: block;
}

.lg-container.lg-dragging-vertical .lg-backdrop {
	-webkit-transition-duration: 0s !important;
	transition-duration: 0s !important;
}

.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
	-webkit-transition-duration: 0s !important;
	transition-duration: 0s !important;
	opacity: 1;
}

.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
	position: absolute;
}

.lg-inline .lg-backdrop {
	z-index: 1;
}

.lg-inline .lg-outer {
	z-index: 2;
}

.lg-inline .lg-maximize:after {
	content: "\e909";
}

.lg-components {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	will-change: transform;
	-webkit-transition: -webkit-transform 0.35s ease-out 0s;
	-moz-transition: -moz-transform 0.35s ease-out 0s;
	-o-transition: -o-transform 0.35s ease-out 0s;
	transition: transform 0.35s ease-out 0s;
	z-index: 1080;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
}


/** @section Material Parallax */
.parallax-container {
	position: relative;
	overflow: hidden;
}

.material-parallax {
	position: absolute;
	top: 0;
	left: -1px;
	right: -1px;
	bottom: 0;
	z-index: 0;
}

.parallax-content {
	position: relative;
	z-index: 1;
}

.material-parallax img {
	display: none;
	position: absolute;
	left: 50%;
	bottom: 0;
	min-width: 101%;
	min-height: 101%;
	max-width: none;
	transform: translate3d(-50%, 0, 0);
}

.parallax-disabled {
	background-size: cover;
	background-position: center;
}

html:not(.ie-11):not(.ios) .parallax-disabled {
	background-attachment: fixed;
}

/** @section Bootstrap Modal */
.ios .modal-open {
	position: fixed;
	width: 100%;
	height: 100%;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	color: inherit;
}

/**
 * Vide
 */
.bg-vide {
	position: relative;
	z-index: 0;
}

.bg-vide>* {
	position: relative;
	z-index: 1;
}

/** @section Vide */
.vide {
	width: 100%;
	background-size: cover;
	background-position: center;
}

.vide>* {
	position: relative;
	z-index: 1;
}

.vide video {
	will-change: transform;
	pointer-events: none;
}

.vide {
	height: 100%;
}

.vide-inner {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: Arial;
	text-align: center;
	color: white;
}

/*# sourceMappingURL=style.css.map */
.video-wrap {
	height: 300px;
}

@media (min-width: 1200px) {
	.video-wrap {
		height: 467px;
	}
}

.fa-twitter:before {
	content: "𝕏" !important;
}

.form-agree {
	text-align: left;
	font-size: 18px;
	color: #444;
}

.form-agree a {
	color: var(--accent);
	text-decoration: underline;
}

.custom-checkbox input[type="checkbox"] {
	accent-color: var(--accent);
	width: 18px;
	height: 18px;
	margin: 0 10px;
}

.label-text {
	user-select: none;
}

.quote-form .form-input .label-text {
	color: #e1dada;
}

.message {
	display: none;
	font-weight: 500;
	margin-top: 10px;
}

.message.success {
	color: #28a745;
}

.message.error {
	color: #c2a10d;
}


.form-agree a {
	color: var(--accent);
	text-decoration: underline;
}

.custom-checkbox input[type="checkbox"] {
	accent-color: var(--accent);
	width: 18px;
	height: 18px;
}

.auth-tabs {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.auth-tab {
	background: none;
	border: 2px solid var(--accent);
	color: var(--accent);
	padding: 8px 18px;
	font-weight: 600;
	text-transform: uppercase;
	transition: .25s;
	cursor: pointer;
}

.auth-tab.active,
.auth-tab:hover {
	background: var(--accent);
	color: #fff;
}

.auth-form {
	display: none;
	transition: opacity .3s ease;
}

.auth-form.active {
	display: block;
	opacity: 1;
}

.context-dark {
	position: relative;
	z-index: 3;
}

footer .brand-logo {
	width: auto;
	height: 77px;
	margin: 0 7px;
}

footer .brand {
	font-weight: 700;
}

header .brand {
	font-weight: 700;
	color: #fff;
	font-size: 25px;
	display: flex;
	align-items: center;
	gap: 7px;
}

@media screen and (width < 576px) {
	header .brand {
		font-size: 18px;
	}
}

header .brand-logo {
	width: auto;
	height: 45px !important;
	max-width: 120px;
}

.section.bg-deep-blue .form-agree {
	color: #969696;
}

.section-three-bg {
	position: relative;
	overflow: hidden;
}

.section-three-bg:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(45deg, #26252579, #3635354c), url('../images/abstract-bg-1.jpg');
}

@media (min-width: 1200px) {
	.section-double-bg:before {
		height: 100%;
	}
}

.news-section {
	padding: 80px 0;
}

.news-section .section-title {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 50px;
	color: var(--dark-bg);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
}

.news-card {
	background: var(--light-bg);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.news-image {
	position: relative;
	display: block;
}

.news-image img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
}

.news-date {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: var(--accent);
	color: var(--dark-bg);
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 4px;
	font-size: 15px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.news-title {
	font-size: 22px;
	margin: 20px 20px 10px;
	font-weight: 700;
	color: var(--dark-bg);
	line-height: 1.3;
}

.news-title a {
	color: inherit;
	text-decoration: none;
}

.news-title a:hover {
	color: var(--accent);
}

.news-excerpt {
	font-size: 16px;
	color: #333;
	margin: 0 20px 25px;
	line-height: 1.6;
}

.services-two .service-box-classic {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	cursor: pointer;
}

.services-two .service-box-classic img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
	border-radius: 12px;
}

.services-two .service-box-classic:hover img {
	transform: scale(1.08);
}

.services-two .service-box-classic__caption {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 50%;
	left: 50%;
	opacity: 0;
	visibility: hidden;
	transition: all .35s ease;
	padding: 20px;
	text-align: center;
}

.services-two .service-box-classic__caption a {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
}

.services-two .service-box-classic:hover .service-box-classic__caption {
	opacity: 1;
	visibility: visible;
}

.services-two .service-box-classic {
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	transition: transform .3s ease, box-shadow .3s ease;
	direction: initial;
}

.services-two .service-box-classic:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.style-two.section-double-bg::before {
	height: 450px;
}

.section-three-bg h2 {
	z-index: 1;
	position: relative;
	color: #fff;
}

.contact-page .tabs-creative.tabs-horizontal .nav-tabs {
	justify-content: center;
}

.full-content {
	margin-top: 30px;
}

.full-content h1 {
	font-size: 30px;
}

.full-content h2 {
	font-size: 26px;
}

.full-content h3 {
	font-size: 24px;
}

.full-content h4 {
	font-size: 22px;
}

.full-content h5 {
	font-size: 20px;
}

.full-content ul li {
	list-style: disc;
	margin-left: 30px;
	display: list-item;
}

.full-content h1+p,
.full-content h2+p,
.full-content h3+p,
.full-content h4+p,
.full-content h5+p {
	margin-top: 15px;
	margin-bottom: 10px;
}

.full-content img {
	margin: 15px 0 10px 0 !important;
}

.direction {
	direction: initial;
}

.section.style-two .float-box-classic {
	padding: 50px 0;
}

.section.section-double-bg:not(.style-two) .box-counter-title {
	color: var(--text-on-dark);
}

.section.section-double-bg.style-two .box-counter-title,
.about-page .box-counter-title {
	color: var(--dark-bg);
}

.counters-xl-wrap .counter {
	font-size: clamp(20px, 5vw, 50px);
}