@charset "UTF-8";
/**
 * [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
 */
/** @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;
}

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 [class^='heading-'], .bg-gray-700 [class^='heading-'], .bg-primary [class^='heading-'] {
	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;
}

html.boxed body {
	background: #edeff4 url(../images/bg-pattern-boxed.png) repeat fixed;
}

@media (min-width: 1630px) {
	html.boxed .page {
		max-width: 1600px;
		margin-left: auto;
		margin-right: auto;
		box-shadow: 0 0 23px 0 rgba(1, 1, 1, 0.1);
	}
	html.boxed .rd-navbar-static {
		max-width: 1600px;
		margin-left: auto;
		margin-right: auto;
	}
	html.boxed .rd-navbar-static.rd-navbar--is-stuck {
		max-width: 1600px;
		width: 100%;
		left: calc(50% - 1600px);
		right: calc(50% - 1600px);
	}
}

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

@media (min-width: 1200px) {
	* + p {
		margin-top: 25px;
	}
}

h2 + p,
.heading-2 + p {
	margin-top: 12px;
}

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

p + p {
	margin-top: 20px;
}

h1, h2, h3, h4, h5, h6, [class^='heading-'] + p.offset-xl,
* + p.offset-xl {
	margin-top: 15px;
}

@media (min-width: 768px) {
	h1, h2, h3, h4, h5, h6, [class^='heading-'] + p.offset-xl,
	* + p.offset-xl {
		margin-top: 20px;
	}
}

@media (min-width: 1200px) {
	h1, h2, h3, h4, h5, h6, [class^='heading-'] + p.offset-xl,
	* + p.offset-xl {
		margin-top: 50px;
	}
}

p.offset-xl + p {
	margin-top: 15px;
}

@media (min-width: 992px) {
	p.offset-xl + p {
		margin-top: 25px;
	}
}

img + p {
	margin-top: 15px;
}

h3 + img {
	margin-top: 42px;
}

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

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

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

@media (min-width: 1200px) {
	* + .row.offset-lg {
		margin-top: 40px;
	}
}

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

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

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

.row + h3,
.row + .heading-3 {
	margin-top: 80px;
}

.container + .container {
	margin-top: 35px;
}

.row + .row {
	margin-top: 35px;
}

@media (min-width: 1200px) {
	* + .rd-form {
		margin-top: 30px;
	}
	.container + .container {
		margin-top: 60px;
	}
	.row + .row {
		margin-top: 70px;
	}
}

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

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

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

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

/** @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;
}

.text-transform-none {
	text-transform: none;
}

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

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

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

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

.fw-sbold {
	font-weight: 600;
}

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

.fw-ubold {
	font-weight: 900;
}

.font-secondary {
	font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (min-width: 1200px) {
	.font-lg {
		font-size: 26px;
	}
}

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

.text-primary {
	color: #c4eeec !important;
}

.text-red {
	color: #ee1616;
}

.text-dark-gray {
	color: #292f35;
}

@media (min-width: 1200px) {
	.heading-4.text-xl {
		font-size: 26px;
	}
}

.text-sm {
	font-size: 16px !important;
}

/** @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-10 {
	margin-bottom: -10px;
}

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

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

.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-40 {
	margin-bottom: -30px;
}

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

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

@media (min-width: 1200px) {
	.row-xl-40 {
		margin-bottom: -40px;
	}
	.row-xl-40:empty {
		margin-bottom: 0;
	}
	.row-xl-40 > * {
		margin-bottom: 40px;
	}
}

@media (min-width: 992px) {
	.row-md-30 {
		margin-bottom: -30px;
	}
	.row-md-30:empty {
		margin-bottom: 0;
	}
	.row-md-30 > * {
		margin-bottom: 30px;
	}
}

/** @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: 40px;
	}
}

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

@media (min-width: 992px) {
	.section-md {
		padding: 80px 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 .rd-mailform-wrap {
	max-width: 670px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section-single * + .rd-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 .brand img {
	width: 225px;
}

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

.section-custom-1 {
	padding-top: 50px;
	padding-bottom: 50px;
}

@media (min-width: 768px) {
	.section-custom-1 {
		padding-top: 85px;
		padding-bottom: 85px;
	}
}

@media (min-width: 992px) {
	.section-custom-1 {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

@media (min-width: 1200px) {
	.section-custom-1 {
		padding-top: 100px;
		padding-bottom: 70px;
	}
}

.bg-image-11 + .inset-xl-top-50 {
	padding-top: 0;
}

@media (min-width: 1200px) {
	.bg-image-11 + .inset-xl-top-50 {
		padding-top: 50px;
	}
}

@media (min-width: 1200px) {
	.bg-image-9 + .footer-classic {
		padding-top: 20px;
	}
}

/** @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-right: -5px;
	margin-left: -5px;
}

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

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

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

@media (min-width: 1200px) {
	.row-narrow-40 {
		margin-right: -20px;
		margin-left: -20px;
	}
	.row-narrow-40 > .col,
	.row-narrow-40 > [class*="col-"] {
		padding-right: 20px;
		padding-left: 20px;
	}
}

/** @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-primary + .bg-primary {
	padding-top: 0;
}

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

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

@media (min-width: 1200px) {
	.bg-image-1 {
		background: url("../images/bg-home-1.png") no-repeat top right;
		background-size: cover;
	}
}

@media (min-width: 1200px) {
	.bg-image-2 {
		background: url("../images/bg-home-2.png") no-repeat center left;
		background-size: cover;
		padding-bottom: 200px;
		padding-top: 200px;
	}
}

@media (min-width: 1200px) {
	.bg-image-3 {
		background: url("../images/bg-home-3.png") no-repeat center right;
		background-size: cover;
		padding-bottom: 130px;
		padding-top: 90px;
	}
}

.bg-image-4 {
	background: url("../images/bg-home-4.png") no-repeat center;
	background-size: cover;
}

@media (min-width: 1200px) {
	.bg-image-4 {
		padding-bottom: 190px;
		padding-top: 215px;
	}
}

@media (min-width: 1200px) {
	.bg-image-5 {
		background: url("../images/bg-about-1.png") no-repeat top center;
		background-size: cover;
	}
}

@media (min-width: 1200px) {
	.bg-image-6 {
		background: url("../images/bg-about-2.png") no-repeat center right;
		background-size: cover;
		padding-bottom: 80px;
		padding-top: 90px;
	}
}

@media (max-width: 2370px) {
	.bg-image-6 {
		padding-top: 0;
	}
}

.bg-image-7 {
	background: url("../images/bg-about-3.png") no-repeat center;
	background-size: cover;
}

@media (min-width: 1200px) {
	.bg-image-7 {
		padding-bottom: 190px;
		padding-top: 215px;
	}
}

@media (min-width: 1200px) {
	.bg-image-8 {
		padding-bottom: 50px;
		background: url("../images/bg-service-1.png") no-repeat top right;
		background-size: contain;
	}
}

.bg-image-9 {
	position: relative;
}

@media (min-width: 1200px) {
	.bg-image-9 {
		padding: 155px 0 135px 0;
		background: url("../images/bg-services-2.png") no-repeat top right;
		background-size: cover;
	}
}

@media (min-width: 1200px) {
	.bg-image-10 {
		background: url("../images/bg-tours-1.png") no-repeat center right;
		background-size: cover;
		background-position: 50% 56%;
		padding: 0 0px 189px 0px;
	}
}

@media (min-width: 1200px) {
	.bg-image-11 {
		background: url("../images/bg-contacts-1.png") no-repeat center right;
		background-size: cover;
		padding-bottom: 80px;
		padding-top: 90px;
	}
}

@media (min-width: 1200px) {
	.creative-bg {
		position: relative;
	}
	.creative-bg:before {
		content: '';
		top: 47.5%;
		transform: translateY(-50%);
		background-color: #c4eeec;
		left: 0;
		height: calc(100% - 120px);
		right: 36%;
		position: absolute;
	}
}

.creative-bg-2 {
	padding-top: 60px;
	padding-bottom: 44px;
	position: relative;
}

.creative-bg-2 > * {
	position: relative;
}

.creative-bg-2:before {
	content: '';
	top: 50%;
	transform: translateY(-50%);
	background-color: #c4eeec;
	right: -70px;
	height: 100%;
	width: 10000px;
	position: absolute;
}

.column-bg-1, .column-bg-4 {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
}

@media (min-width: 1200px) {
	.column-bg-1, .column-bg-4 {
		padding-top: 160px;
		padding-bottom: 160px;
	}
}

.column-bg-1 > *, .column-bg-4 > * {
	z-index: 2;
	position: relative;
}

.column-bg-1:before, .column-bg-4:before {
	content: '';
	position: absolute;
	height: 100%;
	left: 15px;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #c4eeec;
	z-index: 1;
}

@media (min-width: 1200px) {
	.column-bg-1:before, .column-bg-4:before {
		left: -100px;
		width: 3000px;
	}
}

.column-bg-2, .column-bg-3 {
	position: relative;
	padding: 60px 15px;
}

@media (min-width: 1200px) {
	.column-bg-2, .column-bg-3 {
		padding: 65px 15px 65px 99px;
	}
}

.column-bg-2 > *, .column-bg-3 > * {
	z-index: 2;
	position: relative;
}

.column-bg-2:before, .column-bg-3:before {
	content: '';
	position: absolute;
	height: 100%;
	left: 15px;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #ffffff;
	z-index: 1;
}

@media (min-width: 1200px) {
	.column-bg-2:before, .column-bg-3:before {
		left: 0;
		right: 0;
	}
}

@media (min-width: 1400px) {
	.column-bg-2:before, .column-bg-3:before {
		right: -45px;
	}
}

.column-bg-3 {
	padding: 38px 30px;
}

.column-bg-3:before {
	left: 15px;
	right: 15px;
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1200px) {
	.column-bg-3 {
		padding: 38px 0;
	}
	.column-bg-3:before {
		left: -15px;
		right: -15px;
		background-color: white;
		box-shadow: none;
	}
}

@media (min-width: 1200px) {
	.column-bg-4:before {
		left: auto;
		right: -80px;
	}
}

.column-bg-5 {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
}

@media (min-width: 992px) {
	.column-bg-5 {
		padding: 78px 15px 120px;
	}
}

.column-bg-5 > * {
	z-index: 2;
	position: relative;
}

.column-bg-5:before {
	content: '';
	position: absolute;
	height: 100%;
	left: 15px;
	right: 15px;
	top: 50%;
	background-color: #c4eeec;
	z-index: 1;
	width: 3000px;
	transform: translate(-50%, -50%);
}

@media (min-width: 1200px) {
	.column-bg-5:before {
		left: auto;
		right: 300px;
		transform: translate(0, -50%);
	}
}

@media (max-width: 2370px) {
	[class*='bg-image-'] + [class*='bg-default'] {
		padding-top: 0;
		padding-bottom: 0;
	}
}

@media (max-width: 1200px) {
	[class*='bg-image-'] + [class*='bg-image-'],
	.bg-default + .inset-xl {
		padding-top: 0;
	}
}

/** @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: 12px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
}

p.rights a {
	color: inherit;
}

p.rights a:hover {
	color: #c4eeec;
}

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

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

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

@media (min-width: 1200px) {
	.page-header + *:not(.swiper-slider):not(.breadcrumbs-custom) {
		padding-top: 90px;
	}
	.page-header + .swiper-slider .swiper-slide {
		padding-top: 90px;
	}
}

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

/** @group Components */
/** @section Typography */
body {
	font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.625;
	font-weight: 400;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: subpixel-antialiased;
}

h1, h2, h3, h4, h5, h6, [class^='heading-'] {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 500;
	color: #151515;
	font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	text-transform: uppercase;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, [class^='heading-'] a {
	color: inherit;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, [class^='heading-'] a:hover {
	color: rgba(21, 21, 21, 0.6);
}

h1,
.heading-1 {
	font-size: 32px;
	line-height: 1.5;
}

@media (min-width: 1200px) {
	h1,
	.heading-1 {
		font-size: 60px;
		line-height: 1.2;
	}
}

h2,
.heading-2 {
	font-size: 28px;
	line-height: 1.5;
}

@media (min-width: 1200px) {
	h2,
	.heading-2 {
		font-size: 36px;
		line-height: 1.11111;
	}
}

h3,
.heading-3 {
	font-size: 24px;
	line-height: 1.5;
}

@media (min-width: 1200px) {
	h3,
	.heading-3 {
		font-size: 32px;
		line-height: 1.5;
	}
}

h4,
.heading-4 {
	font-size: 20px;
	line-height: 1.5;
}

@media (min-width: 1200px) {
	h4,
	.heading-4 {
		font-size: 24px;
		line-height: 1.25;
	}
}

.heading-4 {
	text-transform: none;
}

h5,
.heading-5 {
	font-size: 20px;
	line-height: 1.5;
}

@media (min-width: 1200px) {
	h5,
	.heading-5 {
		font-size: 18px;
		line-height: 1.44444;
	}
}

h6,
.heading-6 {
	font-size: 18px;
	line-height: 1.5;
}

@media (min-width: 1200px) {
	h6,
	.heading-6 {
		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: #c4eeec;
}

.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-bs-toggle='tooltip'] {
	padding-left: .25em;
	padding-right: .25em;
	color: #c4eeec;
}

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

::selection {
	background: #c4eeec;
	color: #ffffff;
}

::-moz-selection {
	background: #c4eeec;
	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: #c4eeec;
}

a:hover {
	color: #89ddd9;
}

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

.link-hover {
	color: #89ddd9;
}

.link-press {
	color: #89ddd9;
}

.privacy-link {
	margin-top: 30px;
	display: inline-block;
	color: #1e2227;
}

.privacy-link:hover {
	color: #1e2227;
	text-decoration: underline;
}

* + .privacy-link {
	margin-top: 25px;
}

.gallery-link {
	display: inline-block;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

.gallery-link:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(84, 89, 95, 0);
	transition: all ease .25s;
}

.gallery-link:hover:before {
	background-color: rgba(84, 89, 95, 0.6);
	transition: all ease .25s;
}

.ie-10 .gallery-link, .ie-11 .gallery-link {
	display: block;
}

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

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

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

.block-center {
	padding: 10px;
}

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

.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: #c4eeec;
	}
}

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

.box-minimal .box-minimal-icon {
	font-size: 50px;
	line-height: 50px;
	color: #c4eeec;
}

.box-minimal-divider {
	width: 36px;
	height: 4px;
	margin-left: auto;
	margin-right: auto;
	background: #c4eeec;
}

.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: #737576;
}

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

.box-counter-title {
	display: inline-block;
	font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: -.025em;
}

.box-counter-main {
	font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, 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: #c4eeec;
}

* + .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;
}

.intro-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.intro-box__floating-text {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: 60px;
	user-select: none;
	font-weight: 700;
	font-family: "DeadStock", serif;
	color: rgba(255, 255, 255, 0.57);
	line-height: 1;
	letter-spacing: .05em;
}

@media (min-width: 576px) {
	.intro-box__floating-text {
		font-size: 80px;
	}
}

@media (min-width: 768px) {
	.intro-box__floating-text {
		font-size: 120px;
	}
}

@media (min-width: 992px) {
	.intro-box__floating-text {
		font-size: 160px;
	}
}

@media (min-width: 1200px) {
	.intro-box__floating-text {
		font-size: 200px;
	}
}

.intro-box__title {
	color: #ffffff;
	letter-spacing: .010em;
	font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 600;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	font-size: 34px;
	padding-top: 50px;
}

@media (min-width: 576px) {
	.intro-box__title {
		font-size: 50px;
	}
}

@media (min-width: 768px) {
	.intro-box__title {
		font-size: 60px;
		padding-top: 60px;
	}
}

@media (min-width: 992px) {
	.intro-box__title {
		font-size: 80px;
	}
}

@media (min-width: 1200px) {
	.intro-box__title {
		font-size: 114px;
		padding-top: 100px;
	}
}

@media (min-width: 1200px) {
	.intro-box__title span + span {
		padding-left: 60px;
	}
}

.intro-box__video {
	margin-top: 35px;
	font-size: 18px;
}

.intro-box__video a {
	display: inline-block;
	position: relative;
	padding-left: 40px;
}

.intro-box__video a, .intro-box__video a:focus, .intro-box__video a:active {
	color: #ffffff;
}

.intro-box__video a:hover {
	color: #c4eeec;
}

.intro-box__video a:after {
	content: '';
	position: absolute;
	left: 40px;
	width: calc(100% - 40px);
	bottom: -1px;
	height: 1px;
	background-color: transparent;
	transition: all 0.3s ease-in-out;
}

.intro-box__video a:before {
	content: '\ec6a';
	font-family: "Linearicons";
	font-size: 28px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.intro-box__video a:hover:after {
	background-color: #ffffff;
	transition: all 0.3s ease-in-out;
}

.intro-box__video a:hover:before {
	text-decoration: none;
}

.image-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -30px;
	margin-top: -30px;
}

.image-box > * {
	margin-left: 30px;
	margin-top: 30px;
}

.image-box img {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
}

@media (min-width: 576px) {
	.image-box {
		flex-wrap: nowrap;
	}
}

@media (min-width: 1200px) {
	.image-box {
		justify-content: flex-start;
		margin-left: 0;
	}
	.image-box > * {
		margin-left: 0;
	}
}

.image-box__float {
	transition: transform .5s ease;
}

@media (min-width: 1200px) {
	.image-box__float {
		position: absolute;
		right: 0;
		transform: translate(-100px, 50px);
	}
}

.image-box.inverse .image-box__static {
	z-index: 2;
}

.image-box.inverse:hover .image-box__float {
	transform: translate(-15px, 0);
}

.image-box__static {
	transition: transform .5s ease;
}

@media (min-width: 1200px) {
	.image-box:hover .image-box__static {
		transform: translateY(50px);
	}
	.image-box:hover .image-box__float {
		transform: translate(-15px, 0);
		transition: transform .5s ease;
	}
}

@media (min-width: 1200px) and (min-width: 1600px) {
	.image-box:hover .image-box__float {
		transform: translate(15px, 0);
	}
}

.floating-video-box {
	display: inline-block;
	position: relative;
	box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.23);
	z-index: 2;
}

@media (min-width: 1200px) {
	.floating-video-box {
		transform: translateY(80px);
	}
}

.floating-video-box span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: #ffffff;
	transition: all ease .25s;
}

.floating-video-box span:hover {
	transition: all ease .25s;
	box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.23);
}

.floating-video-box span:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 16px;
	color: #292f35;
}

.info-box-classic {
	max-width: 370px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
}

.info-box-classic:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 60%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.71) 100%);
	z-index: 1;
	transition: all ease .25s;
}

@media (min-width: 1200px) {
	.info-box-classic:before {
		opacity: 0;
	}
}

.info-box-classic__description {
	position: absolute;
	left: 30px;
	bottom: 30px;
	right: 30px;
	z-index: 2;
}

@media (min-width: 1200px) {
	.info-box-classic__description {
		opacity: 0;
		transform: translateY(120%);
		transition: all ease .25s;
	}
}

.info-box-classic__description .heading-4 {
	color: #ffffff;
	font-weight: 700;
}

.info-box-classic__description span {
	font-size: 14px;
	font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: #ffffff;
	font-weight: 100;
	display: inline-block;
}

.info-box-classic__description span + span {
	margin-left: 5px;
}

.info-box-classic__description span.price {
	font-size: 18px;
	font-weight: 500;
}

@media (min-width: 1200px) {
	.info-box-classic:hover .info-box-classic__description {
		transform: translateY(0);
		opacity: 1;
		transition: transform ease .25s;
	}
	.info-box-classic:hover:before {
		opacity: 1;
		transition: all ease .25s;
	}
}

.team-member-box {
	position: relative;
	max-width: 370px;
	margin-right: auto;
	margin-left: auto;
}

.team-member-box__caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #292f35;
	padding: 18px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.team-member-box__caption h1, .team-member-box__caption h2, .team-member-box__caption h3, .team-member-box__caption h4, .team-member-box__caption h5, .team-member-box__caption h6, .team-member-box__caption [class^='heading-'] {
	color: #ffffff;
}

.team-member-box__caption .subtitle {
	font-size: 14px;
	color: #9d9d9d;
}

.team-member-box__caption * + .social-list {
	margin-top: 15px;
}

.team-member-box__caption .social-list li + li {
	margin-left: 18px;
}

@media (min-width: 1200px) {
	.team-member-box__caption {
		opacity: 0;
		transition: opacity ease .25s;
	}
	.team-member-box__caption > * {
		opacity: 0;
		transition: opacity ease .25s;
	}
	.team-member-box:hover__caption {
		opacity: 0;
		transition: opacity ease .25s;
	}
	.team-member-box:hover .team-member-box__caption {
		opacity: 1;
		transition: opacity ease .25s;
	}
	.team-member-box:hover .team-member-box__caption h1, .team-member-box:hover .team-member-box__caption h2, .team-member-box:hover .team-member-box__caption h3, .team-member-box:hover .team-member-box__caption h4, .team-member-box:hover .team-member-box__caption h5, .team-member-box:hover .team-member-box__caption h6, .team-member-box:hover .team-member-box__caption [class^='heading-'] {
		opacity: 1;
		transition: opacity ease .25s .2s;
	}
	.team-member-box:hover .team-member-box__caption h1 a, .team-member-box:hover .team-member-box__caption h1 a:focus, .team-member-box:hover .team-member-box__caption h1 a:active, .team-member-box:hover .team-member-box__caption h2 a, .team-member-box:hover .team-member-box__caption h2 a:focus, .team-member-box:hover .team-member-box__caption h2 a:active, .team-member-box:hover .team-member-box__caption h3 a, .team-member-box:hover .team-member-box__caption h3 a:focus, .team-member-box:hover .team-member-box__caption h3 a:active, .team-member-box:hover .team-member-box__caption h4 a, .team-member-box:hover .team-member-box__caption h4 a:focus, .team-member-box:hover .team-member-box__caption h4 a:active, .team-member-box:hover .team-member-box__caption h5 a, .team-member-box:hover .team-member-box__caption h5 a:focus, .team-member-box:hover .team-member-box__caption h5 a:active, .team-member-box:hover .team-member-box__caption h6 a, .team-member-box:hover .team-member-box__caption h6 a:focus, .team-member-box:hover .team-member-box__caption h6 a:active, .team-member-box:hover .team-member-box__caption [class^='heading-'] a, .team-member-box:hover .team-member-box__caption [class^='heading-'] a:focus, .team-member-box:hover .team-member-box__caption [class^='heading-'] a:active {
		color: #ffffff;
	}
	.team-member-box:hover .team-member-box__caption h1 a:hover, .team-member-box:hover .team-member-box__caption h2 a:hover, .team-member-box:hover .team-member-box__caption h3 a:hover, .team-member-box:hover .team-member-box__caption h4 a:hover, .team-member-box:hover .team-member-box__caption h5 a:hover, .team-member-box:hover .team-member-box__caption h6 a:hover, .team-member-box:hover .team-member-box__caption [class^='heading-'] a:hover {
		color: #c4eeec;
	}
	.team-member-box:hover .team-member-box__caption span {
		opacity: 1;
		transition: opacity ease .25s .3s;
	}
	.team-member-box:hover .team-member-box__caption .social-list {
		opacity: 1;
		transition: opacity ease .25s .4s;
	}
}

.box-value__icon {
	margin-bottom: 10px;
}

.box-value__icon .icon {
	font-size: 30px;
	color: #292f35;
}

@media (min-width: 1200px) {
	.box-value__icon {
		margin-bottom: 20px;
	}
}

.box-value p {
	margin-top: 15px;
}

.service-box-creative {
	max-width: 370px;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	flex-direction: column;
}

.service-box-creative__media {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
	margin-bottom: 15px;
	background-color: #ffffff;
}

@media (min-width: 1200px) {
	.service-box-creative__media {
		margin-bottom: 25px;
	}
}

.service-box-creative__media img {
	transition: all ease .25s;
}

.service-box-creative__media:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}

.service-box-creative__media:hover img {
	opacity: .7;
	transition: all ease .25s;
}

.service-box-creative__caption {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.service-box-creative__caption p {
	width: 100%;
}

.service-box-creative__caption h1, .service-box-creative__caption h2, .service-box-creative__caption h3, .service-box-creative__caption h4, .service-box-creative__caption h5, .service-box-creative__caption h6, .service-box-creative__caption [class^='heading-'] {
	text-transform: none;
}

.service-box-creative__caption .price-group {
	margin-top: 5px;
}

.service-box-creative__caption * + p {
	margin-top: 20px;
}

.service-box-creative__caption p {
	font-size: 14px;
}

.service-box-creative__caption * + .icon-list {
	margin-top: 15px;
}

.single-service__caption {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.single-service__caption h1, .single-service__caption h2, .single-service__caption h3, .single-service__caption h4, .single-service__caption h5, .single-service__caption h6, .single-service__caption [class^='heading-'] {
	line-height: 1;
}

.single-service__caption .price-group {
	margin-top: 15px;
}

.single-service__caption .icon-list {
	display: flex;
	flex-direction: column;
}

.single-service__caption .icon-list li + li {
	margin-top: 18px;
	margin-left: 0;
}

.single-service__caption .icon-list li span + span {
	margin-left: 15px;
}

.single-service__caption * + .icon-list {
	margin-top: 20px;
}

@media (min-width: 1200px) {
	.single-service__caption * + .icon-list {
		margin-top: 35px;
	}
}

.single-service__caption * + p {
	margin-top: 20px;
}

.single-service__caption p {
	width: 100%;
	font-size: 14px;
	line-height: 1.8;
}

.contact-info-box {
	padding-left: 30px;
	position: relative;
	color: #292f35;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.contact-info-box p {
	width: 100%;
}

.contact-info-box span.adress {
	font-weight: 700;
}

.contact-info-box:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background-color: #292f35;
}

.contact-info-box p + * {
	margin-top: 32px;
}

.contact-info-box .contact-list {
	margin-top: 7px;
}

.contact-info-box .contact-list li {
	display: flex;
}

.contact-info-box .contact-list li span {
	margin-right: 10px;
}

.contact-info-box .contact-list a {
	color: #292f35;
}

.contact-info-box .contact-list a:hover {
	text-decoration: underline;
}

/** @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: -5px;
}

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

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

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;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 100%;
}

html .group-custom > * {
	flex: 0 1 100%;
	padding-left: 20px;
	padding-right: 20px;
}

@media (min-width: 576px) {
	html .group-custom {
		flex-wrap: nowrap;
	}
	html .group-custom > * {
		flex: 1 1 auto;
	}
}

.price-group {
	margin-bottom: -10px;
	margin-left: -5px;
	font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-weight: 500;
}

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

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

.price-group__sale {
	color: #ee1616;
}

.price-group__price-old {
	text-decoration: line-through;
	color: #292f35;
}

* + .group-sm {
	margin-top: 10px;
	display: inline-block;
}

* + .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 dt + dd {
	margin-top: 5px;
}

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

* + .list-terms {
	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: 35px;
}

.list-marked > li::before {
	position: absolute;
	display: inline-block;
	left: 0;
	top: 1px;
	min-width: 25px;
	content: '\ec44';
	font: 400 14px/24px 'Linearicons';
	color: #292f35;
}

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

* + .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;
}

.social-list {
	display: flex;
}

.social-list li + li {
	margin-left: 10px;
}

.social-list li a {
	color: #616972;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
}

.social-list li a .icon {
	font-size: 14px;
}

.social-list li a:hover {
	color: #ffffff;
}

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

@media (min-width: 1200px) {
	.step-list li:hover .divider-step:after {
		background-color: #c4eeec;
		border-color: #c4eeec;
		left: 50%;
		transform: translate(-50%, -50%);
		box-shadow: 0px 0px 8px 0px #c4eeec;
		transition: all ease .25s;
	}
}

@media (max-width: 992px) {
	.step-list li:nth-child(even) .divider-step:before {
		right: 0;
	}
}

@media (min-width: 992px) {
	.step-list li:last-child .divider-step:before {
		right: 0;
	}
}

.step-list .icon {
	font-size: 36px;
	color: #9c9c9c;
	margin-bottom: 26px;
	width: 100%;
	text-align: center;
}

@media (min-width: 576px) {
	.step-list .icon {
		text-align: left;
	}
}

.list-raiting li {
	display: flex;
	align-items: center;
}

.list-raiting li > span {
	display: inline-block;
	width: 120px;
	margin-right: 20px;
	font-weight: 600;
	font-size: 14px;
	color: #737576;
}

.list-raiting li .star-group {
	display: flex;
}

.list-raiting li .star-group .icon + .icon {
	margin-left: 3px;
}

.icon-list {
	display: flex;
}

.icon-list li + li {
	margin-left: 27px;
}

.icon-list li {
	display: flex;
	align-items: center;
}

.icon-list li span + span {
	margin-left: 10px;
}

.icon-list li span {
	font-size: 14px;
	font-weight: 500;
}

.icon-list li span.icon {
	font-size: 20px;
	color: #1e2227;
	font-weight: 400;
}

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

.img-responsive {
	width: 100%;
}

@media (min-width: 1200px) {
	.brand-img {
		transition: all ease .25s;
	}
	.brand-img:hover {
		opacity: .7;
		transform: scale(1.05);
		transition: all ease .25s;
	}
}

/** @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: #c4eeec;
	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: #c4eeec;
}

.divider-step {
	position: relative;
	width: 100%;
	margin-bottom: 10px;
}

.divider-step:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	background-color: #d8d9db;
	height: 1px;
}

@media (min-width: 576px) {
	.divider-step:before {
		right: -30px;
	}
}

.divider-step:after {
	content: '';
	position: absolute;
	transform: translate(-50%, -50%);
	left: 50%;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid #dadbdd;
	background-color: #ffffff;
	top: 50%;
	transition: all ease .25s;
}

@media (min-width: 576px) {
	.divider-step:after {
		left: 0;
		transform: translate(0%, -50%);
	}
}

/** @section Buttons */
.button {
	position: relative;
	overflow: hidden;
	display: inline-block;
	padding: 11px 35px;
	font-size: 14px;
	line-height: 1.25;
	border: 2px solid;
	font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-weight: 500;
	letter-spacing: normal;
	text-transform: uppercase;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: center;
	cursor: pointer;
	vertical-align: middle;
	user-select: none;
	transition: 250ms all ease-in-out;
}

.button-block {
	display: block;
	width: 100%;
}

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

.button-default:hover, .button-default:active, .button-default.active {
	color: #ffffff;
	background-color: #c4eeec;
	border-color: #c4eeec;
}

.button-default.button-ujarak::before {
	background: #c4eeec;
}

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

.button-gray-100:hover, .button-gray-100:active, .button-gray-100.active {
	color: #151515;
	background-color: #dde1ea;
	border-color: #dde1ea;
}

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

.button-primary, .button-primary:focus {
	color: #1e2227;
	background-color: #c4eeec;
	border-color: #c4eeec;
}

.button-primary:hover, .button-primary:active, .button-primary.active {
	color: #ffffff;
	background-color: #2c343b;
	border-color: #2c343b;
}

.button-primary.button-ujarak::before {
	background: #2c343b;
}

.button-primary-2, .button-primary-2:focus {
	color: #292f35;
	background-color: #c4eeec;
	border-color: #c4eeec;
}

.button-primary-2:hover, .button-primary-2:active, .button-primary-2.active {
	color: #c4eeec;
	background-color: #1e2227;
	border-color: #1e2227;
}

.button-primary-2.button-ujarak::before {
	background: #1e2227;
}

.button-dark-blue, .button-dark-blue:focus {
	color: #c4eeec;
	background-color: #1e2227;
	border-color: #1e2227;
}

.button-dark-blue:hover, .button-dark-blue:active, .button-dark-blue.active {
	color: #ffffff;
	background-color: #424d56;
	border-color: #424d56;
}

.button-dark-blue.button-ujarak::before {
	background: #424d56;
}

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

.button-default-outline:hover, .button-default-outline:active, .button-default-outline.active {
	color: #ffffff;
	background-color: #c4eeec;
	border-color: #c4eeec;
}

.button-default-outline.button-ujarak::before {
	background: #c4eeec;
}

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

.button-ghost:hover {
	color: #ffffff;
	background: #c4eeec;
}

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

.button-facebook:hover, .button-facebook:active, .button-facebook.active {
	color: #ffffff;
	background-color: #456497;
	border-color: #456497;
}

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

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

.button-twitter:hover, .button-twitter:active, .button-twitter.active {
	color: #ffffff;
	background-color: #02a8da;
	border-color: #02a8da;
}

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

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

.button-google:hover, .button-google:active, .button-google.active {
	color: #ffffff;
	background-color: #cc3a1a;
	border-color: #cc3a1a;
}

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

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

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

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

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

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

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

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

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

.button-xs {
	padding: 8px 17px;
}

.button-sm {
	padding: 8px 35px;
	font-size: 12px;
	line-height: 1.25;
}

.button-md {
	padding: 8px 35px;
	font-size: 16px;
	line-height: 1.25;
	font-weight: 500;
}

.button-lg {
	padding: 12px 50px;
	font-size: 14px;
	line-height: 1.5;
}

.button-xl {
	padding: 16px 50px;
	font-size: 16px;
	line-height: 28px;
}

@media (min-width: 992px) {
	.button-xl {
		padding: 20px 80px;
	}
}

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

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

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

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

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

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

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

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

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

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

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

.btn-primary {
	border-radius: 3px;
	font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-weight: 500;
	letter-spacing: .05em;
	text-transform: uppercase;
	transition: .33s;
}

.btn-primary, .btn-primary:active, .btn-primary:focus {
	color: #ffffff;
	background: #c4eeec;
	border-color: #c4eeec;
}

.btn-primary:hover {
	color: #ffffff;
	background: #000000;
	border-color: #000000;
}

.context-dark .button-primary, .bg-gray-700 .button-primary, .bg-primary .button-primary, .context-dark .button-primary:focus, .bg-gray-700 .button-primary:focus, .bg-primary .button-primary:focus {
	color: #1e2227;
	background-color: #c4eeec;
	border-color: #c4eeec;
}

.context-dark .button-primary:hover, .bg-gray-700 .button-primary:hover, .bg-primary .button-primary:hover, .context-dark .button-primary:active, .bg-gray-700 .button-primary:active, .bg-primary .button-primary:active, .context-dark .button-primary.active, .bg-gray-700 .button-primary.active, .bg-primary .button-primary.active {
	color: #151515;
	background-color: #ffffff;
	border-color: #ffffff;
}

.context-dark .button-primary.button-ujarak::before, .bg-gray-700 .button-primary.button-ujarak::before, .bg-primary .button-primary.button-ujarak::before {
	background: #ffffff;
}

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

.rd-form .button {
	padding-top: 10px;
	padding-bottom: 10px;
	min-height: 50px;
}

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

.form-wrap {
	position: relative;
}

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

.form-wrap.has-focus .form-input {
	border-color: #c4eeec;
}

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

.form-input {
	display: block;
	width: 100%;
	min-height: 50px;
	padding: 12px 19px;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: #737576;
	background-color: #f5f5f5;
	background-image: none;
	border-radius: 0;
	-webkit-appearance: none;
	transition: .3s ease-in-out;
	font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	border: 1px solid #f5f5f5;
}

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

textarea.form-input {
	height: 135px;
	min-height: 50px;
	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: #737576;
	font-weight: 400;
}

.form-label {
	position: absolute;
	top: 25px;
	left: 0;
	right: 0;
	padding-left: 19px;
	padding-right: 19px;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, 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: #737576;
}

.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: 8px;
	top: 0;
	z-index: 11;
	margin-top: 2px;
	font-size: 9px;
	font-weight: 400;
	line-height: 12px;
	letter-spacing: 0;
	color: #f5543f !important;
	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;
}

@media (max-width: 480px) {
	#form-output-global {
		right: 15px;
	}
}

#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 {
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.radio input:not(caption),
.radio-inline input:not(caption),
.checkbox input:not(caption),
.checkbox-inline input:not(caption) {
	position: absolute !important;
}

.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: #c4eeec;
	transform: translate(20px, -50%);
}

.toggle-custom ~ .checkbox-custom-dummy {
	position: relative;
	display: inline-block;
	margin-top: -1px;
	width: 44px;
	height: 20px;
	background: #f5f5f5;
	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;
}

.rd-form-inline {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	text-align: center;
	transform: translate3d(0, -8px, 0);
	margin-bottom: -8px;
	margin-left: -4px;
	margin-right: -4px;
}

.rd-form-inline > * {
	margin-top: 8px;
	padding-left: 4px;
	padding-right: 4px;
}

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

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

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

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

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

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

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

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

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

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

.form-sm * + .button {
	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: 17px;
	padding-bottom: 17px;
}

.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 .form-input {
	border: none;
	border-bottom: 1px solid #989ea6;
	background: none;
	font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	padding-left: 10px;
	padding-right: 50px;
}

.subscribe-form .form-label {
	font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	padding-left: 10px;
	padding-right: 50px;
}

.subscribe-form .form-validation {
	top: auto;
	bottom: -20px;
	right: auto;
	left: 15px;
}

.subscribe-form .form-button {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.subscribe-form .form-button .button {
	background: none;
	border: none;
	font-size: 24px;
	color: #c4eeec;
	padding: 5px;
}

.subscribe-form .form-button .button:hover {
	color: #ffffff;
}

.contact-form .form-input, .contact-form .form-label {
	font-size: 14px;
	font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.contact-form .form-input {
	border: 1px solid #e5e5e5;
	padding: 13px 19px;
	background-color: #ffffff;
}

.contact-form textarea.form-input {
	min-width: 162px;
}

.contact-form .button-md {
	padding: 15px 31px;
}

.contact-form .form-button {
	margin-top: 15px;
}

@media (min-width: 992px) {
	.contact-form .form-button {
		margin-top: 0;
	}
}

* + .subscribe-form-2 {
	margin-top: 0;
	padding-top: 20px;
}

.subscribe-form-2, .search-form {
	margin-top: -10px;
	justify-content: center;
}

.subscribe-form-2 > *, .search-form > * {
	margin-top: 10px;
}

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

.post-classic__media {
	overflow: hidden;
	display: block;
	transition: all ease .25s;
	position: relative;
	margin-bottom: 20px;
}

@media (min-width: 1200px) {
	.post-classic__media {
		margin-bottom: 30px;
	}
}

.post-classic__media:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0);
	transition: all ease .25s;
}

.post-classic__media:hover:before {
	background-color: rgba(0, 0, 0, 0.4);
	transition: all ease .25s;
}

.post-classic span {
	font-size: 12px;
	display: block;
	margin-bottom: 5px;
}

.post-classic * + p {
	margin-top: 15px;
}

.blog-post-classic * + img {
	margin-top: 25px;
}

@media (min-width: 1200px) {
	.blog-post-classic * + img {
		margin-top: 45px;
	}
}

.blog-post-classic img + p {
	margin-top: 15px;
}

@media (min-width: 1200px) {
	.blog-post-classic img + p {
		margin-top: 30px;
	}
}

.blog-post-classic p + p.offset-md {
	margin-top: 15px;
}

@media (min-width: 1200px) {
	.blog-post-classic p + p.offset-md {
		margin-top: 30px;
	}
}

.blog-post-classic p + p.offset-xl {
	margin-top: 15px;
}

@media (min-width: 1200px) {
	.blog-post-classic p + p.offset-xl {
		margin-top: 60px;
	}
}

.blog-post-classic__media-group {
	padding-top: 50px;
	padding-bottom: 50px;
}

@media (min-width: 992px) {
	.blog-post-classic__media-group {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

@media (min-width: 1200px) {
	.blog-post-classic__media-group {
		padding-top: 115px;
		padding-bottom: 115px;
	}
}

.blog-post-classic__media-group .info-box-classic {
	text-align: center;
	max-width: 270px;
	margin-right: auto;
	margin-left: auto;
}

.blog-post-classic__media-group .info-box-classic__description {
	bottom: 18px;
}

.blog-post-classic__media-group .info-box-classic__description h1, .blog-post-classic__media-group .info-box-classic__description h2, .blog-post-classic__media-group .info-box-classic__description h3, .blog-post-classic__media-group .info-box-classic__description h4, .blog-post-classic__media-group .info-box-classic__description h5, .blog-post-classic__media-group .info-box-classic__description h6, .blog-post-classic__media-group .info-box-classic__description [class^='heading-'] {
	text-transform: uppercase;
}

.blog-post-classic * + .list-group {
	margin-top: 20px;
}

@media (min-width: 1200px) {
	.blog-post-classic * + .list-group {
		margin-top: 30px;
	}
}

.blog-post-classic__reviews * + p {
	margin-top: 10px;
}

.blog-post-classic__reviews .row [class*="col-"] + [class*="col-"] .blog-post-classic__comment {
	border-top: 1px solid #e0e0e0;
	padding-top: 35px;
}

@media (min-width: 1200px) {
	.blog-post-classic__reviews .row [class*="col-"] + [class*="col-"] .blog-post-classic__comment {
		padding-top: 60px;
	}
}

.blog-post-classic .list-group {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	margin-top: -5px;
	padding-top: 10px;
}

@media (max-width: 991.98px) {
	.blog-post-classic .list-group {
		margin-left: -15px;
	}
}

.blog-post-classic .list-group > * {
	margin-top: 5px;
}

@media (max-width: 991.98px) {
	.blog-post-classic .list-group > * {
		margin-left: 15px;
	}
}

@media (min-width: 1200px) {
	.blog-post-classic .list-group {
		padding-top: 40px;
		margin-top: -15px;
	}
	.blog-post-classic .list-group > * {
		margin-top: 15px;
	}
}

@media (min-width: 992px) {
	.blog-post-classic .list-group .list-raiting + .list-raiting {
		margin-left: 40px;
	}
}

@media (min-width: 1200px) {
	.blog-post-classic .list-group .list-raiting + .list-raiting {
		margin-left: 78px;
	}
}

.blog-post-classic .list-group .list-raiting .star-group .icon {
	color: #feaf25;
	font-size: 14px;
}

.blog-post-classic .list-group .list-raiting li + li {
	margin-top: 5px;
}

@media (min-width: 1200px) {
	.blog-post-classic .list-group .list-raiting li + li {
		margin-top: 15px;
	}
}

/** @section Quotes */
.quote-primary-mark {
	position: relative;
	top: 6px;
	display: block;
	width: 37px;
	height: 27px;
	fill: #c4eeec;
	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-wrap {
	position: relative;
	padding-left: 40px;
	padding-right: 25px;
}

@media (min-width: 1200px) {
	.quote-classic-wrap {
		padding-left: 85px;
		padding-right: 0;
	}
}

.quote-classic-wrap .heading-4 {
	line-height: 1.54;
	font-weight: 400;
	font-size: 26px;
}

.quote-classic-wrap .heading-4 + p {
	margin-top: 15px;
}

.quote-classic-wrap:after {
	content: '';
	position: absolute;
	left: 25px;
	top: 0;
	width: 3px;
	height: 103%;
	background-color: #292f35;
}

@media (min-width: 1200px) {
	.quote-classic-wrap:after {
		left: 0;
	}
}

.quote-classic-wrap:before {
	content: '“';
	font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 36px;
	line-height: 1;
	font-weight: 700;
	position: absolute;
	top: -20px;
	left: 25px;
	color: #292f35;
}

@media (min-width: 1200px) {
	.quote-classic-wrap:before {
		left: 45px;
		top: 3px;
	}
}

/** @section Thumbnails */
.figure-light figcaption {
	padding-top: 10px;
	color: #b7b7b7;
}

/** @section Breadcrumbs */
.breadcrumbs-custom {
	position: relative;
	padding: 35px 0 35px;
	text-align: center;
	background-color: #cccccc;
	background-position: center;
}

.breadcrumbs-custom-path {
	margin-left: -8px;
	margin-right: -8px;
}

.breadcrumbs-custom-path > * {
	padding-left: 8px;
	padding-right: 8px;
}

.breadcrumbs-custom-path a {
	display: inline;
	vertical-align: middle;
}

.breadcrumbs-custom-path a, .breadcrumbs-custom-path a:active, .breadcrumbs-custom-path a:focus {
	color: #c4eeec;
	font-size: 14px;
}

.breadcrumbs-custom-path li {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	text-transform: uppercase;
	line-height: 1.7;
	font-size: 14px;
	font-weight: 100;
	font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	letter-spacing: .01em;
}

.breadcrumbs-custom-path li::after {
	content: '';
	position: absolute;
	top: 56%;
	right: -3px;
	display: inline-block;
	transform: translateY(-50%);
	background-color: #ffffff;
	width: 1px;
	height: 14px;
}

.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-title {
	letter-spacing: .01em;
}

@media (min-width: 576px) {
	.breadcrumbs-custom {
		margin-left: -30px;
		margin-right: -30px;
	}
	.breadcrumbs-custom > * {
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media (min-width: 992px) {
	.breadcrumbs-custom {
		padding: 120px 0 30px;
	}
}

/** @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: #c4eeec;
	border-color: #c4eeec;
}

.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: #c4eeec;
	border-color: #c4eeec;
}

.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: 50px 0 0 0;
	background: #1e2227;
}

@media (min-width: 1200px) {
	.footer-classic {
		margin-top: 80px;
		padding-top: 0;
	}
}

.footer-classic h2 + h5 {
	margin-top: 10px;
}

@media (min-width: 1200px) {
	.footer-classic h2 + h5 {
		margin-top: 30px;
	}
}

.footer-classic * + .subscribe-form {
	margin-top: 15px;
}

@media (min-width: 1200px) {
	.footer-classic * + .subscribe-form {
		margin-top: 25px;
	}
}

.footer-classic .footer-classic_subscribe {
	text-align: center;
}

@media (min-width: 992px) {
	.footer-classic .footer-classic_subscribe {
		text-align: left;
	}
}

@media (min-width: 1200px) {
	.footer-classic .footer-classic_subscribe {
		padding-bottom: 50px;
		padding-top: 80px;
		text-align: left;
	}
}

.footer-classic .footer-classic_subscribe .subscribe-form .form-input, .footer-classic .footer-classic_subscribe .subscribe-form .form-label {
	color: #989ea6;
}

.footer-classic .footer-media {
	box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.12);
}

@media (min-width: 1200px) {
	.footer-classic .footer-media {
		transform: translateY(-80px);
	}
}

.footer-classic .footer-classic-aside {
	background-color: #191d20;
	padding: 35px 0;
	margin-top: 50px;
}

@media (min-width: 1200px) {
	.footer-classic .footer-classic-aside {
		margin-top: 0;
	}
}

@media (min-width: 768px) {
	.footer-classic .footer-classic-aside {
		padding: 17px 0;
	}
}

.footer-classic .footer-classic-aside .social-list {
	justify-content: center;
}

@media (min-width: 768px) {
	.footer-classic .footer-classic-aside .social-list {
		justify-content: flex-end;
	}
}

.footer-classic .footer-classic-aside__group {
	display: flex;
	align-items: center;
	margin-left: -8px;
	margin-top: -15px;
	flex-direction: column;
	justify-content: center;
}

@media (min-width: 768px) {
	.footer-classic .footer-classic-aside__group {
		flex-direction: row;
		justify-content: flex-start;
	}
}

.footer-classic .footer-classic-aside__group > * {
	margin-top: 15px;
	margin-left: 8px;
}

.footer-classic .footer-classic-aside__group .brand img {
	width: 157px;
}

.footer-classic .footer-classic-aside .social-list li a {
	background-color: #262b31;
	width: 30px;
	height: 30px;
}

.footer-classic .footer-classic-aside .social-list li a:hover {
	color: #ffffff;
	background-color: #424b56;
}

/** @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;
}

@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 #c4eeec;
	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: 40px;
	color: #1e2227;
	background: #c4eeec;
	overflow: hidden;
	text-align: center;
	text-decoration: none;
	transition: .45s all ease-in-out;
	transform: translate3d(0, 120px, 0);
	border-radius: 50%;
}

.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: 60px;
	}
}

/** @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: #ffffff;
}

.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: #cccccc;
	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: #2c343b;
	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: #2c343b;
	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: #1e2227;
}

.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.rd-navbar {
	background-color: transparent;
}

.rd-navbar-static .rd-nav-item {
	display: inline-block;
}

.rd-navbar-static .rd-nav-item > .rd-nav-link {
	position: relative;
	display: inline-block;
}

.rd-navbar-static .rd-nav-item > .rd-nav-link:before {
	content: '';
	position: absolute;
	top: -8px;
	left: 0;
	width: 0;
	height: 3px;
	background-color: #c4eeec;
	opacity: 0;
	transition: all ease .25s;
}

.rd-navbar-static .rd-nav-item.focus .rd-nav-link, .rd-navbar-static .rd-nav-item.opened .rd-nav-link {
	color: #ffffff;
	background: transparent;
}

.rd-navbar-static .rd-nav-item.focus .rd-nav-link:before, .rd-navbar-static .rd-nav-item.opened .rd-nav-link:before {
	transition: all ease .25s;
	width: 100%;
	opacity: 1;
}

.rd-navbar-static .rd-nav-item.focus > .rd-navbar-submenu-toggle, .rd-navbar-static .rd-nav-item.opened > .rd-navbar-submenu-toggle {
	color: #ffffff;
}

.rd-navbar-static .rd-nav-item.active .rd-nav-link, .rd-navbar-static .rd-nav-item:hover .rd-nav-link {
	color: #ffffff;
	background: transparent;
}

.rd-navbar-static .rd-nav-item.active .rd-nav-link:before, .rd-navbar-static .rd-nav-item:hover .rd-nav-link:before {
	transition: all ease .25s;
	width: 100%;
	opacity: 1;
}

.rd-navbar-static .rd-nav-item.active > .rd-navbar-submenu-toggle, .rd-navbar-static .rd-nav-item:hover > .rd-navbar-submenu-toggle {
	color: #ffffff;
}

.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 {
	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: #ffffff;
}

.rd-navbar-static .rd-nav-item > .rd-navbar-submenu {
	margin-top: 20px;
}

.rd-navbar-static .rd-nav-item + .rd-nav-item {
	margin-left: 38px;
}

@media (min-width: 1200px) {
	.rd-navbar-static .rd-nav-item + .rd-nav-item {
		margin-left: 45px;
	}
}

.rd-navbar-static .rd-nav-link {
	position: relative;
	display: inline-block;
	color: #ffffff;
	font-size: 16px;
	line-height: 1.2;
	transition: .25s;
}

.rd-navbar-static .rd-nav-link:hover {
	color: #ffffff;
}

.rd-navbar-static .rd-menu {
	z-index: 15;
	position: absolute;
	display: block;
	margin-top: 22px;
	visibility: hidden;
	opacity: 0;
	text-align: left;
	border: none;
	transform: translate3d(0, 30px, 0);
}

.rd-navbar-static .rd-navbar-dropdown {
	position: absolute;
	left: 0;
	width: 270px;
	padding: 15px;
	background: #1e2227;
	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.focus .rd-dropdown-link, .rd-navbar-static .rd-dropdown-item.opened .rd-dropdown-link {
	color: #c4eeec;
}

.rd-navbar-static .rd-dropdown-link {
	color: #9b9b9b;
}

.rd-navbar-static .rd-dropdown-link:hover {
	color: #c4eeec;
}

.rd-navbar-static .rd-navbar-dropdown li > a,
.rd-navbar-static .rd-megamenu-list li > a {
	position: relative;
	left: -3px;
	display: flex;
	padding: 1px 14px 1px 0;
	text-align: left;
}

.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: #9b9b9b;
}

.rd-navbar-static .rd-navbar-dropdown li > a:hover,
.rd-navbar-static .rd-megamenu-list li > a:hover {
	color: #c4eeec;
}

.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-dropdown li > a::before,
.rd-navbar-static .rd-megamenu-list li > a::before {
	position: relative;
	top: -1px;
	left: -6px;
	display: inline-block;
	content: '\f105';
	font-family: 'FontAwesome';
	font-size: inherit;
	line-height: inherit;
	color: #c4eeec;
	opacity: 0;
	visibility: hidden;
}

.rd-navbar-static .rd-navbar-dropdown li.focus > a,
.rd-navbar-static .rd-navbar-dropdown li.opened > a,
.rd-navbar-static .rd-navbar-dropdown li > a:hover,
.rd-navbar-static .rd-megamenu-list li.focus > a,
.rd-navbar-static .rd-megamenu-list li.opened > a,
.rd-navbar-static .rd-megamenu-list li > a:hover {
	left: 0;
	padding-left: 14px;
	padding-right: 0;
}

.rd-navbar-static .rd-navbar-dropdown li.focus > a::before,
.rd-navbar-static .rd-navbar-dropdown li.opened > a::before,
.rd-navbar-static .rd-navbar-dropdown li > a:hover::before,
.rd-navbar-static .rd-megamenu-list li.focus > a::before,
.rd-navbar-static .rd-megamenu-list li.opened > a::before,
.rd-navbar-static .rd-megamenu-list li > a:hover::before {
	left: -7px;
	opacity: 1;
	visibility: visible;
}

.rd-navbar-static .rd-navbar-megamenu {
	display: flex;
	left: 0;
	width: 100%;
	max-width: 1200px;
	padding: 30px 40px;
	background: #1e2227;
}

.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 #ffffff;
	color: #ffffff;
}

.rd-navbar-static .rd-megamenu-title a, .rd-navbar-static .rd-megamenu-title a:focus, .rd-navbar-static .rd-megamenu-title a:active {
	color: #ffffff;
}

.rd-navbar-static .rd-megamenu-title a:hover {
	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: #000000;
	background: transparent;
}

.rd-navbar-static .rd-megamenu-list-link:hover {
	color: #c4eeec;
	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: 50%;
	transform: translateY(-50%);
	right: 37px;
	width: 700px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	margin-top: 0;
	z-index: 2;
}

.rd-navbar-static * + .rd-navbar-search {
	margin-left: 30px;
}

.rd-navbar-static .rd-navbar-search {
	padding-left: 28px;
	position: relative;
}

.rd-navbar-static .rd-navbar-search .rd-search .form-input {
	min-height: 40px;
	text-transform: uppercase;
	letter-spacing: .01em;
	color: #151515;
}

.rd-navbar-static .rd-navbar-search .rd-search .form-label {
	text-transform: uppercase;
	letter-spacing: .01em;
	color: #151515;
}

.rd-navbar-static .rd-navbar-search:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 22px;
	width: 1px;
	background-color: rgba(255, 255, 255, 0.6);
}

.rd-navbar-static .rd-navbar-search-toggle {
	display: inline-flex;
	color: #ffffff;
	font-weight: 900;
	border: 1px solid transparent;
	border-radius: 50%;
	transition: all ease .3s;
}

.rd-navbar-static .rd-navbar-search-toggle span {
	display: inline-block;
	position: relative;
	width: 32px;
	height: 32px;
	font-size: 14px;
	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: "Linearicons";
}

.rd-navbar-static .rd-navbar-search-toggle span::after {
	content: "";
	transform: rotate(-90deg) scale(0.4);
	opacity: 0;
	visibility: hidden;
	font-family: "Linearicons";
}

.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: #c4eeec;
	border: 1px solid #c4eeec;
	transition: all ease .3s;
}

.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: #1e2227;
}

.rd-navbar-static .rd-navbar-submenu .rd-navbar-submenu-toggle {
	color: #ffffff;
}

.rd-navbar-static .rd-navbar--has-dropdown {
	position: relative;
}

.rd-navbar-static .rd-navbar-submenu .rd-menu .rd-dropdown-item .rd-dropdown-link, .rd-navbar-static .rd-navbar-submenu .rd-menu .rd-dropdown-item .rd-dropdown-link:focus, .rd-navbar-static .rd-navbar-submenu .rd-menu .rd-dropdown-item .rd-dropdown-link:active, .rd-navbar-static .rd-navbar-submenu .rd-menu .rd-dropdown-item .rd-megamenu-list-link, .rd-navbar-static .rd-navbar-submenu .rd-menu .rd-dropdown-item .rd-megamenu-list-link:focus, .rd-navbar-static .rd-navbar-submenu .rd-menu .rd-dropdown-item .rd-megamenu-list-link:active, .rd-navbar-static .rd-navbar-submenu .rd-menu .rd-megamenu-item .rd-dropdown-link, .rd-navbar-static .rd-navbar-submenu .rd-menu .rd-megamenu-item .rd-dropdown-link:focus, .rd-navbar-static .rd-navbar-submenu .rd-menu .rd-megamenu-item .rd-dropdown-link:active, .rd-navbar-static .rd-navbar-submenu .rd-menu .rd-megamenu-item .rd-megamenu-list-link, .rd-navbar-static .rd-navbar-submenu .rd-menu .rd-megamenu-item .rd-megamenu-list-link:focus, .rd-navbar-static .rd-navbar-submenu .rd-menu .rd-megamenu-item .rd-megamenu-list-link:active {
	color: #ffffff;
}

.rd-navbar-static .rd-navbar-submenu .rd-menu .rd-dropdown-item .rd-dropdown-link:hover, .rd-navbar-static .rd-navbar-submenu .rd-menu .rd-dropdown-item .rd-megamenu-list-link:hover, .rd-navbar-static .rd-navbar-submenu .rd-menu .rd-megamenu-item .rd-dropdown-link:hover, .rd-navbar-static .rd-navbar-submenu .rd-menu .rd-megamenu-item .rd-megamenu-list-link:hover {
	color: #c4eeec;
}

/*

*

* 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: 160px;
	max-height: 58px;
	width: auto;
	height: auto;
}

.rd-navbar-fixed .rd-navbar-panel {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 1080;
	display: flex;
	align-items: center;
	height: 56px;
	padding: 4px;
}

.rd-navbar-fixed .rd-navbar-nav-wrap {
	position: fixed;
	left: 0;
	top: -56px;
	bottom: -56px;
	z-index: 1079;
	width: 270px;
	padding: 112px 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: white;
	border: none;
	border-radius: 0;
	opacity: .2;
}

.rd-navbar-fixed .rd-navbar-nav-wrap::-webkit-scrollbar-track {
	background: #c4eeec;
	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;
	text-transform: uppercase;
	font-weight: 500;
}

.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;
	color: #ffffff;
}

.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: 5px;
}

.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: 3px 0px 5px 0px rgba(255, 255, 255, 0.08);
	background: #1e2227;
}

.rd-navbar-fixed .rd-navbar-nav-wrap {
	color: #ffffff;
	background: #1e2227;
	border: #1e2227;
	box-shadow: 3px 0px 5px 0px rgba(255, 255, 255, 0.08);
}

.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: #1e2227;
	background: #ffffff;
}

.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: #1e2227;
}

.rd-navbar-fixed .rd-nav-link {
	color: #9b9b9b;
}

.rd-navbar-fixed .rd-megamenu-list > li > a,
.rd-navbar-fixed .rd-navbar-dropdown > li > a {
	color: #9b9b9b;
}

.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: #1e2227;
	background: #ffffff;
}

.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: #c4eeec;
}

.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: #c4eeec;
}

.rd-navbar-fixed .rd-navbar-search-toggle {
	color: #ffffff;
}

.rd-navbar-fixed .rd-navbar-search-toggle:hover {
	color: #c4eeec;
}

.rd-navbar-fixed .rd-navbar-collapse {
	background-color: #ffffff;
	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: 1200px;
	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: #c4eeec;
}

.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: #c4eeec;
}

.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: #c4eeec;
}

.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;
	left: -3px;
	display: flex;
	padding: 1px 14px 1px 0;
	text-align: left;
}

.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: #9b9b9b;
}

.rd-navbar-sidebar .rd-navbar-dropdown li > a:hover,
.rd-navbar-sidebar .rd-megamenu-list li > a:hover {
	color: #c4eeec;
}

.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-dropdown li > a::before,
.rd-navbar-sidebar .rd-megamenu-list li > a::before {
	position: relative;
	top: -1px;
	left: -6px;
	display: inline-block;
	content: '\f105';
	font-family: 'FontAwesome';
	font-size: inherit;
	line-height: inherit;
	color: #c4eeec;
	opacity: 0;
	visibility: hidden;
}

.rd-navbar-sidebar .rd-navbar-dropdown li.focus > a,
.rd-navbar-sidebar .rd-navbar-dropdown li.opened > a,
.rd-navbar-sidebar .rd-navbar-dropdown li > a:hover,
.rd-navbar-sidebar .rd-megamenu-list li.focus > a,
.rd-navbar-sidebar .rd-megamenu-list li.opened > a,
.rd-navbar-sidebar .rd-megamenu-list li > a:hover {
	left: 0;
	padding-left: 14px;
	padding-right: 0;
}

.rd-navbar-sidebar .rd-navbar-dropdown li.focus > a::before,
.rd-navbar-sidebar .rd-navbar-dropdown li.opened > a::before,
.rd-navbar-sidebar .rd-navbar-dropdown li > a:hover::before,
.rd-navbar-sidebar .rd-megamenu-list li.focus > a::before,
.rd-navbar-sidebar .rd-megamenu-list li.opened > a::before,
.rd-navbar-sidebar .rd-megamenu-list li > a:hover::before {
	left: -7px;
	opacity: 1;
	visibility: visible;
}

.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: #c4eeec;
}

.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 .rd-navbar-nav {
	font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.rd-navbar-classic .rd-navbar-nav .rd-nav-link {
	font-weight: 500;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: .1em;
}

.rd-navbar-classic.rd-navbar-static {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.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: 1170px;
	margin-left: auto;
	margin-right: auto;
}

.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: 24px 0 26px 0;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-brand img {
	width: auto;
	height: auto;
	max-width: 250px;
	max-height: 200px;
}

.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-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 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");
	font-weight: 400;
	font-style: normal;
}

:root {
	--swiper-theme-color: #ffffff;
}

.swiper-container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	/* Fix of Webkit flickering */
	z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
	transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
	touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
	touch-action: pan-x;
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
}

.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);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
	transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
	background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	/* For Firefox */
	-ms-overflow-style: none;
	/* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
	scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
	scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
	content: '';
	flex-shrink: 0;
	order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
	margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .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-centered.swiper-vertical > .swiper-wrapper::before {
	width: 100%;
	min-width: 1px;
	height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: center center;
	scroll-snap-stop: always;
}

.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-color: var(--swiper-theme-color);

  */
}

.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	top: 50%;
	width: calc(var(--swiper-navigation-size) / 44 * 27);
	height: var(--swiper-navigation-size);
	margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
	opacity: 0;
	cursor: auto;
	pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
	display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	letter-spacing: 0;
	font-variant: initial;
	line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: 10px;
	right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: 10px;
	left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	content: 'next';
}

.swiper-button-lock {
	display: none;
}

:root {
	/*

  --swiper-pagination-color: var(--swiper-theme-color);

  --swiper-pagination-bullet-size: 8px;

  --swiper-pagination-bullet-width: 8px;

  --swiper-pagination-bullet-height: 8px;

  --swiper-pagination-bullet-inactive-color: #fff;

  --swiper-pagination-bullet-inactive-opacity: 0.64;

  --swiper-pagination-bullet-opacity: 1;

  --swiper-pagination-bullet-horizontal-gap: 5px;

  --swiper-pagination-bullet-vertical-gap: 10px;

  */
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	transition: 300ms opacity;
	transform: translate3d(0, 0, 0);
	z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.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: 10px;
	left: 0;
	width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(0.33);
	position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .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: 50%;
	background: var(--swiper-pagination-bullet-inactive-color, #fff);
	opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.64);
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.swiper-pagination-bullet: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: 10px;
	top: 50%;
	transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: var(--swiper-pagination-bullet-vertical-gap, 10px) 0;
	display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
	background: rgba(0, 0, 0, 0.25);
	position: absolute;
}

.swiper-pagination-progressbar .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 .swiper-pagination-progressbar-fill {
	transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0;
}

.swiper-pagination-lock {
	display: none;
}

/* Scrollbar */
.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
	display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%;
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	left: 0;
	top: 0;
}

.swiper-scrollbar-cursor-drag {
	cursor: move;
}

.swiper-scrollbar-lock {
	display: none;
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.swiper-slide-zoomed {
	cursor: move;
}

/* Preloader */
:root {
	/*

  --swiper-preloader-color: var(--swiper-theme-color);

  */
}

.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-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.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);
	}
}

/* a11y */
.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}

.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-fade .swiper-slide {
	pointer-events: none;
	transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-cube {
	overflow: visible;
}

.swiper-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	transform-origin: 0 0;
	width: 100%;
	height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
	transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
	pointer-events: auto;
	visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 100%;
	opacity: 0.6;
	z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
	content: '';
	background: #000;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	filter: blur(50px);
}

.swiper-flip {
	overflow: visible;
}

.swiper-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
	transition-property: transform, opacity, height;
}

.swiper-cards {
	overflow: visible;
}

.swiper-cards .swiper-slide {
	transform-origin: center bottom;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
}

.swiper-container {
	display: flex;
}

.swiper-container .swiper-wrapper {
	height: auto;
}

.swiper-slide {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	white-space: nowrap;
}

.swiper-slide-caption {
	width: 100%;
	white-space: normal;
}

.swiper-slider-1 {
	min-height: 44.27083vw;
}

.swiper-slider-1 .swiper-button-prev,
.swiper-slider-1 .swiper-button-next {
	display: none;
}

@media (min-width: 992px) {
	.swiper-slider-1 .swiper-wrapper .swiper-slide {
		align-items: center;
	}
}

@media (min-width: 992px) {
	.swiper-slider-1 .swiper-wrapper .swiper-slide-caption {
		padding-top: 120px;
	}
}

@media (min-width: 1200px) {
	.swiper-slider-1 .swiper-wrapper .swiper-slide-caption {
		padding-top: 170px;
	}
}

.swiper-slider-1 .swiper-pagination-horizontal {
	bottom: 20px;
}

@media (min-width: 768px) {
	.swiper-slider-1 .swiper-pagination-horizontal {
		bottom: 30px;
	}
}

.swiper-slider-1 .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
}

.swiper-slider-1 .intro-box {
	margin-bottom: 40px;
}

/** @section Google Map */
.google-map-markers {
	display: none;
}

.google-map-container {
	width: 100%;
}

.google-map {
	height: 250px;
	width: 100%;
	height: 250px;
}

@media (min-width: 1200px) {
	.google-map {
		height: 300px;
	}
}

/** @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: #737576;
	background: #f5f5f5;
	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", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 30px;
	text-transform: uppercase;
	color: #151515;
}

.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: #c4eeec;
}

.rd-search-results-live .search-error {
	font-size: 14px;
	line-height: 1.6;
}

.rd-search-results-live .search-title {
	position: relative;
	font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #151515;
}

.rd-search-results-live .search-title a:hover {
	color: #c4eeec;
}

.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: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
	color: #ffffff;
	background: #1e2227;
}

.rd-search-results-live .search-submit:hover {
	color: #1e2227;
	background: #c4eeec;
}

.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 .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: 16px;
	color: #9b9b9b;
}

.rd-search-results .search-list-item::before {
	content: counter(li, decimal-leading-zero) ".";
	counter-increment: li;
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 14px;
	line-height: inherit;
	font-weight: 500;
	color: #000000;
}

.rd-search-results .search-list-item + .search-list-item {
	margin-top: 40px;
}

.rd-search-results .search-title {
	font-size: 16px;
	color: #000000;
}

.rd-search-results .search {
	color: #ffffff;
	padding: 0 .25em;
	background: #c4eeec;
}

.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;
}

@media (min-width: 768px) {
	.rd-search-results .search-title {
		font-size: 18px;
	}
	.rd-search-results .search-list-item::before {
		top: 3px;
		font-size: 16px;
	}
	.rd-search-results * + p {
		margin-top: 12px;
	}
}

@media (min-width: 992px) {
	.rd-search-results .search-list-item {
		padding-left: 40px;
	}
}

* + .rd-search-results {
	margin-top: 40px;
}

@media (min-width: 768px) {
	* + .rd-search-results {
		margin-top: 55px;
	}
}

.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: #c4eeec;
}

.rd-search.rd-search-inline {
	position: relative;
}

.rd-search.rd-search-inline .form-input {
	padding-right: 50px;
}

.rd-search.rd-search-inline .button-link {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	right: 0;
	margin: 0;
	font-size: 21px;
	color: #cccccc;
	transition: .33s;
}

.rd-search.rd-search-inline .button-link::before {
	display: block;
	margin: auto;
}

.rd-search.rd-search-inline .button-link:hover {
	color: #c4eeec;
}

.rd-search.rd-search-inline.form-sm .form-input {
	padding-right: 40px;
}

.rd-search.rd-search-inline.form-sm .button-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 .button-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;
	border: 0;
}

.tab-content > .tab-pane {
	display: block;
	visibility: hidden;
	height: 0;
	overflow: hidden;
}

.tab-content > .active {
	visibility: visible;
	height: auto;
	overflow: visible;
}

* + .tabs-horizontal.tabs-corporate {
	margin-top: 25px;
}

* + .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: #737576;
		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: #c4eeec;
		border-color: #c4eeec;
	}
}

.tabs-corporate .nav-tabs {
	position: relative;
	border: 1px solid #e5e7e9;
}

.tabs-corporate .nav-item {
	margin: -1px;
}

.tabs-corporate .nav-link {
	padding: 10px 10px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	color: #737576;
	background: transparent;
	border-bottom: 1px solid #e5e7e9;
	text-align: center;
	vertical-align: middle;
}

.tabs-corporate .nav-link:first-child {
	border-top: 1px solid #e5e7e9;
}

.tabs-corporate .nav-link:hover,
.tabs-corporate .nav-link.active {
	color: #ffffff;
	background: #c4eeec;
	border-color: #c4eeec;
}

.tabs-corporate .tab-content {
	padding: 30px 0 0;
}

@media (min-width: 768px) {
	.tabs-horizontal.tabs-corporate .nav-tabs {
		position: relative;
		width: 100%;
		display: block;
		transform: translate3d(0, -10px, 0);
		margin-bottom: -10px;
		margin-left: -5px;
		margin-right: -5px;
		text-align: center;
		border: 0;
		will-change: transform;
	}
	.tabs-horizontal.tabs-corporate .nav-tabs > * {
		margin-top: 10px;
		padding-left: 5px;
		padding-right: 5px;
	}
	.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);
		border-color: #c4eeec;
		background-color: transparent;
	}
	.tabs-horizontal.tabs-corporate .nav-link.active,
	.tabs-horizontal.tabs-corporate .nav-link:hover {
		color: #ffffff;
		border-color: #c4eeec;
		background-color: #c4eeec;
	}
	.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: #c4eeec;
		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: 20px 30px 0;
	}
	.tabs-vertical.tabs-corporate .tab-content {
		padding: 0 0 0 45px;
	}
}

.tab-style-1 .nav-style-1 {
	justify-content: flex-start;
	flex-wrap: wrap;
	flex-direction: column;
}

@media (min-width: 768px) {
	.tab-style-1 .nav-style-1 {
		flex-direction: row;
		margin-top: -5px;
		margin-left: -5px;
	}
	.tab-style-1 .nav-style-1 > * {
		margin-top: 5px;
		margin-left: 5px;
	}
}

@media (min-width: 992px) {
	.tab-style-1 .nav-style-1 {
		margin-top: -10px;
		margin-left: -10px;
	}
	.tab-style-1 .nav-style-1 > * {
		margin-top: 10px;
		margin-left: 10px;
	}
}

@media (min-width: 992px) {
	.tab-style-1 .nav-style-1 .nav-item {
		min-width: 170px;
	}
}

.tab-style-1 .nav-style-1 .nav-item .nav-link {
	padding: 17px 20px;
	line-height: 1;
	letter-spacing: normal;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: #292f35;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid #c4c4c4;
	border-radius: 1px;
}

.tab-style-1 .nav-style-1 .nav-item .nav-link.active, .tab-style-1 .nav-style-1 .nav-item .nav-link:hover {
	border-color: #c4eeec;
	background-color: #c4eeec;
}

.tab-style-1 .nav-style-1 .nav-item .nav-link .icon {
	display: inline-block;
	margin-right: 15px;
	font-size: 20px;
	color: #292f35;
}

.tab-style-1 .nav-style-1 .nav-item + .nav-item .nav-link {
	border-top-width: 0px;
}

@media (min-width: 768px) {
	.tab-style-1 .nav-style-1 .nav-item + .nav-item .nav-link {
		border-top-width: 1px;
	}
}

.tab-style-1 .tab-content {
	padding: 30px 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: #c4eeec;
	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: #737576;
	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;
	}
}

.card-classic {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 370px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 768px) {
	.card-classic {
		align-items: flex-start;
		text-align: left;
	}
}

.card-classic p {
	width: 100%;
}

.card-classic__media {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
	display: block;
	overflow: hidden;
	position: relative;
	background-color: #ffffff;
	margin-bottom: 20px;
}

.card-classic__media img {
	transition: all ease .25s;
}

.card-classic__media:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}

.card-classic__media:hover img {
	opacity: 0.7;
	transition: all ease .25s;
}

@media (min-width: 1200px) {
	.card-classic__media {
		margin-bottom: 25px;
	}
}

.card-classic * + p {
	margin-top: 15px;
}

.card-classic * + .button {
	margin-top: 15px;
}

/** @section Tooltop Custom */
.tooltip {
	font-size: 16px;
	line-height: 1.2;
	z-index: 20;
}

.tooltip.bs-tooltip-top .arrow::before {
	border-top-color: #c4eeec;
}

.tooltip.bs-tooltip-bottom .arrow::before {
	border-bottom-color: #c4eeec;
}

.tooltip-inner {
	color: #1e2227;
}

/** @section Counter */
.step-list .divider-step {
	margin-bottom: 26px;
}

@media (min-width: 576px) {
	.step-list .box-counter {
		text-align: left;
	}
}

.step-list .box-counter .box-counter-main {
	font-size: 36px;
	font-weight: 600;
	line-height: 1;
}

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

.step-list .box-counter .box-counter-title {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 18px;
}

.step-list .box-counter .box-counter-divider {
	display: none;
}

/** @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: #c4eeec;
	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: #c4eeec;
	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;
	justify-content: center;
	align-items: center;
	margin-left: -5px;
	margin-right: -5px;
	line-height: 1.2;
	text-align: center;
}

.countdown-block {
	position: relative;
	flex: 0 1 auto;
	padding: 0 5px;
}

@media (max-width: 767.98px) {
	.countdown-block {
		max-width: 25%;
	}
}

.countdown-block-seconds {
	display: none;
}

.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: #ffffff;
	stroke-width: 5px;
}

.countdown-circle-fg {
	stroke: #c4eeec;
	stroke-width: 10px;
}

.countdown-counter {
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	color: #111111;
}

.countdown-title {
	font-size: 2.5vw;
	line-height: 1.2;
	text-transform: uppercase;
	color: #737576;
}

@media (min-width: 576px) {
	.countdown-title {
		font-size: 13px;
	}
}

* + .countdown {
	margin-top: 35px;
}

.countdown + * {
	margin-top: 35px;
}

@media (min-width: 576px) {
	.countdown-block-seconds {
		display: block;
	}
}

@media (min-width: 768px) {
	.countdown {
		margin-left: -15px;
		margin-right: -15px;
	}
	.countdown-block {
		padding: 0 15px;
	}
	.countdown-counter {
		font-size: 34px;
	}
	.countdown-circle-bg {
		stroke-width: 3px;
	}
	.countdown-circle-fg {
		stroke-width: 5px;
	}
}

@media (min-width: 992px) {
	.countdown-counter {
		font-size: 48px;
	}
}

.context-dark .countdown-counter, .bg-gray-700 .countdown-counter, .bg-primary .countdown-counter {
	color: #ffffff;
}

/** @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);
	transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	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,
.owl-carousel .owl-dots {
	-webkit-tap-highlight-color: transparent;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
	display: none;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next,
.owl-carousel .owl-dot {
	cursor: pointer;
	user-select: none;
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	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 {
	touch-action: pan-y;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

.owl-carousel .owl-nav {
	pointer-events: none;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 3px;
	font-size: 40px;
	line-height: 1;
	cursor: pointer;
	pointer-events: auto;
	background: #c4eeec;
	color: #151515;
}

.owl-carousel .owl-prev::before, .owl-carousel .owl-prev::after,
.owl-carousel .owl-next::before,
.owl-carousel .owl-next::after {
	display: block;
	font-family: "FontAwesome";
}

.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover {
	text-decoration: none;
	background: #151515;
	color: #c4eeec;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
	opacity: .5;
	cursor: default;
}

.owl-carousel .owl-prev {
	left: 10px;
}

.owl-carousel .owl-prev::before {
	content: '\f104';
}

.owl-carousel .owl-next {
	right: 10px;
}

.owl-carousel .owl-next::before {
	content: '\f105';
}

.owl-carousel .owl-dots {
	text-align: center;
}

.owl-carousel .owl-dot {
	display: inline-block;
	zoom: 1;
	margin: 0 5px;
}

.owl-carousel .owl-dot span {
	width: 10px;
	height: 10px;
	background: #151515;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 200ms ease;
	border-radius: 5px;
}

.owl-carousel .owl-dot.active span, .owl-carousel .owl-dot:hover span {
	background: #c4eeec;
}

/** @section Lightgallery */
@font-face {
	font-family: 'lg';
	src: url("../fonts/lg.eot?n1z373");
	src: url("../fonts/lg.eot?#iefixn1z373") format("embedded-opentype"), url("../fonts/lg.woff?n1z373") format("woff"), url("../fonts/lg.ttf?n1z373") format("truetype"), url("../fonts/lg.svg?n1z373#lg") format("svg");
	font-weight: normal;
	font-style: normal;
}

.lg-icon {
	font-family: 'lg';
	speak: none;
	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-actions .lg-next, .lg-actions .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: 1090;
	border: none;
	outline: none;
}

.lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
	pointer-events: none;
	opacity: 0.5;
}

.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
	color: #FFF;
}

.lg-actions .lg-next {
	right: 20px;
}

.lg-actions .lg-next:before {
	content: "\e095";
}

.lg-actions .lg-prev {
	left: 20px;
}

.lg-actions .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: 1092;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.45);
}

.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;
	-webkit-transition: color 0.2s linear;
	-o-transition: color 0.2s linear;
	transition: color 0.2s linear;
}

.lg-toolbar .lg-icon:hover {
	color: #FFF;
}

.lg-toolbar .lg-close:after {
	content: "\e070";
}

.lg-toolbar .lg-download:after {
	content: "\e0f2";
}

.lg-sub-html {
	background-color: rgba(0, 0, 0, 0.45);
	bottom: 0;
	color: #EEE;
	font-size: 16px;
	left: 0;
	padding: 10px 40px;
	position: fixed;
	right: 0;
	text-align: center;
	z-index: 1090;
}

.lg-sub-html h4 {
	margin: 0;
	font-size: 13px;
	font-weight: bold;
}

.lg-sub-html p {
	font-size: 12px;
	margin: 5px 0 0;
}

#lg-counter {
	color: #999;
	display: inline-block;
	font-size: 16px;
	padding-left: 20px;
	padding-top: 12px;
	vertical-align: middle;
}

.lg-toolbar, .lg-prev, .lg-next {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
	-moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
	-o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
	transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
}

.lg-hide-items .lg-prev {
	opacity: 0;
	-webkit-transform: translate3d(-10px, 0, 0);
	transform: translate3d(-10px, 0, 0);
}

.lg-hide-items .lg-next {
	opacity: 0;
	-webkit-transform: translate3d(10px, 0, 0);
	transform: translate3d(10px, 0, 0);
}

.lg-hide-items .lg-toolbar {
	opacity: 0;
	-webkit-transform: translate3d(0, -10px, 0);
	transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
	-webkit-transform: scale3d(0.5, 0.5, 0.5);
	transform: scale3d(0.5, 0.5, 0.5);
	opacity: 0;
	-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;
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	opacity: 1;
}

.lg-outer .lg-thumb-outer {
	background-color: #0D0A0A;
	bottom: 0;
	position: absolute;
	width: 100%;
	z-index: 1090;
	max-height: 350px;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	-moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	-o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.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-open .lg-thumb-outer {
	-webkit-transform: translate3d(0, 0%, 0);
	transform: translate3d(0, 0%, 0);
}

.lg-outer .lg-thumb {
	padding: 10px 0;
	height: 100%;
	margin-bottom: -5px;
	margin-left: auto;
	margin-right: auto;
}

.lg-outer .lg-thumb-item {
	border-radius: 5px;
	cursor: pointer;
	float: left;
	overflow: hidden;
	height: 100%;
	border: 2px solid #FFF;
	border-radius: 4px;
	margin-bottom: 5px;
}

@media (min-width: 1025px) {
	.lg-outer .lg-thumb-item {
		-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: #c4eeec;
}

.lg-outer .lg-thumb-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lg-outer.lg-has-thumb .lg-item {
	padding-bottom: 120px;
}

.lg-outer.lg-can-toggle .lg-item {
	padding-bottom: 0;
}

.lg-outer.lg-pull-caption-up .lg-sub-html {
	-webkit-transition: bottom 0.25s ease;
	-o-transition: bottom 0.25s ease;
	transition: bottom 0.25s ease;
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
	bottom: 100px;
}

.lg-outer .lg-toogle-thumb {
	background-color: #0D0A0A;
	border-radius: 2px 2px 0 0;
	color: #999;
	cursor: pointer;
	font-size: 24px;
	height: 39px;
	line-height: 27px;
	padding: 5px 0;
	position: absolute;
	right: 20px;
	text-align: center;
	top: -39px;
	width: 50px;
}

.lg-outer .lg-toogle-thumb:after {
	content: "\e1ff";
}

.lg-outer .lg-toogle-thumb:hover {
	color: #FFF;
}

.lg-outer .lg-video-cont {
	display: inline-block;
	vertical-align: middle;
	max-width: 1140px;
	max-height: 100%;
	width: 100%;
	padding: 0 5px;
}

.lg-outer .lg-video {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	position: relative;
}

.lg-outer .lg-video .lg-object {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.lg-outer .lg-video .lg-video-play {
	width: 84px;
	height: 59px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -42px;
	margin-top: -30px;
	z-index: 1090;
	cursor: pointer;
}

.lg-outer .lg-has-iframe .lg-video {
	-webkit-overflow-scrolling: touch;
	overflow: auto;
}

.lg-outer .lg-has-vimeo .lg-video-play {
	background: url("../images/vimeo-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-vimeo:hover .lg-video-play {
	background: url("../images/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}

.lg-outer .lg-has-html5 .lg-video-play {
	background: transparent url("../images/video-play.png") no-repeat scroll 0 0;
	height: 64px;
	margin-left: -32px;
	margin-top: -32px;
	width: 64px;
	opacity: 0.8;
}

.lg-outer .lg-has-html5:hover .lg-video-play {
	opacity: 1;
}

.lg-outer .lg-has-youtube .lg-video-play {
	background: url("../images/youtube-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-youtube:hover .lg-video-play {
	background: url("../images/youtube-play.png") no-repeat scroll 0 -60px transparent;
}

.lg-outer .lg-video-object {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
}

.lg-outer .lg-has-video .lg-video-object {
	visibility: hidden;
}

.lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
	display: none;
}

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
	visibility: visible;
}

.lg-progress-bar {
	background-color: #333;
	height: 5px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1093;
	opacity: 0;
	-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: #c4eeec;
	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-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: 0s;
	transition-duration: 0s;
}

.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	-moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	-o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
	-webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	-moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	-o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s 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 {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
	-moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
	-o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
	transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

#lg-zoom-in:after {
	content: "\e311";
}

#lg-actual-size {
	font-size: 20px;
}

#lg-actual-size:after {
	content: "\e033";
}

#lg-zoom-out {
	opacity: 0.5;
	pointer-events: none;
}

#lg-zoom-out:after {
	content: "\e312";
}

.lg-zoomed #lg-zoom-out {
	opacity: 1;
	pointer-events: auto;
}

.lg-outer .lg-pager-outer {
	bottom: 60px;
	left: 0;
	position: absolute;
	right: 0;
	text-align: center;
	z-index: 1090;
	height: 10px;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
	overflow: visible;
}

.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;
	-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: fixed;
	right: 0;
	top: 0;
	z-index: 1091;
	opacity: 0;
	visibility: hidden;
	-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);
	-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, .lg-outer .lg-dropdown > li:hover .lg-icon {
	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: "\e901";
}

.lg-outer #lg-share-twitter .lg-icon {
	color: #00aced;
}

.lg-outer #lg-share-twitter .lg-icon:after {
	content: "\e904";
}

.lg-outer #lg-share-googleplus .lg-icon {
	color: #dd4b39;
}

.lg-outer #lg-share-googleplus .lg-icon:after {
	content: "\e902";
}

.lg-outer #lg-share-pinterest .lg-icon {
	color: #cb2027;
}

.lg-outer #lg-share-pinterest .lg-icon:after {
	content: "\e903";
}

.lg-css3.lg-zoom-in .lg-item {
	opacity: 0;
}

.lg-css3.lg-zoom-in .lg-item.lg-prev-slide {
	-webkit-transform: scale3d(1.3, 1.3, 1.3);
	transform: scale3d(1.3, 1.3, 1.3);
}

.lg-css3.lg-zoom-in .lg-item.lg-next-slide {
	-webkit-transform: scale3d(1.3, 1.3, 1.3);
	transform: scale3d(1.3, 1.3, 1.3);
}

.lg-css3.lg-zoom-in .lg-item.lg-current {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	opacity: 1;
}

.lg-css3.lg-zoom-in .lg-item.lg-prev-slide, .lg-css3.lg-zoom-in .lg-item.lg-next-slide, .lg-css3.lg-zoom-in .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-zoom-in-big .lg-item {
	opacity: 0;
}

.lg-css3.lg-zoom-in-big .lg-item.lg-prev-slide {
	-webkit-transform: scale3d(2, 2, 2);
	transform: scale3d(2, 2, 2);
}

.lg-css3.lg-zoom-in-big .lg-item.lg-next-slide {
	-webkit-transform: scale3d(2, 2, 2);
	transform: scale3d(2, 2, 2);
}

.lg-css3.lg-zoom-in-big .lg-item.lg-current {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	opacity: 1;
}

.lg-css3.lg-zoom-in-big .lg-item.lg-prev-slide, .lg-css3.lg-zoom-in-big .lg-item.lg-next-slide, .lg-css3.lg-zoom-in-big .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-zoom-out .lg-item {
	opacity: 0;
}

.lg-css3.lg-zoom-out .lg-item.lg-prev-slide {
	-webkit-transform: scale3d(0.7, 0.7, 0.7);
	transform: scale3d(0.7, 0.7, 0.7);
}

.lg-css3.lg-zoom-out .lg-item.lg-next-slide {
	-webkit-transform: scale3d(0.7, 0.7, 0.7);
	transform: scale3d(0.7, 0.7, 0.7);
}

.lg-css3.lg-zoom-out .lg-item.lg-current {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	opacity: 1;
}

.lg-css3.lg-zoom-out .lg-item.lg-prev-slide, .lg-css3.lg-zoom-out .lg-item.lg-next-slide, .lg-css3.lg-zoom-out .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-zoom-out-big .lg-item {
	opacity: 0;
}

.lg-css3.lg-zoom-out-big .lg-item.lg-prev-slide {
	-webkit-transform: scale3d(0, 0, 0);
	transform: scale3d(0, 0, 0);
}

.lg-css3.lg-zoom-out-big .lg-item.lg-next-slide {
	-webkit-transform: scale3d(0, 0, 0);
	transform: scale3d(0, 0, 0);
}

.lg-css3.lg-zoom-out-big .lg-item.lg-current {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	opacity: 1;
}

.lg-css3.lg-zoom-out-big .lg-item.lg-prev-slide, .lg-css3.lg-zoom-out-big .lg-item.lg-next-slide, .lg-css3.lg-zoom-out-big .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-zoom-out-in .lg-item {
	opacity: 0;
}

.lg-css3.lg-zoom-out-in .lg-item.lg-prev-slide {
	-webkit-transform: scale3d(0, 0, 0);
	transform: scale3d(0, 0, 0);
}

.lg-css3.lg-zoom-out-in .lg-item.lg-next-slide {
	-webkit-transform: scale3d(2, 2, 2);
	transform: scale3d(2, 2, 2);
}

.lg-css3.lg-zoom-out-in .lg-item.lg-current {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	opacity: 1;
}

.lg-css3.lg-zoom-out-in .lg-item.lg-prev-slide, .lg-css3.lg-zoom-out-in .lg-item.lg-next-slide, .lg-css3.lg-zoom-out-in .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-zoom-in-out .lg-item {
	opacity: 0;
}

.lg-css3.lg-zoom-in-out .lg-item.lg-prev-slide {
	-webkit-transform: scale3d(2, 2, 2);
	transform: scale3d(2, 2, 2);
}

.lg-css3.lg-zoom-in-out .lg-item.lg-next-slide {
	-webkit-transform: scale3d(0, 0, 0);
	transform: scale3d(0, 0, 0);
}

.lg-css3.lg-zoom-in-out .lg-item.lg-current {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	opacity: 1;
}

.lg-css3.lg-zoom-in-out .lg-item.lg-prev-slide, .lg-css3.lg-zoom-in-out .lg-item.lg-next-slide, .lg-css3.lg-zoom-in-out .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-soft-zoom .lg-item {
	opacity: 0;
}

.lg-css3.lg-soft-zoom .lg-item.lg-prev-slide {
	-webkit-transform: scale3d(1.1, 1.1, 1.1);
	transform: scale3d(1.1, 1.1, 1.1);
}

.lg-css3.lg-soft-zoom .lg-item.lg-next-slide {
	-webkit-transform: scale3d(0.9, 0.9, 0.9);
	transform: scale3d(0.9, 0.9, 0.9);
}

.lg-css3.lg-soft-zoom .lg-item.lg-current {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	opacity: 1;
}

.lg-css3.lg-soft-zoom .lg-item.lg-prev-slide, .lg-css3.lg-soft-zoom .lg-item.lg-next-slide, .lg-css3.lg-soft-zoom .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-scale-up .lg-item {
	opacity: 0;
}

.lg-css3.lg-scale-up .lg-item.lg-prev-slide {
	-moz-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
	-o-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
	-ms-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
	-webkit-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
	transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
}

.lg-css3.lg-scale-up .lg-item.lg-next-slide {
	-moz-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
	-o-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
	-ms-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
	-webkit-transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
	transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
}

.lg-css3.lg-scale-up .lg-item.lg-current {
	-moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	opacity: 1;
}

.lg-css3.lg-scale-up .lg-item.lg-prev-slide, .lg-css3.lg-scale-up .lg-item.lg-next-slide, .lg-css3.lg-scale-up .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-slide-circular .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-circular .lg-item.lg-prev-slide {
	-moz-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
	-o-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
	-ms-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
	-webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
	transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide-circular .lg-item.lg-next-slide {
	-moz-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
	-o-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
	-ms-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
	-webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
	transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.lg-css3.lg-slide-circular .lg-item.lg-current {
	-moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	opacity: 1;
}

.lg-css3.lg-slide-circular .lg-item.lg-prev-slide, .lg-css3.lg-slide-circular .lg-item.lg-next-slide, .lg-css3.lg-slide-circular .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-slide-circular-up .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-circular-up .lg-item.lg-prev-slide {
	-moz-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
	-o-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
	-ms-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
	-webkit-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
	transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
}

.lg-css3.lg-slide-circular-up .lg-item.lg-next-slide {
	-moz-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
	-o-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
	-ms-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
	-webkit-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
	transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
}

.lg-css3.lg-slide-circular-up .lg-item.lg-current {
	-moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	opacity: 1;
}

.lg-css3.lg-slide-circular-up .lg-item.lg-prev-slide, .lg-css3.lg-slide-circular-up .lg-item.lg-next-slide, .lg-css3.lg-slide-circular-up .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-slide-circular-down .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-circular-down .lg-item.lg-prev-slide {
	-moz-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
	-o-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
	-ms-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
	-webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
	transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
}

.lg-css3.lg-slide-circular-down .lg-item.lg-next-slide {
	-moz-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
	-o-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
	-ms-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
	-webkit-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
	transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
}

.lg-css3.lg-slide-circular-down .lg-item.lg-current {
	-moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	opacity: 1;
}

.lg-css3.lg-slide-circular-down .lg-item.lg-prev-slide, .lg-css3.lg-slide-circular-down .lg-item.lg-next-slide, .lg-css3.lg-slide-circular-down .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-slide-circular-vertical .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-circular-vertical .lg-item.lg-prev-slide {
	-moz-transform: scale3d(0, 0, 0) translate3d(0, -100%, 0);
	-o-transform: scale3d(0, 0, 0) translate3d(0, -100%, 0);
	-ms-transform: scale3d(0, 0, 0) translate3d(0, -100%, 0);
	-webkit-transform: scale3d(0, 0, 0) translate3d(0, -100%, 0);
	transform: scale3d(0, 0, 0) translate3d(0, -100%, 0);
}

.lg-css3.lg-slide-circular-vertical .lg-item.lg-next-slide {
	-moz-transform: scale3d(0, 0, 0) translate3d(0, 100%, 0);
	-o-transform: scale3d(0, 0, 0) translate3d(0, 100%, 0);
	-ms-transform: scale3d(0, 0, 0) translate3d(0, 100%, 0);
	-webkit-transform: scale3d(0, 0, 0) translate3d(0, 100%, 0);
	transform: scale3d(0, 0, 0) translate3d(0, 100%, 0);
}

.lg-css3.lg-slide-circular-vertical .lg-item.lg-current {
	-moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	opacity: 1;
}

.lg-css3.lg-slide-circular-vertical .lg-item.lg-prev-slide, .lg-css3.lg-slide-circular-vertical .lg-item.lg-next-slide, .lg-css3.lg-slide-circular-vertical .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-slide-circular-vertical-left .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-circular-vertical-left .lg-item.lg-prev-slide {
	-moz-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
	-o-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
	-ms-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
	-webkit-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
	transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
}

.lg-css3.lg-slide-circular-vertical-left .lg-item.lg-next-slide {
	-moz-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
	-o-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
	-ms-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
	-webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
	transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
}

.lg-css3.lg-slide-circular-vertical-left .lg-item.lg-current {
	-moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	opacity: 1;
}

.lg-css3.lg-slide-circular-vertical-left .lg-item.lg-prev-slide, .lg-css3.lg-slide-circular-vertical-left .lg-item.lg-next-slide, .lg-css3.lg-slide-circular-vertical-left .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-slide-circular-vertical-down .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-circular-vertical-down .lg-item.lg-prev-slide {
	-moz-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
	-o-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
	-ms-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
	-webkit-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
	transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
}

.lg-css3.lg-slide-circular-vertical-down .lg-item.lg-next-slide {
	-moz-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
	-o-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
	-ms-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
	-webkit-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
	transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
}

.lg-css3.lg-slide-circular-vertical-down .lg-item.lg-current {
	-moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	opacity: 1;
}

.lg-css3.lg-slide-circular-vertical-down .lg-item.lg-prev-slide, .lg-css3.lg-slide-circular-vertical-down .lg-item.lg-next-slide, .lg-css3.lg-slide-circular-vertical-down .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-slide-vertical .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-vertical .lg-item.lg-prev-slide {
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}

.lg-css3.lg-slide-vertical .lg-item.lg-next-slide {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

.lg-css3.lg-slide-vertical .lg-item.lg-current {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.lg-css3.lg-slide-vertical .lg-item.lg-prev-slide, .lg-css3.lg-slide-vertical .lg-item.lg-next-slide, .lg-css3.lg-slide-vertical .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-css3.lg-slide-vertical-growth .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-vertical-growth .lg-item.lg-prev-slide {
	-moz-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, -150%, 0);
	-o-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, -150%, 0);
	-ms-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, -150%, 0);
	-webkit-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, -150%, 0);
	transform: scale3d(0.5, 0.5, 0.5) translate3d(0, -150%, 0);
}

.lg-css3.lg-slide-vertical-growth .lg-item.lg-next-slide {
	-moz-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 150%, 0);
	-o-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 150%, 0);
	-ms-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 150%, 0);
	-webkit-transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 150%, 0);
	transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 150%, 0);
}

.lg-css3.lg-slide-vertical-growth .lg-item.lg-current {
	-moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	opacity: 1;
}

.lg-css3.lg-slide-vertical-growth .lg-item.lg-prev-slide, .lg-css3.lg-slide-vertical-growth .lg-item.lg-next-slide, .lg-css3.lg-slide-vertical-growth .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-css3.lg-slide-skew-only .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-skew-only .lg-item.lg-prev-slide {
	-moz-transform: skew(10deg, 0deg);
	-o-transform: skew(10deg, 0deg);
	-ms-transform: skew(10deg, 0deg);
	-webkit-transform: skew(10deg, 0deg);
	transform: skew(10deg, 0deg);
}

.lg-css3.lg-slide-skew-only .lg-item.lg-next-slide {
	-moz-transform: skew(10deg, 0deg);
	-o-transform: skew(10deg, 0deg);
	-ms-transform: skew(10deg, 0deg);
	-webkit-transform: skew(10deg, 0deg);
	transform: skew(10deg, 0deg);
}

.lg-css3.lg-slide-skew-only .lg-item.lg-current {
	-moz-transform: skew(0deg, 0deg);
	-o-transform: skew(0deg, 0deg);
	-ms-transform: skew(0deg, 0deg);
	-webkit-transform: skew(0deg, 0deg);
	transform: skew(0deg, 0deg);
	opacity: 1;
}

.lg-css3.lg-slide-skew-only .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-only .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-only .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-css3.lg-slide-skew-only-rev .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-skew-only-rev .lg-item.lg-prev-slide {
	-moz-transform: skew(-10deg, 0deg);
	-o-transform: skew(-10deg, 0deg);
	-ms-transform: skew(-10deg, 0deg);
	-webkit-transform: skew(-10deg, 0deg);
	transform: skew(-10deg, 0deg);
}

.lg-css3.lg-slide-skew-only-rev .lg-item.lg-next-slide {
	-moz-transform: skew(-10deg, 0deg);
	-o-transform: skew(-10deg, 0deg);
	-ms-transform: skew(-10deg, 0deg);
	-webkit-transform: skew(-10deg, 0deg);
	transform: skew(-10deg, 0deg);
}

.lg-css3.lg-slide-skew-only-rev .lg-item.lg-current {
	-moz-transform: skew(0deg, 0deg);
	-o-transform: skew(0deg, 0deg);
	-ms-transform: skew(0deg, 0deg);
	-webkit-transform: skew(0deg, 0deg);
	transform: skew(0deg, 0deg);
	opacity: 1;
}

.lg-css3.lg-slide-skew-only-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-only-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-only-rev .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-css3.lg-slide-skew-only-y .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-skew-only-y .lg-item.lg-prev-slide {
	-moz-transform: skew(0deg, 10deg);
	-o-transform: skew(0deg, 10deg);
	-ms-transform: skew(0deg, 10deg);
	-webkit-transform: skew(0deg, 10deg);
	transform: skew(0deg, 10deg);
}

.lg-css3.lg-slide-skew-only-y .lg-item.lg-next-slide {
	-moz-transform: skew(0deg, 10deg);
	-o-transform: skew(0deg, 10deg);
	-ms-transform: skew(0deg, 10deg);
	-webkit-transform: skew(0deg, 10deg);
	transform: skew(0deg, 10deg);
}

.lg-css3.lg-slide-skew-only-y .lg-item.lg-current {
	-moz-transform: skew(0deg, 0deg);
	-o-transform: skew(0deg, 0deg);
	-ms-transform: skew(0deg, 0deg);
	-webkit-transform: skew(0deg, 0deg);
	transform: skew(0deg, 0deg);
	opacity: 1;
}

.lg-css3.lg-slide-skew-only-y .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-only-y .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-only-y .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-css3.lg-slide-skew-only-y-rev .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-prev-slide {
	-moz-transform: skew(0deg, -10deg);
	-o-transform: skew(0deg, -10deg);
	-ms-transform: skew(0deg, -10deg);
	-webkit-transform: skew(0deg, -10deg);
	transform: skew(0deg, -10deg);
}

.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-next-slide {
	-moz-transform: skew(0deg, -10deg);
	-o-transform: skew(0deg, -10deg);
	-ms-transform: skew(0deg, -10deg);
	-webkit-transform: skew(0deg, -10deg);
	transform: skew(0deg, -10deg);
}

.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-current {
	-moz-transform: skew(0deg, 0deg);
	-o-transform: skew(0deg, 0deg);
	-ms-transform: skew(0deg, 0deg);
	-webkit-transform: skew(0deg, 0deg);
	transform: skew(0deg, 0deg);
	opacity: 1;
}

.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-only-y-rev .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-css3.lg-slide-skew .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-skew .lg-item.lg-prev-slide {
	-moz-transform: skew(20deg, 0deg) translate3d(-100%, 0%, 0px);
	-o-transform: skew(20deg, 0deg) translate3d(-100%, 0%, 0px);
	-ms-transform: skew(20deg, 0deg) translate3d(-100%, 0%, 0px);
	-webkit-transform: skew(20deg, 0deg) translate3d(-100%, 0%, 0px);
	transform: skew(20deg, 0deg) translate3d(-100%, 0%, 0px);
}

.lg-css3.lg-slide-skew .lg-item.lg-next-slide {
	-moz-transform: skew(20deg, 0deg) translate3d(100%, 0%, 0px);
	-o-transform: skew(20deg, 0deg) translate3d(100%, 0%, 0px);
	-ms-transform: skew(20deg, 0deg) translate3d(100%, 0%, 0px);
	-webkit-transform: skew(20deg, 0deg) translate3d(100%, 0%, 0px);
	transform: skew(20deg, 0deg) translate3d(100%, 0%, 0px);
}

.lg-css3.lg-slide-skew .lg-item.lg-current {
	-moz-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-o-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-ms-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	opacity: 1;
}

.lg-css3.lg-slide-skew .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew .lg-item.lg-next-slide, .lg-css3.lg-slide-skew .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-css3.lg-slide-skew-rev .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-skew-rev .lg-item.lg-prev-slide {
	-moz-transform: skew(-20deg, 0deg) translate3d(-100%, 0%, 0px);
	-o-transform: skew(-20deg, 0deg) translate3d(-100%, 0%, 0px);
	-ms-transform: skew(-20deg, 0deg) translate3d(-100%, 0%, 0px);
	-webkit-transform: skew(-20deg, 0deg) translate3d(-100%, 0%, 0px);
	transform: skew(-20deg, 0deg) translate3d(-100%, 0%, 0px);
}

.lg-css3.lg-slide-skew-rev .lg-item.lg-next-slide {
	-moz-transform: skew(-20deg, 0deg) translate3d(100%, 0%, 0px);
	-o-transform: skew(-20deg, 0deg) translate3d(100%, 0%, 0px);
	-ms-transform: skew(-20deg, 0deg) translate3d(100%, 0%, 0px);
	-webkit-transform: skew(-20deg, 0deg) translate3d(100%, 0%, 0px);
	transform: skew(-20deg, 0deg) translate3d(100%, 0%, 0px);
}

.lg-css3.lg-slide-skew-rev .lg-item.lg-current {
	-moz-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-o-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-ms-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	opacity: 1;
}

.lg-css3.lg-slide-skew-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-rev .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-css3.lg-slide-skew-cross .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-skew-cross .lg-item.lg-prev-slide {
	-moz-transform: skew(0deg, 60deg) translate3d(-100%, 0%, 0px);
	-o-transform: skew(0deg, 60deg) translate3d(-100%, 0%, 0px);
	-ms-transform: skew(0deg, 60deg) translate3d(-100%, 0%, 0px);
	-webkit-transform: skew(0deg, 60deg) translate3d(-100%, 0%, 0px);
	transform: skew(0deg, 60deg) translate3d(-100%, 0%, 0px);
}

.lg-css3.lg-slide-skew-cross .lg-item.lg-next-slide {
	-moz-transform: skew(0deg, 60deg) translate3d(100%, 0%, 0px);
	-o-transform: skew(0deg, 60deg) translate3d(100%, 0%, 0px);
	-ms-transform: skew(0deg, 60deg) translate3d(100%, 0%, 0px);
	-webkit-transform: skew(0deg, 60deg) translate3d(100%, 0%, 0px);
	transform: skew(0deg, 60deg) translate3d(100%, 0%, 0px);
}

.lg-css3.lg-slide-skew-cross .lg-item.lg-current {
	-moz-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-o-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-ms-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	opacity: 1;
}

.lg-css3.lg-slide-skew-cross .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-cross .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-cross .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-css3.lg-slide-skew-cross-rev .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-prev-slide {
	-moz-transform: skew(0deg, -60deg) translate3d(-100%, 0%, 0px);
	-o-transform: skew(0deg, -60deg) translate3d(-100%, 0%, 0px);
	-ms-transform: skew(0deg, -60deg) translate3d(-100%, 0%, 0px);
	-webkit-transform: skew(0deg, -60deg) translate3d(-100%, 0%, 0px);
	transform: skew(0deg, -60deg) translate3d(-100%, 0%, 0px);
}

.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-next-slide {
	-moz-transform: skew(0deg, -60deg) translate3d(100%, 0%, 0px);
	-o-transform: skew(0deg, -60deg) translate3d(100%, 0%, 0px);
	-ms-transform: skew(0deg, -60deg) translate3d(100%, 0%, 0px);
	-webkit-transform: skew(0deg, -60deg) translate3d(100%, 0%, 0px);
	transform: skew(0deg, -60deg) translate3d(100%, 0%, 0px);
}

.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-current {
	-moz-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-o-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-ms-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	opacity: 1;
}

.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-cross-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-cross-rev .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-css3.lg-slide-skew-ver .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-skew-ver .lg-item.lg-prev-slide {
	-moz-transform: skew(60deg, 0deg) translate3d(0, -100%, 0px);
	-o-transform: skew(60deg, 0deg) translate3d(0, -100%, 0px);
	-ms-transform: skew(60deg, 0deg) translate3d(0, -100%, 0px);
	-webkit-transform: skew(60deg, 0deg) translate3d(0, -100%, 0px);
	transform: skew(60deg, 0deg) translate3d(0, -100%, 0px);
}

.lg-css3.lg-slide-skew-ver .lg-item.lg-next-slide {
	-moz-transform: skew(60deg, 0deg) translate3d(0, 100%, 0px);
	-o-transform: skew(60deg, 0deg) translate3d(0, 100%, 0px);
	-ms-transform: skew(60deg, 0deg) translate3d(0, 100%, 0px);
	-webkit-transform: skew(60deg, 0deg) translate3d(0, 100%, 0px);
	transform: skew(60deg, 0deg) translate3d(0, 100%, 0px);
}

.lg-css3.lg-slide-skew-ver .lg-item.lg-current {
	-moz-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-o-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-ms-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	opacity: 1;
}

.lg-css3.lg-slide-skew-ver .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-ver .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-ver .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-css3.lg-slide-skew-ver-rev .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-prev-slide {
	-moz-transform: skew(-60deg, 0deg) translate3d(0, -100%, 0px);
	-o-transform: skew(-60deg, 0deg) translate3d(0, -100%, 0px);
	-ms-transform: skew(-60deg, 0deg) translate3d(0, -100%, 0px);
	-webkit-transform: skew(-60deg, 0deg) translate3d(0, -100%, 0px);
	transform: skew(-60deg, 0deg) translate3d(0, -100%, 0px);
}

.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-next-slide {
	-moz-transform: skew(-60deg, 0deg) translate3d(0, 100%, 0px);
	-o-transform: skew(-60deg, 0deg) translate3d(0, 100%, 0px);
	-ms-transform: skew(-60deg, 0deg) translate3d(0, 100%, 0px);
	-webkit-transform: skew(-60deg, 0deg) translate3d(0, 100%, 0px);
	transform: skew(-60deg, 0deg) translate3d(0, 100%, 0px);
}

.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-current {
	-moz-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-o-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-ms-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	opacity: 1;
}

.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-ver-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-ver-rev .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-css3.lg-slide-skew-ver-cross .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-prev-slide {
	-moz-transform: skew(0deg, 20deg) translate3d(0, -100%, 0px);
	-o-transform: skew(0deg, 20deg) translate3d(0, -100%, 0px);
	-ms-transform: skew(0deg, 20deg) translate3d(0, -100%, 0px);
	-webkit-transform: skew(0deg, 20deg) translate3d(0, -100%, 0px);
	transform: skew(0deg, 20deg) translate3d(0, -100%, 0px);
}

.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-next-slide {
	-moz-transform: skew(0deg, 20deg) translate3d(0, 100%, 0px);
	-o-transform: skew(0deg, 20deg) translate3d(0, 100%, 0px);
	-ms-transform: skew(0deg, 20deg) translate3d(0, 100%, 0px);
	-webkit-transform: skew(0deg, 20deg) translate3d(0, 100%, 0px);
	transform: skew(0deg, 20deg) translate3d(0, 100%, 0px);
}

.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-current {
	-moz-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-o-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-ms-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	opacity: 1;
}

.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-ver-cross .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-ver-cross .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-css3.lg-slide-skew-ver-cross-rev .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-prev-slide {
	-moz-transform: skew(0deg, -20deg) translate3d(0, -100%, 0px);
	-o-transform: skew(0deg, -20deg) translate3d(0, -100%, 0px);
	-ms-transform: skew(0deg, -20deg) translate3d(0, -100%, 0px);
	-webkit-transform: skew(0deg, -20deg) translate3d(0, -100%, 0px);
	transform: skew(0deg, -20deg) translate3d(0, -100%, 0px);
}

.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-next-slide {
	-moz-transform: skew(0deg, -20deg) translate3d(0, 100%, 0px);
	-o-transform: skew(0deg, -20deg) translate3d(0, 100%, 0px);
	-ms-transform: skew(0deg, -20deg) translate3d(0, 100%, 0px);
	-webkit-transform: skew(0deg, -20deg) translate3d(0, 100%, 0px);
	transform: skew(0deg, -20deg) translate3d(0, 100%, 0px);
}

.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-current {
	-moz-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-o-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-ms-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	-webkit-transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
	opacity: 1;
}

.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-ver-cross-rev .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-css3.lg-lollipop .lg-item {
	opacity: 0;
}

.lg-css3.lg-lollipop .lg-item.lg-prev-slide {
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-lollipop .lg-item.lg-next-slide {
	-moz-transform: translate3d(0, 0, 0) scale(0.5);
	-o-transform: translate3d(0, 0, 0) scale(0.5);
	-ms-transform: translate3d(0, 0, 0) scale(0.5);
	-webkit-transform: translate3d(0, 0, 0) scale(0.5);
	transform: translate3d(0, 0, 0) scale(0.5);
}

.lg-css3.lg-lollipop .lg-item.lg-current {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.lg-css3.lg-lollipop .lg-item.lg-prev-slide, .lg-css3.lg-lollipop .lg-item.lg-next-slide, .lg-css3.lg-lollipop .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-css3.lg-lollipop-rev .lg-item {
	opacity: 0;
}

.lg-css3.lg-lollipop-rev .lg-item.lg-prev-slide {
	-moz-transform: translate3d(0, 0, 0) scale(0.5);
	-o-transform: translate3d(0, 0, 0) scale(0.5);
	-ms-transform: translate3d(0, 0, 0) scale(0.5);
	-webkit-transform: translate3d(0, 0, 0) scale(0.5);
	transform: translate3d(0, 0, 0) scale(0.5);
}

.lg-css3.lg-lollipop-rev .lg-item.lg-next-slide {
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-lollipop-rev .lg-item.lg-current {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.lg-css3.lg-lollipop-rev .lg-item.lg-prev-slide, .lg-css3.lg-lollipop-rev .lg-item.lg-next-slide, .lg-css3.lg-lollipop-rev .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-css3.lg-rotate .lg-item {
	opacity: 0;
}

.lg-css3.lg-rotate .lg-item.lg-prev-slide {
	-moz-transform: rotate(-360deg);
	-o-transform: rotate(-360deg);
	-ms-transform: rotate(-360deg);
	-webkit-transform: rotate(-360deg);
	transform: rotate(-360deg);
}

.lg-css3.lg-rotate .lg-item.lg-next-slide {
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}

.lg-css3.lg-rotate .lg-item.lg-current {
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	opacity: 1;
}

.lg-css3.lg-rotate .lg-item.lg-prev-slide, .lg-css3.lg-rotate .lg-item.lg-next-slide, .lg-css3.lg-rotate .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-css3.lg-rotate-rev .lg-item {
	opacity: 0;
}

.lg-css3.lg-rotate-rev .lg-item.lg-prev-slide {
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}

.lg-css3.lg-rotate-rev .lg-item.lg-next-slide {
	-moz-transform: rotate(-360deg);
	-o-transform: rotate(-360deg);
	-ms-transform: rotate(-360deg);
	-webkit-transform: rotate(-360deg);
	transform: rotate(-360deg);
}

.lg-css3.lg-rotate-rev .lg-item.lg-current {
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	opacity: 1;
}

.lg-css3.lg-rotate-rev .lg-item.lg-prev-slide, .lg-css3.lg-rotate-rev .lg-item.lg-next-slide, .lg-css3.lg-rotate-rev .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-css3.lg-tube .lg-item {
	opacity: 0;
}

.lg-css3.lg-tube .lg-item.lg-prev-slide {
	-moz-transform: scale3d(1, 0, 1) translate3d(-100%, 0, 0);
	-o-transform: scale3d(1, 0, 1) translate3d(-100%, 0, 0);
	-ms-transform: scale3d(1, 0, 1) translate3d(-100%, 0, 0);
	-webkit-transform: scale3d(1, 0, 1) translate3d(-100%, 0, 0);
	transform: scale3d(1, 0, 1) translate3d(-100%, 0, 0);
}

.lg-css3.lg-tube .lg-item.lg-next-slide {
	-moz-transform: scale3d(1, 0, 1) translate3d(100%, 0, 0);
	-o-transform: scale3d(1, 0, 1) translate3d(100%, 0, 0);
	-ms-transform: scale3d(1, 0, 1) translate3d(100%, 0, 0);
	-webkit-transform: scale3d(1, 0, 1) translate3d(100%, 0, 0);
	transform: scale3d(1, 0, 1) translate3d(100%, 0, 0);
}

.lg-css3.lg-tube .lg-item.lg-current {
	-moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	-webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	opacity: 1;
}

.lg-css3.lg-tube .lg-item.lg-prev-slide, .lg-css3.lg-tube .lg-item.lg-next-slide, .lg-css3.lg-tube .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-group:after {
	content: "";
	display: table;
	clear: both;
}

.lg-outer {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1090;
	text-align: left;
	opacity: 0;
	-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-visible {
	opacity: 1;
}

.lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.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 {
	height: 100%;
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	max-height: 100%;
}

.lg-outer .lg-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	white-space: nowrap;
}

.lg-outer .lg-item {
	background: url("../images/loading.gif") no-repeat scroll center center transparent;
	display: none !important;
}

.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: 50%;
	width: 1px;
	margin-right: -1px;
}

.lg-outer .lg-img-wrap {
	position: absolute;
	padding: 0 5px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.lg-outer .lg-item.lg-complete {
	background-image: none;
}

.lg-outer .lg-item.lg-current {
	z-index: 1090;
}

.lg-outer .lg-image {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
	width: auto !important;
	height: auto !important;
}

.lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
	opacity: 0;
	-webkit-transition: opacity 0.15s ease 0s;
	-o-transition: opacity 0.15s ease 0s;
	transition: opacity 0.15s ease 0s;
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
	opacity: 1;
}

.lg-outer .lg-empty-html {
	display: none;
}

.lg-outer.lg-hide-download #lg-download {
	display: none;
}

.lg-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1090;
	background-color: #000;
	opacity: 0;
	-webkit-transition: opacity 0.15s ease 0s;
	-o-transition: opacity 0.15s ease 0s;
	transition: opacity 0.15s ease 0s;
}

.lg-backdrop.in {
	opacity: 0.85;
}

.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-use-left .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-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-css3.lg-slide.lg-use-left .lg-item {
	opacity: 0;
	position: absolute;
	left: 0;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
	left: -100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
	left: 100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
	left: 0;
	opacity: 1;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
	-webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
	-moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
	-o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
	transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

/** @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%;
}


.hero-banner {
  background-image: url('../images/slider-1-slide-1.jpg'); /* ← фикс пути */
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

.hero-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: -110px;
}

.hero-banner__title {
  margin-bottom: 18px;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  line-height: 1.08;
}

.hero-banner__text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.hero-banner__actions {
  margin-top: 30px;
}

.custom-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ff4500;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}

.custom-button:hover {
  background-color: #e63900;
  transform: scale(1.05);
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero-banner__content {
    margin-top: -140px;
  }

  .hero-banner__title {
    font-size: 64px;
  }

  .hero-banner__text {
    font-size: 19px;
  }
}

@media (min-width: 1200px) {
  .hero-banner__content {
    margin-top: -170px;
  }

  .hero-banner__title {
    font-size: 76px;
  }

  .hero-banner__text {
    font-size: 20px;
    line-height: 1.8;
  }
}

/* =========================================================
   Registration / Welcome Offer Section
   Universal naming for reusable templates
========================================================= */

.signup-section {
  position: relative;
  overflow: hidden;
  padding-top: 95px;
  padding-bottom: 95px;
  background:
    radial-gradient(circle at 12% 18%, rgba(193, 137, 63, 0.10), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(14, 35, 64, 0.08), transparent 26%),
    linear-gradient(180deg, #f6f7f9 0%, #eef1f5 100%);
}

.signup-section__shell {
  position: relative;
  z-index: 2;
  padding: 48px 40px 42px;
  border: 1px solid rgba(17, 33, 56, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(249, 250, 252, 0.96) 100%);
  box-shadow:
    0 24px 70px rgba(12, 27, 49, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
}

.signup-section__decor {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}

.signup-section__decor--left {
  top: -70px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(195, 143, 77, 0.18) 0%, rgba(195, 143, 77, 0) 72%);
}

.signup-section__decor--right {
  right: -80px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(24, 53, 92, 0.16) 0%, rgba(24, 53, 92, 0) 72%);
}

.signup-section__header,
.offer-panel,
.process-grid,
.signup-section__actions {
  position: relative;
  z-index: 2;
}

.signup-section__header {
  max-width: 860px;
  margin: 0 auto 36px;
}

.signup-section__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(18, 41, 71, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #8b5e2b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(12, 27, 49, 0.05);
}

.signup-section__title {
  margin: 0;
  color: #142033;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.signup-section__subtitle {
  max-width: 760px;
  margin: 18px auto 0;
  color: #596579;
  font-size: 17px;
  line-height: 1.8;
}

.offer-panel {
  position: relative;
  max-width: 1020px;
  margin: 0 auto 42px;
  border-radius: 28px;
}

.offer-panel__backdrop {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    linear-gradient(135deg, #0f223a 0%, #183759 55%, #b98a50 100%);
  box-shadow:
    0 22px 48px rgba(15, 34, 58, 0.22),
    0 6px 18px rgba(185, 138, 80, 0.18);
}

.offer-panel__backdrop::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.offer-panel__inner {
  position: relative;
  z-index: 2;
  padding: 30px 30px 28px;
  border-radius: 28px;
  overflow: hidden;
}

.offer-panel__inner::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 68%);
  pointer-events: none;
}

.offer-panel__top {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.offer-panel__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: #f7e5cb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.offer-panel__label i {
  font-size: 16px;
}

.offer-panel__main {
  text-align: center;
}

.offer-panel__caption {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-panel__value {
  color: #ffffff;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.offer-panel__note {
  max-width: 780px;
  margin: 16px auto 0;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.75;
}

.process-grid {
  margin-top: 0;
}

.process-card {
  position: relative;
  height: 100%;
  padding: 30px 28px 28px;
  border: 1px solid rgba(17, 33, 56, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fafc 100%);
  box-shadow:
    0 16px 36px rgba(11, 24, 43, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.90);
  transition:
    transform 0.30s ease,
    box-shadow 0.30s ease,
    border-color 0.30s ease;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(185, 138, 80, 0.22), rgba(20, 32, 51, 0.04));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 46px rgba(11, 24, 43, 0.11),
    0 10px 24px rgba(185, 138, 80, 0.10);
  border-color: rgba(185, 138, 80, 0.22);
}

.process-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.process-card__number {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b1844d;
}

.process-card__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #162944 0%, #21466f 65%, #c39253 100%);
  color: #ffffff;
  box-shadow:
    0 14px 28px rgba(21, 43, 70, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.process-card__icon i {
  font-size: 26px;
  line-height: 1;
}

.process-card__title {
  margin: 0 0 14px;
  color: #142033;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: none;
}

.process-card__text {
  margin: 0;
  color: #617084;
  font-size: 16px;
  line-height: 1.75;
}

.signup-section__actions {
  margin-top: 40px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 34px;
  border: 1px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(135deg, #12243b 0%, #1b3d63 60%, #b9884e 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 18px 34px rgba(18, 36, 59, 0.24),
    0 6px 14px rgba(185, 136, 78, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.primary-action:hover {
  color: #ffffff;
  transform: translateY(-3px);
  filter: brightness(1.03);
  box-shadow:
    0 22px 40px rgba(18, 36, 59, 0.28),
    0 10px 18px rgba(185, 136, 78, 0.22);
}

/* Responsive */
@media (max-width: 991px) {
  .signup-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .signup-section__shell {
    padding: 38px 24px 34px;
    border-radius: 26px;
  }

  .signup-section__title {
    font-size: 33px;
  }

  .signup-section__subtitle {
    font-size: 16px;
  }

  .offer-panel__value {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .signup-section__shell {
    padding: 30px 18px 26px;
  }

  .signup-section__title {
    font-size: 27px;
    line-height: 1.2;
  }

  .signup-section__subtitle {
    font-size: 15px;
    line-height: 1.7;
  }

  .offer-panel__inner {
    padding: 24px 18px 22px;
  }

  .offer-panel__value {
    font-size: 23px;
    line-height: 1.3;
  }

  .offer-panel__note {
    font-size: 13px;
  }

  .process-card {
    padding: 24px 20px 22px;
  }

  .process-card__title {
    font-size: 21px;
  }

  .primary-action {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 0.09em;
  }
}

/* =========================================================
   Featured Games / Universal Catalog Section
========================================================= */

.games-showcase {
  position: relative;
  overflow: hidden;
  padding-top: 95px;
  padding-bottom: 95px;
  background:
    radial-gradient(circle at 12% 18%, rgba(190, 141, 78, 0.08), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(21, 52, 88, 0.08), transparent 26%),
    linear-gradient(180deg, #f5f7fa 0%, #edf1f5 100%);
}

.games-showcase .container {
  max-width: 1600px;
}

.games-showcase__frame {
  position: relative;
  z-index: 2;
  padding: 52px 46px 46px;
  border: 1px solid rgba(18, 34, 56, 0.08);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.90) 0%, rgba(249,250,252,0.96) 100%);
  box-shadow:
    0 26px 80px rgba(12, 27, 49, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
}

.games-showcase__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.games-showcase__glow--top {
  top: -90px;
  right: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(191,145,84,0.16) 0%, rgba(191,145,84,0) 72%);
}

.games-showcase__glow--bottom {
  left: -110px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(21,52,88,0.12) 0%, rgba(21,52,88,0) 72%);
}

.games-showcase__header,
.games-catalog,
.games-showcase__footer {
  position: relative;
  z-index: 2;
}

.games-showcase__header {
  max-width: 860px;
  margin: 0 auto 44px;
}

.games-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(18, 41, 71, 0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: #8b5e2b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.games-showcase__title {
  margin: 0;
  color: #142033;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
  text-transform: uppercase;
}

.games-showcase__subtitle {
  max-width: 760px;
  margin: 18px auto 0;
  color: #5a667b;
  font-size: 17px;
  line-height: 1.8;
}

.games-catalog {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.catalog-card {
  position: relative;
  border-radius: 22px;
  transition: transform 0.3s ease;
}

.catalog-card:hover {
  transform: translateY(-6px);
}

.catalog-card__media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 34, 56, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    0 16px 34px rgba(12, 27, 49, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.92);
  padding-top: 145%;
}

.catalog-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 26%);
}

.catalog-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(185,138,80,0.10);
}

.catalog-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(17, 33, 56, 0.88);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.catalog-card:hover img {
  transform: scale(1.05);
}

/* overlay */
.catalog-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(15,28,46,0.1) 0%, rgba(15,28,46,0.75) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.catalog-card:hover .catalog-card__overlay {
  opacity: 1;
}

.catalog-card__overlay a {
  padding: 10px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #12243b 0%, #1d4269 60%, #bb8c52 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

/* кнопка */
.games-showcase__footer {
  margin-top: 42px;
}

.section-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #12243b 0%, #1b3d63 60%, #b9884e 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 1399px) {
  .games-catalog {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .games-showcase {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .games-showcase__frame {
    padding: 36px 24px 34px;
  }

  .games-catalog {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .games-catalog {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   About Section / Premium Casino Presentation
========================================================= */

.about-section {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(203, 153, 85, 0.14), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(17, 45, 79, 0.12), transparent 26%),
    linear-gradient(180deg, #f8f6f2 0%, #f1f4f8 52%, #edf2f7 100%);
  overflow: hidden;
}

.about-section .container {
  max-width: 1520px;
}

.about-panel {
  position: relative;
  padding: 68px 46px 46px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(250,251,253,0.98) 100%);
  border: 1px solid rgba(18, 36, 59, 0.08);
  box-shadow:
    0 35px 90px rgba(16, 27, 45, 0.10),
    0 10px 30px rgba(185, 138, 80, 0.05);
  overflow: hidden;
  z-index: 2;
}

.about-panel::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 149, 82, 0.16) 0%, rgba(199, 149, 82, 0) 72%);
  pointer-events: none;
}

.about-panel::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 55, 96, 0.12) 0%, rgba(20, 55, 96, 0) 72%);
  pointer-events: none;
}

.about-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.about-bg--left {
  left: 0;
  top: 165px;
  width: 340px;
  height: 240px;
  opacity: 0.16;
  background:
    linear-gradient(180deg, rgba(193, 147, 82, 0.24), rgba(193, 147, 82, 0));
  clip-path: polygon(0 100%, 0 70%, 12% 78%, 18% 58%, 24% 64%, 34% 46%, 40% 52%, 46% 42%, 52% 48%, 58% 30%, 63% 34%, 63% 0, 65% 0, 65% 36%, 69% 38%, 72% 56%, 78% 60%, 85% 72%, 92% 76%, 100% 84%, 100% 100%);
}

.about-bg--right {
  top: 140px;
  right: -30px;
  width: 420px;
  height: 180px;
  opacity: 0.18;
  background:
    repeating-linear-gradient(
      -8deg,
      rgba(199, 149, 82, 0.00) 0px,
      rgba(199, 149, 82, 0.00) 8px,
      rgba(199, 149, 82, 0.22) 9px,
      rgba(199, 149, 82, 0.00) 10px
    );
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.95) 18%, rgba(0,0,0,0.95) 100%);
}

/* Header */
.about-header {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto 36px;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(191, 145, 84, 0.30);
  background: rgba(255,255,255,0.86);
  color: #ab7540;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(18, 36, 59, 0.04);
}

.about-title {
  margin: 16px 0 0;
  color: #0f2a4a;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.about-subtitle {
  max-width: 820px;
  margin: 18px auto 0;
  color: #5f6d80;
  font-size: 19px;
  line-height: 1.8;
}

/* Metrics */
.about-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 42px auto 34px;
  padding: 18px 10px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,251,253,1) 100%);
  border: 1px solid rgba(18, 36, 59, 0.08);
  box-shadow:
    0 18px 44px rgba(16, 27, 45, 0.08),
    0 6px 18px rgba(191, 145, 84, 0.05);
}

.about-metric {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
}

.about-metric:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 1px;
  height: calc(100% - 36px);
  background: linear-gradient(180deg, rgba(191,145,84,0) 0%, rgba(191,145,84,0.28) 50%, rgba(191,145,84,0) 100%);
}

.about-metric i {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff8ef 0%, #f6ead7 100%);
  color: #c2863e;
  font-size: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.about-metric strong {
  display: block;
  color: #102a4a;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.about-metric span {
  display: block;
  margin-top: 4px;
  color: #556476;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

/* Cards */
.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 8px;
}

.about-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  border: 1px solid rgba(18, 36, 59, 0.08);
  box-shadow:
    0 18px 38px rgba(16, 27, 45, 0.08),
    0 8px 18px rgba(191, 145, 84, 0.05);
  transition:
    transform 0.30s ease,
    box-shadow 0.30s ease,
    border-color 0.30s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(191, 145, 84, 0.22);
  box-shadow:
    0 24px 48px rgba(16, 27, 45, 0.12),
    0 12px 24px rgba(191, 145, 84, 0.08);
}

.about-card__media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #17365a 0%, #264e7d 62%, #c5914e 100%);
}

.about-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.00) 30%),
    linear-gradient(180deg, rgba(10,20,35,0.00) 34%, rgba(10,20,35,0.30) 100%);
  z-index: 1;
}

.about-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.35s ease;
}

.about-card:hover .about-card__media img {
  transform: scale(1.05);
}

.about-card__badge {
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d2542 0%, #173a63 100%);
  border: 3px solid #ffffff;
  box-shadow: 0 12px 24px rgba(14, 37, 66, 0.24);
  color: #d7a35f;
  font-size: 20px;
}

.about-card__body {
  padding: 38px 24px 24px;
}

.about-card h3 {
  margin: 0 0 14px;
  color: #112b4b;
  font-size: 22px;
  line-height: 1.24;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.about-card p {
  margin: 0;
  color: #5f6d80;
  font-size: 15px;
  line-height: 1.75;
  text-align: center;
}

.about-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.about-card ul li {
  position: relative;
  padding-left: 24px;
  color: #556476;
  font-size: 15px;
  line-height: 1.6;
}

.about-card ul li + li {
  margin-top: 8px;
}

.about-card ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c5914e 0%, #e5bf84 100%);
  box-shadow: 0 0 0 4px rgba(197,145,78,0.12);
}

/* Online block */
.about-online {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  padding: 34px 36px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, #0f2542 0%, #173a63 55%, #214d7f 78%, #c58f4b 100%);
  box-shadow:
    0 24px 46px rgba(15, 37, 66, 0.20),
    0 10px 20px rgba(197, 143, 75, 0.10);
  overflow: hidden;
}

.about-online::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}

.about-online::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}

.about-online {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: center;
}

.about-online__left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.about-online__icon {
  width: 90px;
  height: 90px;
  flex: 0 0 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(229, 191, 132, 0.9);
  color: #e1b26d;
  font-size: 40px;
  background: rgba(255,255,255,0.03);
}

.about-online__content h3 {
  margin: 0 0 10px;
  color: #ffcf87;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.about-online__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
  max-width: 760px;
}

.about-online__right {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-online__feature {
  position: relative;
  text-align: center;
  padding: 12px 16px;
}

.about-online__feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 0;
  width: 1px;
  height: calc(100% - 28px);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.22) 50%, rgba(255,255,255,0) 100%);
}

.about-online__feature i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #f0be77;
  font-size: 28px;
}

.about-online__feature span {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1399px) {
  .about-title {
    font-size: 46px;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-online {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .about-section {
    padding: 90px 0;
  }

  .about-panel {
    padding: 46px 24px 28px;
    border-radius: 28px;
  }

  .about-title {
    font-size: 38px;
  }

  .about-subtitle {
    font-size: 17px;
  }

  .about-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .about-metric {
    padding: 12px;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.95);
  }

  .about-metric:not(:last-child)::after {
    display: none;
  }

  .about-card__media {
    height: 190px;
  }

  .about-online__left {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-online__right {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .about-online__feature:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .about-title {
    font-size: 30px;
    line-height: 1.16;
  }

  .about-subtitle {
    font-size: 16px;
    line-height: 1.7;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-card__body {
    padding: 34px 18px 20px;
  }

  .about-online {
    padding: 26px 18px;
  }

  .about-online__content p {
    font-size: 16px;
  }

  .about-online__right {
    grid-template-columns: 1fr 1fr;
  }

  .about-online__feature span {
    font-size: 15px;
  }
}

/* =========================================================
   Advantages Section
========================================================= */

.advantages-section {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(197, 145, 78, 0.10), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(21, 52, 88, 0.10), transparent 24%),
    linear-gradient(180deg, #f8f6f2 0%, #f2f5f9 55%, #edf2f7 100%);
  overflow: hidden;
}

.advantages-section .container {
  max-width: 1520px;
}

.advantages-panel {
  position: relative;
  z-index: 2;
  padding: 64px 46px 46px;
  border-radius: 38px;
  border: 1px solid rgba(18, 36, 59, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(249,250,252,0.98) 100%);
  box-shadow:
    0 34px 90px rgba(16, 27, 45, 0.09),
    0 10px 24px rgba(197, 145, 78, 0.05);
  overflow: hidden;
}

.advantages-panel__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.advantages-panel__glow--left {
  top: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(197, 145, 78, 0.14) 0%, rgba(197, 145, 78, 0) 72%);
}

.advantages-panel__glow--right {
  right: -120px;
  bottom: -140px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(21, 52, 88, 0.12) 0%, rgba(21, 52, 88, 0) 72%);
}

/* Header */
.advantages-header,
.advantages-highlight,
.advantages-layout,
.advantages-footer {
  position: relative;
  z-index: 2;
}

.advantages-header {
  max-width: 920px;
  margin: 0 auto 34px;
}

.advantages-header__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(197, 145, 78, 0.30);
  background: rgba(255,255,255,0.88);
  color: #aa7540;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(18, 36, 59, 0.04);
}

.advantages-header__title {
  margin: 16px 0 0;
  color: #102a4a;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.advantages-header__subtitle {
  max-width: 840px;
  margin: 18px auto 0;
  color: #5f6d80;
  font-size: 18px;
  line-height: 1.8;
}

/* Highlight strip */
.advantages-highlight {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto 30px;
}

.advantages-highlight__item {
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  border: 1px solid rgba(18, 36, 59, 0.08);
  box-shadow:
    0 16px 34px rgba(16, 27, 45, 0.06),
    0 6px 14px rgba(197, 145, 78, 0.04);
  text-align: center;
}

.advantages-highlight__item strong {
  display: block;
  color: #102a4a;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.advantages-highlight__item span {
  display: block;
  margin-top: 8px;
  color: #637286;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}

/* Two main blocks */
.advantages-layout {
  display: grid;
  gap: 24px;
}

.advantages-block {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.advantages-block--light {
  padding: 34px 30px 30px;
  border: 1px solid rgba(18, 36, 59, 0.08);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow:
    0 18px 40px rgba(16, 27, 45, 0.07),
    0 6px 14px rgba(197, 145, 78, 0.04);
}

.advantages-block--dark {
  padding: 36px 32px 30px;
  background:
    linear-gradient(135deg, #0f2542 0%, #173a63 55%, #214d7f 78%, #c58f4b 100%);
  box-shadow:
    0 24px 46px rgba(15, 37, 66, 0.18),
    0 10px 20px rgba(197, 143, 75, 0.08);
}

.advantages-block--dark::before {
  content: "";
  position: absolute;
  top: -80px;
  right: 80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}

.advantages-block--dark::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}

.advantages-block__top {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 26px;
}

.advantages-block__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(197, 145, 78, 0.10);
  color: #aa7540;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.advantages-block__label--dark {
  background: rgba(255,255,255,0.10);
  color: #ffd08c;
  border: 1px solid rgba(255,255,255,0.12);
}

.advantages-block__title {
  margin: 14px 0 0;
  color: #102a4a;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
}

.advantages-block__title--dark {
  color: #ffffff;
}

.advantages-block__text {
  margin: 14px 0 0;
  color: #617085;
  font-size: 17px;
  line-height: 1.8;
}

.advantages-block__text--dark {
  color: rgba(255,255,255,0.88);
}

/* Internal grids */
.advantages-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.advantages-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.advantages-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

/* Cards */
.adv-card {
  position: relative;
  border-radius: 24px;
  transition:
    transform 0.30s ease,
    box-shadow 0.30s ease,
    border-color 0.30s ease;
}

.adv-card--light {
  padding: 24px 22px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border: 1px solid rgba(18, 36, 59, 0.08);
  box-shadow:
    0 16px 34px rgba(16, 27, 45, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.adv-card--dark {
  padding: 22px 20px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
}

.adv-card:hover {
  transform: translateY(-8px);
}

.adv-card--light:hover {
  border-color: rgba(197, 145, 78, 0.22);
  box-shadow:
    0 22px 42px rgba(16, 27, 45, 0.10),
    0 10px 20px rgba(197, 145, 78, 0.08);
}

.adv-card--dark:hover {
  background: rgba(255,255,255,0.12);
  box-shadow:
    0 18px 32px rgba(10, 24, 42, 0.18);
}

.adv-card__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff8ef 0%, #f6ead7 100%);
  color: #c2863e;
  font-size: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.adv-card__icon--dark {
  background: rgba(255,255,255,0.10);
  color: #f0be77;
  border: 1px solid rgba(255,255,255,0.12);
}

.adv-card__title {
  margin: 0 0 12px;
  color: #112b4b;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  text-transform: none;
}

.adv-card__title--dark {
  color: #ffffff;
}

.adv-card__text {
  margin: 0;
  color: #627287;
  font-size: 15px;
  line-height: 1.75;
}

.adv-card__text--dark {
  color: rgba(255,255,255,0.84);
}

/* Footer */
.advantages-footer {
  margin-top: 36px;
}

.advantages-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #12243b 0%, #1b3d63 60%, #b9884e 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 18px 34px rgba(18, 36, 59, 0.24),
    0 6px 14px rgba(185, 136, 78, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.advantages-action:hover {
  color: #ffffff;
  transform: translateY(-3px);
  filter: brightness(1.03);
  box-shadow:
    0 22px 40px rgba(18, 36, 59, 0.28),
    0 10px 18px rgba(185, 136, 78, 0.22);
}

/* Responsive */
@media (max-width: 1399px) {
  .advantages-header__title {
    font-size: 44px;
  }

  .advantages-highlight {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .advantages-section {
    padding: 90px 0;
  }

  .advantages-panel {
    padding: 46px 24px 28px;
    border-radius: 28px;
  }

  .advantages-header__title {
    font-size: 36px;
  }

  .advantages-header__subtitle {
    font-size: 17px;
  }

  .advantages-highlight {
    grid-template-columns: 1fr;
  }

  .advantages-grid--three,
  .advantages-grid--four {
    grid-template-columns: 1fr;
  }

  .advantages-block--light,
  .advantages-block--dark {
    padding: 26px 20px 20px;
    border-radius: 24px;
  }

  .advantages-block__title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .advantages-header__title {
    font-size: 30px;
    line-height: 1.14;
  }

  .advantages-header__subtitle {
    font-size: 16px;
    line-height: 1.7;
  }

  .advantages-action {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 0.09em;
  }
}

/* =========================================================
   Parallax Promo Banner
========================================================= */

.promo-banner {
  --banner-overlay: 0.52;
  --banner-radius: 36px;
  --banner-min-height: 420px;

  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #eef2f6 0%, #e9eef4 100%);
}

.promo-banner .container {
  max-width: 1520px;
}

.promo-banner__inner {
  position: relative;
  min-height: var(--banner-min-height);
  border-radius: var(--banner-radius);
  overflow: hidden;
  background-color: #10233d;
  box-shadow:
    0 34px 90px rgba(14, 26, 44, 0.16),
    0 12px 28px rgba(0, 0, 0, 0.08);
}

.promo-banner__media {
  position: absolute;
  top: -12%;
  left: 0;
  width: 100%;
  height: 124%;
  background-image: url("../images/banner/banner.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0) scale(1.12);
  will-change: transform;
  z-index: 0;
}

..promo-banner__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 20, 36, calc(var(--banner-overlay) + 0.12)) 0%,
      rgba(12, 31, 54, calc(var(--banner-overlay) + 0.06)) 28%,
      rgba(16, 42, 74, var(--banner-overlay)) 48%,
      rgba(16, 42, 74, calc(var(--banner-overlay) - 0.12)) 66%,
      rgba(16, 42, 74, calc(var(--banner-overlay) - 0.22)) 100%
    );
  z-index: 1;
  pointer-events: none;
}
.promo-banner__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 52px 56px 48px;
}

.promo-banner__content::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 56px;
  width: 120px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(240, 190, 119, 0) 0%,
    rgba(240, 190, 119, 0.75) 55%,
    rgba(240, 190, 119, 0) 100%
  );
}

.promo-banner__content::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 190, 119, 0.20) 0%, rgba(240, 190, 119, 0) 72%);
  pointer-events: none;
  z-index: -1;
}

.promo-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(240, 190, 119, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #f2c47f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.promo-banner__title {
  margin: 0;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.promo-banner__text {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.promo-banner__actions {
  margin-top: 28px;
}

.promo-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #12243b 0%, #1c426b 60%, #c18d4a 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 20px 40px rgba(10, 26, 45, 0.30),
    0 8px 18px rgba(193, 141, 74, 0.20);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.promo-banner__button:hover {
  color: #ffffff;
  transform: translateY(-3px);
  filter: brightness(1.03);
  box-shadow:
    0 24px 44px rgba(10, 26, 45, 0.34),
    0 10px 20px rgba(193, 141, 74, 0.24);
}

@media (max-width: 1399px) {
  .promo-banner {
    --banner-min-height: 400px;
  }

  .promo-banner__content {
    max-width: 640px;
    padding: 46px 42px 42px;
  }

  .promo-banner__content::before {
    left: 42px;
    top: 24px;
    width: 100px;
  }

  .promo-banner__title {
    font-size: 42px;
  }

  .promo-banner__text {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .promo-banner {
    --banner-min-height: 360px;
    --banner-radius: 28px;
    padding: 70px 0;
  }

  .promo-banner__content {
    max-width: 100%;
    padding: 38px 28px 34px;
  }

  .promo-banner__content::before {
    left: 28px;
    top: 20px;
    width: 84px;
  }

  .promo-banner__title {
    font-size: 36px;
    line-height: 1.08;
  }

  .promo-banner__text {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 767px) {
  .promo-banner {
    --banner-min-height: 320px;
    --banner-radius: 24px;
    padding: 56px 0;
  }

  .promo-banner__content {
    padding: 30px 20px 28px;
  }

  .promo-banner__content::before {
    left: 20px;
    top: 16px;
    width: 64px;
  }

  .promo-banner__eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .promo-banner__title {
    font-size: 28px;
    line-height: 1.12;
  }

  .promo-banner__text {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.65;
  }

  .promo-banner__actions {
    margin-top: 22px;
  }

  .promo-banner__button {
    width: 100%;
    min-height: 54px;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 0.09em;
  }
}

/* =========================================================
   Gaming Capabilities Section
========================================================= */

.gaming-capabilities {
  padding: 110px 0;
  background: linear-gradient(180deg, #f4f7fb 0%, #eef2f6 100%);
}

.gaming-capabilities__header {
  max-width: 900px;
  margin: 0 auto 60px;
}

.gaming-capabilities__eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(20,40,70,0.06);
  color: #9c6b30;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.gaming-capabilities__title {
  font-size: 40px;
  margin-top: 16px;
  color: #142033;
  font-weight: 700;
}

.gaming-capabilities__subtitle {
  margin-top: 16px;
  color: #5a667b;
  font-size: 17px;
  line-height: 1.8;
}

.gaming-capabilities__block {
  margin-top: 60px;
}

.gaming-capabilities__block-title {
  font-size: 26px;
  margin-bottom: 30px;
  color: #1b2a40;
  font-weight: 600;
}

.gaming-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gaming-capabilities__grid--wide {
  grid-template-columns: repeat(4, 1fr);
}

/* CARD */

.gaming-cap-card {
  position: relative;
  padding: 26px 22px 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(20,40,70,0.08);
  box-shadow: 0 14px 30px rgba(20,40,70,0.06);
  transition: 0.3s;
}

.gaming-cap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(20,40,70,0.12);
}

.gaming-cap-card__badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(135deg, #12243b, #c18d4a);
  color: #fff;
}

.gaming-cap-card__title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #142033;
  font-weight: 700;
}

.gaming-cap-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #5f6c82;
}

.gaming-cap-card strong {
  color: #1c426b;
}

.gaming-cap-card__list {
  margin-top: 14px;
  padding-left: 16px;
}

.gaming-cap-card__list li {
  font-size: 14px;
  color: #6a768a;
  margin-bottom: 6px;
}

/* ONLINE BLOCK ACCENT */

.gaming-capabilities__block--online {
  margin-top: 80px;
  padding: 40px;
  border-radius: 26px;
  background: linear-gradient(135deg, #10233d 0%, #1c426b 100%);
  color: #fff;
}

.gaming-capabilities__block--online .gaming-capabilities__block-title {
  color: #fff;
}

.gaming-capabilities__block--online .gaming-cap-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

.gaming-capabilities__block--online p,
.gaming-capabilities__block--online li {
  color: rgba(255,255,255,0.85);
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .gaming-capabilities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .gaming-capabilities__grid {
    grid-template-columns: 1fr;
  }
}

.gaming-capabilities__block--online .gaming-cap-card__title {
  color: #ffffff;
  position: relative;
}

.gaming-capabilities__block--online .gaming-cap-card__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(90deg, #c18d4a, transparent);
}

.gaming-capabilities__block--online strong {
  color: #f2c47f;
  font-weight: 700;
}

/* =========================================================
   Slots Showcase Section
========================================================= */

.slots-showcase {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(197, 145, 78, 0.10), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(21, 52, 88, 0.10), transparent 26%),
    linear-gradient(180deg, #f8f6f2 0%, #f2f5f9 52%, #edf2f7 100%);
  overflow: hidden;
}

.slots-showcase .container {
  max-width: 1520px;
}

.slots-showcase__panel {
  position: relative;
  z-index: 2;
  padding: 64px 46px 46px;
  border-radius: 38px;
  border: 1px solid rgba(18, 36, 59, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(249,250,252,0.98) 100%);
  box-shadow:
    0 34px 90px rgba(16, 27, 45, 0.09),
    0 10px 24px rgba(197, 145, 78, 0.05);
  overflow: hidden;
}

.slots-showcase__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.slots-showcase__glow--left {
  top: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(197, 145, 78, 0.14) 0%, rgba(197, 145, 78, 0) 72%);
}

.slots-showcase__glow--right {
  right: -120px;
  bottom: -140px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(21, 52, 88, 0.12) 0%, rgba(21, 52, 88, 0) 72%);
}

.slots-showcase__header,
.slots-showcase__layout {
  position: relative;
  z-index: 2;
}

.slots-showcase__header {
  max-width: 960px;
  margin: 0 auto 42px;
}

.slots-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(197, 145, 78, 0.30);
  background: rgba(255,255,255,0.88);
  color: #aa7540;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(18, 36, 59, 0.04);
}

.slots-showcase__title {
  margin: 16px 0 0;
  color: #102a4a;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.slots-showcase__subtitle {
  max-width: 860px;
  margin: 18px auto 0;
  color: #5f6d80;
  font-size: 18px;
  line-height: 1.8;
}

.slots-showcase__subtitle strong {
  color: #173a63;
}

/* Layout */
.slots-showcase__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 30px;
  align-items: start;
}

/* Media */
.slots-showcase__media {
  position: relative;
  min-height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #17365a 0%, #264e7d 62%, #c5914e 100%);
  box-shadow:
    0 24px 50px rgba(16, 27, 45, 0.14),
    0 8px 18px rgba(197, 145, 78, 0.10);
}

.slots-showcase__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.00) 26%),
    linear-gradient(180deg, rgba(10,20,35,0.00) 42%, rgba(10,20,35,0.36) 100%);
  z-index: 1;
}

.slots-showcase__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.slots-showcase__media:hover img {
  transform: scale(1.04);
}

.slots-showcase__media-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15, 37, 66, 0.88);
  border: 1px solid rgba(255,255,255,0.10);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.slots-showcase__media-badge i {
  color: #f0be77;
  font-size: 16px;
}

/* Content */
.slots-showcase__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.slots-showcase__intro {
  padding: 28px 28px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  border: 1px solid rgba(18, 36, 59, 0.08);
  box-shadow:
    0 18px 40px rgba(16, 27, 45, 0.07),
    0 6px 14px rgba(197, 145, 78, 0.04);
}

.slots-showcase__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(197, 145, 78, 0.10);
  color: #aa7540;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.slots-showcase__content-title {
  margin: 14px 0 0;
  color: #102a4a;
  font-size: 30px;
  line-height: 1.14;
  font-weight: 700;
  text-transform: uppercase;
}

.slots-showcase__content-text {
  margin: 14px 0 0;
  color: #627287;
  font-size: 16px;
  line-height: 1.8;
}

.slots-showcase__content-text strong {
  color: #173a63;
}

/* Chips */
.slots-showcase__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.slots-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #12243b 0%, #1c426b 60%, #c18d4a 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(18, 36, 59, 0.12);
}

/* Info cards */
.slots-showcase__info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.slots-info-card {
  padding: 24px 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border: 1px solid rgba(18, 36, 59, 0.08);
  box-shadow:
    0 16px 34px rgba(16, 27, 45, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition:
    transform 0.30s ease,
    box-shadow 0.30s ease,
    border-color 0.30s ease;
}

.slots-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 145, 78, 0.22);
  box-shadow:
    0 22px 42px rgba(16, 27, 45, 0.10),
    0 10px 20px rgba(197, 145, 78, 0.08);
}

.slots-info-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(197, 145, 78, 0.12);
  color: #aa7540;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slots-info-card__title {
  margin: 0 0 12px;
  color: #112b4b;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 700;
  text-transform: none;
}

.slots-info-card__text {
  margin: 0;
  color: #627287;
  font-size: 15px;
  line-height: 1.78;
}

.slots-info-card__text strong {
  color: #173a63;
}

/* Features strip */
.slots-showcase__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.slots-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0f2542 0%, #173a63 55%, #214d7f 78%, #c58f4b 100%);
  box-shadow:
    0 18px 36px rgba(15, 37, 66, 0.18),
    0 8px 18px rgba(197, 143, 75, 0.08);
}

.slots-feature i {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.10);
  color: #f0be77;
  font-size: 22px;
  border: 1px solid rgba(255,255,255,0.10);
}

.slots-feature strong {
  display: block;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
}

.slots-feature span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1399px) {
  .slots-showcase__title {
    font-size: 42px;
  }

  .slots-showcase__layout {
    grid-template-columns: 1fr;
  }

  .slots-showcase__media img {
    min-height: 460px;
  }
}

@media (max-width: 991px) {
  .slots-showcase {
    padding: 90px 0;
  }

  .slots-showcase__panel {
    padding: 46px 24px 28px;
    border-radius: 28px;
  }

  .slots-showcase__title {
    font-size: 34px;
  }

  .slots-showcase__subtitle {
    font-size: 17px;
  }

  .slots-showcase__content-title {
    font-size: 26px;
  }

  .slots-showcase__info-grid {
    grid-template-columns: 1fr;
  }

  .slots-showcase__features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .slots-showcase__title {
    font-size: 29px;
    line-height: 1.14;
  }

  .slots-showcase__subtitle {
    font-size: 16px;
    line-height: 1.7;
  }

  .slots-showcase__media img {
    min-height: 320px;
  }

  .slots-showcase__intro {
    padding: 24px 18px 20px;
  }

  .slots-showcase__content-title {
    font-size: 22px;
  }

  .slots-showcase__badges {
    gap: 10px;
  }

  .slots-chip {
    font-size: 11px;
    letter-spacing: 0.09em;
  }

  .slots-info-card {
    padding: 20px 18px 18px;
  }
}

.slots-showcase__media-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 86px 24px 84px;
  background:
    linear-gradient(
      180deg,
      rgba(9, 18, 32, 0) 0%,
      rgba(9, 18, 32, 0.18) 18%,
      rgba(11, 28, 48, 0.72) 62%,
      rgba(17, 42, 74, 0.92) 100%
    );
}

.slots-showcase__media-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.media-stat {
  padding: 16px 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(6px);
}

.media-stat strong {
  display: block;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.media-stat span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.slots-showcase__media-badge {
  z-index: 3;
}

@media (max-width: 767px) {
  .slots-showcase__media-info {
    padding: 72px 18px 74px;
  }

  .slots-showcase__media-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .media-stat strong {
    font-size: 20px;
  }
}
.slots-showcase__media-note {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;

  max-width: 520px;

  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.slots-showcase__media-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 80px 26px 70px;

  background:
    linear-gradient(
      180deg,
      rgba(10,20,35,0) 0%,
      rgba(10,20,35,0.35) 30%,
      rgba(12,28,50,0.85) 100%
    );
}

/* =========================================================
   Table Games Showcase
========================================================= */

.tables-showcase {
  padding: 100px 0;
}

.tables-showcase__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.tables-showcase__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.tables-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay gradient */
.tables-showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,20,35,0) 0%,
    rgba(10,20,35,0.5) 40%,
    rgba(12,28,50,0.95) 100%
  );
}

/* badge */
.tables-showcase__media-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 16px;
  border-radius: 999px;

  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

/* text bottom */
.tables-showcase__media-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 40px 26px 36px;
  z-index: 2;
}

.tables-showcase__media-note {
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  max-width: 720px;
}

.tables-showcase__media-note strong {
  color: #f2c47f;
}

/* CONTENT */
.tables-showcase__content {
  padding: 20px;
}

.tables-showcase__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #caa35a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.tables-showcase__title {
  font-size: 36px;
  margin-bottom: 18px;
  color: #0f2238;
}

.tables-showcase__text {
  font-size: 16px;
  line-height: 1.7;
  color: #5c6778;
  margin-bottom: 28px;
}

/* cards */
.tables-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tables-card {
  padding: 22px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.tables-card__badge {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  color: #caa35a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tables-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tables-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* responsive */
@media (max-width: 991px) {
  .tables-showcase__wrapper {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Bonuses / Rewards / Promotions Section
========================================================= */

.offers-showcase {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 122, 26, 0.10), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(21, 52, 88, 0.12), transparent 24%),
    linear-gradient(180deg, #f7f2ea 0%, #eef3f8 100%);
  overflow: hidden;
}

.offers-showcase .container {
  max-width: 1540px;
}

.offers-showcase__panel {
  position: relative;
  z-index: 2;
  padding: 64px 46px 46px;
  border-radius: 40px;
  border: 1px solid rgba(18, 36, 59, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(249,250,252,0.98) 100%);
  box-shadow:
    0 36px 96px rgba(16, 27, 45, 0.10),
    0 12px 24px rgba(255, 122, 26, 0.05);
  overflow: hidden;
}

.offers-showcase__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.offers-showcase__glow--left {
  top: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.14) 0%, rgba(255, 122, 26, 0) 72%);
}

.offers-showcase__glow--right {
  right: -140px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(21, 52, 88, 0.12) 0%, rgba(21, 52, 88, 0) 72%);
}

.offers-showcase__header,
.offers-showcase__layout {
  position: relative;
  z-index: 2;
}

.offers-showcase__header {
  max-width: 980px;
  margin: 0 auto 42px;
}

.offers-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 26, 0.24);
  background: rgba(255,255,255,0.90);
  color: #c56621;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offers-showcase__title {
  margin: 16px 0 0;
  color: #102a4a;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 700;
  text-transform: uppercase;
}

.offers-showcase__subtitle {
  max-width: 860px;
  margin: 18px auto 0;
  color: #617085;
  font-size: 18px;
  line-height: 1.8;
}

.offers-showcase__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
}

/* CLUSTERS */
.offers-cluster {
  border-radius: 32px;
  overflow: hidden;
}

.offers-cluster--land {
  padding: 32px 28px 28px;
  background: linear-gradient(180deg, #fff6ed 0%, #ffffff 100%);
  border: 1px solid rgba(255, 122, 26, 0.12);
  box-shadow:
    0 18px 40px rgba(16, 27, 45, 0.06),
    0 8px 18px rgba(255, 122, 26, 0.05);
}

.offers-cluster--online {
  padding: 34px 30px 28px;
  background:
    linear-gradient(135deg, #0f2542 0%, #173a63 52%, #214d7f 76%, #ff8f2a 100%);
  box-shadow:
    0 24px 48px rgba(15, 37, 66, 0.18),
    0 10px 20px rgba(255, 143, 42, 0.10);
  position: relative;
}

.offers-cluster--online::before {
  content: "";
  position: absolute;
  top: -80px;
  right: 60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}

.offers-cluster__top {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.offers-cluster__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.10);
  color: #c56621;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offers-cluster__label--dark {
  background: rgba(255,255,255,0.10);
  color: #ffd090;
  border: 1px solid rgba(255,255,255,0.12);
}

.offers-cluster__title {
  margin: 14px 0 0;
  color: #112b4b;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 700;
  text-transform: uppercase;
}

.offers-cluster__title--dark {
  color: #ffffff;
}

.offers-cluster__text {
  margin: 14px 0 0;
  color: #647386;
  font-size: 16px;
  line-height: 1.8;
}

.offers-cluster__text--dark {
  color: rgba(255,255,255,0.88);
}

/* HERO CARD */
.offers-hero-card {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 24px 22px;
  margin-bottom: 18px;
  border-radius: 24px;
}

.offers-hero-card--light {
  background: linear-gradient(135deg, #ffffff 0%, #fff4e8 100%);
  border: 1px solid rgba(255, 122, 26, 0.12);
  box-shadow:
    0 16px 34px rgba(16, 27, 45, 0.05),
    0 6px 14px rgba(255, 122, 26, 0.04);
}

.offers-hero-card__icon {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff8f2a 0%, #ffd28e 100%);
  color: #ffffff;
  font-size: 30px;
  box-shadow: 0 12px 24px rgba(255, 143, 42, 0.20);
}

.offers-hero-card__content h4 {
  margin: 0 0 10px;
  color: #102a4a;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.offers-hero-card__content p {
  margin: 0;
  color: #637286;
  font-size: 15px;
  line-height: 1.7;
}

/* MAIN BONUS */
.offers-main-bonus {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
  padding: 24px 24px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.offers-main-bonus__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #ffd090;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offers-main-bonus__value {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
}

.offers-main-bonus__text {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  line-height: 1.7;
}

/* GRIDS */
.offers-grid {
  display: grid;
  gap: 18px;
}

.offers-grid--land {
  grid-template-columns: repeat(2, 1fr);
}

.offers-grid--online {
  grid-template-columns: repeat(2, 1fr);
}

/* CARDS */
.offer-card {
  position: relative;
  border-radius: 24px;
  transition:
    transform 0.30s ease,
    box-shadow 0.30s ease,
    border-color 0.30s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
}

.offer-card--light {
  padding: 22px 20px 20px;
  background: #ffffff;
  border: 1px solid rgba(18, 36, 59, 0.08);
  box-shadow:
    0 16px 34px rgba(16, 27, 45, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.offer-card--light:hover {
  border-color: rgba(255, 122, 26, 0.18);
  box-shadow:
    0 22px 42px rgba(16, 27, 45, 0.10),
    0 10px 20px rgba(255, 122, 26, 0.07);
}

.offer-card--dark {
  padding: 20px 18px 18px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
}

.offer-card--dark:hover {
  background: rgba(255,255,255,0.12);
  box-shadow: 0 18px 32px rgba(10, 24, 42, 0.18);
}

.offer-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.10);
  color: #c56621;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card__badge--dark {
  background: rgba(255,255,255,0.12);
  color: #ffd090;
}

.offer-card__title {
  margin: 0 0 10px;
  color: #112b4b;
  font-size: 22px;
  line-height: 1.24;
  font-weight: 700;
}

.offer-card__title--dark {
  color: #ffffff;
}

.offer-card__text {
  margin: 0;
  color: #627287;
  font-size: 15px;
  line-height: 1.7;
}

.offer-card__text--dark {
  color: rgba(255,255,255,0.86);
}

/* MINI STRIP */
.offers-mini-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.offers-mini-strip__item {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.offers-mini-strip__item i {
  color: #ffd090;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 1399px) {
  .offers-showcase__title {
    font-size: 40px;
  }

  .offers-showcase__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .offers-showcase {
    padding: 90px 0;
  }

  .offers-showcase__panel {
    padding: 46px 24px 28px;
    border-radius: 28px;
  }

  .offers-showcase__title {
    font-size: 32px;
  }

  .offers-showcase__subtitle {
    font-size: 17px;
  }

  .offers-cluster__title {
    font-size: 26px;
  }

  .offers-grid--land,
  .offers-grid--online {
    grid-template-columns: 1fr;
  }

  .offers-mini-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .offers-showcase__title {
    font-size: 28px;
    line-height: 1.14;
  }

  .offers-showcase__subtitle {
    font-size: 16px;
    line-height: 1.7;
  }

  .offers-cluster--land,
  .offers-cluster--online {
    padding: 24px 18px 18px;
    border-radius: 24px;
  }

  .offers-main-bonus__value {
    font-size: 24px;
  }

  .offers-mini-strip {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Providers Showcase
========================================================= */

.providers-showcase {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(197, 145, 78, 0.08), transparent 22%),
    radial-gradient(circle at 88% 16%, rgba(20, 55, 96, 0.10), transparent 24%),
    linear-gradient(180deg, #f4f7fb 0%, #eef2f6 100%);
  overflow: hidden;
}

.providers-showcase .container {
  max-width: 1540px;
}

.providers-showcase__panel {
  position: relative;
  z-index: 2;
  padding: 64px 32px 30px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, #0f2137 0%, #122a47 52%, #10233d 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 34px 90px rgba(10, 24, 42, 0.24),
    0 10px 24px rgba(197, 145, 78, 0.06);
  overflow: hidden;
}

.providers-showcase__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.providers-showcase__glow--left {
  top: -120px;
  left: -140px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(197, 145, 78, 0.16) 0%, rgba(197, 145, 78, 0) 72%);
}

.providers-showcase__glow--right {
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(20, 55, 96, 0.20) 0%, rgba(20, 55, 96, 0) 72%);
}

.providers-showcase__header,
.providers-showcase__top-grid,
.providers-grid,
.providers-note {
  position: relative;
  z-index: 2;
}

.providers-showcase__header {
  max-width: 940px;
  margin: 0 auto 34px;
}

.providers-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(197, 145, 78, 0.14);
  border: 1px solid rgba(197, 145, 78, 0.20);
  color: #f2c47f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.providers-showcase__title {
  margin: 16px 0 0;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 700;
  text-transform: uppercase;
}

.providers-showcase__subtitle {
  max-width: 860px;
  margin: 18px auto 0;
  color: rgba(255,255,255,0.84);
  font-size: 17px;
  line-height: 1.8;
}

.providers-showcase__subtitle strong {
  color: #f2c47f;
}

/* Top */
.providers-showcase__top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.providers-intro-card {
  padding: 26px 24px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.providers-intro-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(197, 145, 78, 0.14);
  color: #f2c47f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.providers-intro-card__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
}

.providers-intro-card__text {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.75;
}

.providers-intro-card__text + .providers-intro-card__text {
  margin-top: 12px;
}

.providers-intro-card__text strong {
  color: #f2c47f;
}

.providers-points {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.providers-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  line-height: 1.65;
}

.providers-points li + li {
  margin-top: 8px;
}

.providers-points li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c5914e 0%, #ffd090 100%);
  box-shadow: 0 0 0 4px rgba(197,145,78,0.12);
}

/* Grid */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.provider-card {
  padding: 14px 14px 16px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 10px 24px rgba(8, 18, 32, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition:
    transform 0.30s ease,
    box-shadow 0.30s ease,
    border-color 0.30s ease;
}

.provider-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 145, 78, 0.22);
  box-shadow:
    0 18px 34px rgba(8, 18, 32, 0.28),
    0 10px 20px rgba(197, 145, 78, 0.08);
}

.provider-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(10,20,35,0.30) 0%, rgba(10,20,35,0.18) 100%);
  border: 1px solid rgba(197, 145, 78, 0.16);
}

.provider-card__logo img {
  max-width: 120px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.provider-card__title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.provider-card__text {
  margin: 0;
  color: rgba(255,255,255,0.80);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

/* Note */
.providers-note {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(9, 18, 32, 0.36);
  border: 1px solid rgba(197, 145, 78, 0.18);
}

.providers-note p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  line-height: 1.7;
}

.providers-note strong {
  color: #f2c47f;
}

/* Responsive */
@media (max-width: 1399px) {
  .providers-showcase__title {
    font-size: 36px;
  }

  .providers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .providers-showcase {
    padding: 90px 0;
  }

  .providers-showcase__panel {
    padding: 46px 20px 22px;
    border-radius: 28px;
  }

  .providers-showcase__top-grid {
    grid-template-columns: 1fr;
  }

  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .providers-showcase__title {
    font-size: 30px;
  }

  .providers-intro-card__title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .providers-showcase__title {
    font-size: 26px;
    line-height: 1.14;
  }

  .providers-showcase__subtitle {
    font-size: 16px;
    line-height: 1.7;
  }

  .providers-grid {
    grid-template-columns: 1fr;
  }

  .provider-card__title {
    font-size: 20px;
  }
}

.promo-banner--bonus .promo-banner__media {
  background-image: url("../images/banner/banner-bonus.jpg");
}

/* =========================================================
   Visitor Information Section
========================================================= */

.visitor-info {
  padding: 95px 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(193,141,74,0.08), transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(18,36,59,0.10), transparent 30%),
    linear-gradient(180deg, #f4f7fb 0%, #eef2f6 100%);
}

.visitor-info__header {
  max-width: 860px;
  margin: 0 auto 50px;
}

.visitor-info__eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(193,141,74,0.12);
  color: #b9884e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visitor-info__title {
  margin: 18px 0 0;
  font-size: 38px;
  font-weight: 700;
  color: #142033;
  text-transform: uppercase;
}

.visitor-info__subtitle {
  margin-top: 16px;
  color: #5a667b;
  font-size: 17px;
  line-height: 1.75;
}

/* Grid */
.visitor-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Card */
.visitor-card {
  padding: 28px 26px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(18,34,56,0.08);
  box-shadow: 0 18px 40px rgba(12,27,49,0.06);
  transition: 0.3s ease;
}

.visitor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(12,27,49,0.10);
}

.visitor-card__badge {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b9884e;
}

.visitor-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #142033;
  margin-bottom: 12px;
}

.visitor-card p {
  font-size: 15px;
  color: #5a667b;
  line-height: 1.7;
}

.visitor-card ul {
  margin-top: 14px;
  padding-left: 18px;
}

.visitor-card li {
  font-size: 14px;
  color: #6b7486;
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 991px) {
  .visitor-info__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .visitor-info__grid {
    grid-template-columns: 1fr;
  }

  .visitor-info__title {
    font-size: 28px;
  }
}

/* =========================================================
   App Showcase Section
========================================================= */

.app-showcase {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(197, 145, 78, 0.10), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(21, 52, 88, 0.10), transparent 24%),
    linear-gradient(180deg, #f8f6f2 0%, #f2f5f9 55%, #edf2f7 100%);
  overflow: hidden;
}

.app-showcase .container {
  max-width: 1520px;
}

.app-showcase__panel {
  position: relative;
  z-index: 2;
  padding: 64px 46px 46px;
  border-radius: 38px;
  border: 1px solid rgba(18, 36, 59, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(249,250,252,0.98) 100%);
  box-shadow:
    0 34px 90px rgba(16, 27, 45, 0.09),
    0 10px 24px rgba(197, 145, 78, 0.05);
  overflow: hidden;
}

.app-showcase__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.app-showcase__glow--left {
  top: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(197, 145, 78, 0.14) 0%, rgba(197, 145, 78, 0) 72%);
}

.app-showcase__glow--right {
  right: -120px;
  bottom: -140px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(21, 52, 88, 0.12) 0%, rgba(21, 52, 88, 0) 72%);
}

.app-showcase__header,
.app-showcase__layout {
  position: relative;
  z-index: 2;
}

.app-showcase__header {
  max-width: 940px;
  margin: 0 auto 42px;
}

.app-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(197, 145, 78, 0.30);
  background: rgba(255,255,255,0.88);
  color: #aa7540;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(18, 36, 59, 0.04);
}

.app-showcase__title {
  margin: 16px 0 0;
  color: #102a4a;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.app-showcase__subtitle {
  max-width: 860px;
  margin: 18px auto 0;
  color: #5f6d80;
  font-size: 18px;
  line-height: 1.8;
}

.app-showcase__subtitle strong {
  color: #173a63;
}

/* Layout */
.app-showcase__layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: start;
}

/* Left column */
.app-showcase__media-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-showcase__media {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #17365a 0%, #264e7d 62%, #c5914e 100%);
  box-shadow:
    0 24px 50px rgba(16, 27, 45, 0.14),
    0 8px 18px rgba(197, 145, 78, 0.10);
}

.app-showcase__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.00) 26%),
    linear-gradient(180deg, rgba(10,20,35,0.00) 42%, rgba(10,20,35,0.30) 100%);
  z-index: 1;
}

.app-showcase__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.app-showcase__media:hover img {
  transform: scale(1.04);
}

.app-showcase__media-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15, 37, 66, 0.88);
  border: 1px solid rgba(255,255,255,0.10);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.app-showcase__media-badge i {
  color: #f0be77;
  font-size: 16px;
}

.app-showcase__media-note {
  padding: 26px 24px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  border: 1px solid rgba(18, 36, 59, 0.08);
  box-shadow:
    0 16px 34px rgba(16, 27, 45, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.app-showcase__media-title {
  margin: 0 0 12px;
  color: #112b4b;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 700;
  text-transform: uppercase;
}

.app-showcase__media-text {
  margin: 0;
  color: #627287;
  font-size: 15px;
  line-height: 1.75;
}

.app-showcase__media-text strong {
  color: #173a63;
}

/* Right column */
.app-showcase__content-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.app-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.app-feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border: 1px solid rgba(18, 36, 59, 0.08);
  box-shadow:
    0 16px 34px rgba(16, 27, 45, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition:
    transform 0.30s ease,
    box-shadow 0.30s ease,
    border-color 0.30s ease;
}

.app-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 145, 78, 0.22);
  box-shadow:
    0 22px 42px rgba(16, 27, 45, 0.10),
    0 10px 20px rgba(197, 145, 78, 0.08);
}

.app-feature-card__icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff8ef 0%, #f6ead7 100%);
  color: #c2863e;
  font-size: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.app-feature-card__title {
  margin: 0 0 10px;
  color: #112b4b;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
}

.app-feature-card__text {
  margin: 0;
  color: #627287;
  font-size: 15px;
  line-height: 1.7;
}

.app-feature-card__text strong {
  color: #173a63;
}

/* Installation block */
.app-installation {
  padding: 28px 26px 24px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, #0f2542 0%, #173a63 55%, #214d7f 78%, #c58f4b 100%);
  box-shadow:
    0 24px 46px rgba(15, 37, 66, 0.18),
    0 10px 20px rgba(197, 143, 75, 0.08);
  position: relative;
  overflow: hidden;
}

.app-installation::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}

.app-installation__label,
.app-installation__title,
.app-installation__steps,
.app-installation__stores {
  position: relative;
  z-index: 2;
}

.app-installation__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: #ffd090;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.app-installation__title {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.14;
  font-weight: 700;
  text-transform: uppercase;
}

.app-installation__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.app-installation__step {
  padding: 18px 16px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
}

.app-installation__step strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 8px;
}

.app-installation__step p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  line-height: 1.7;
}

/* Store badges */
.app-installation__stores {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.app-store-badge:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.16);
}

.app-store-badge img {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 1399px) {
  .app-showcase__title {
    font-size: 40px;
  }

  .app-showcase__layout {
    grid-template-columns: 1fr;
  }

  .app-showcase__media img {
    min-height: 460px;
  }
}

@media (max-width: 991px) {
  .app-showcase {
    padding: 90px 0;
  }

  .app-showcase__panel {
    padding: 46px 24px 28px;
    border-radius: 28px;
  }

  .app-showcase__title {
    font-size: 32px;
  }

  .app-showcase__subtitle {
    font-size: 17px;
  }

  .app-feature-grid {
    grid-template-columns: 1fr;
  }

  .app-installation__title {
    font-size: 26px;
  }

  .app-installation__steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .app-showcase__title {
    font-size: 28px;
    line-height: 1.14;
  }

  .app-showcase__subtitle {
    font-size: 16px;
    line-height: 1.7;
  }

  .app-showcase__media img {
    min-height: 320px;
  }

  .app-showcase__media-note {
    padding: 22px 18px 18px;
  }

  .app-showcase__media-title {
    font-size: 21px;
  }

  .app-feature-card {
    padding: 20px 18px 18px;
  }

  .app-feature-card__title {
    font-size: 20px;
  }

  .app-installation {
    padding: 24px 18px 20px;
  }

  .app-store-badge {
    width: 100%;
    justify-content: flex-start;
  }
}

/* =========================================================
   Payments Showcase Section
========================================================= */

.payments-showcase {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(197, 145, 78, 0.10), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(21, 52, 88, 0.10), transparent 26%),
    linear-gradient(180deg, #f8f6f2 0%, #f2f5f9 55%, #edf2f7 100%);
  overflow: hidden;
}

.payments-showcase .container {
  max-width: 1540px;
}

.payments-showcase__panel {
  position: relative;
  z-index: 2;
  padding: 64px 46px 46px;
  border-radius: 38px;
  border: 1px solid rgba(18, 36, 59, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(249,250,252,0.98) 100%);
  box-shadow:
    0 34px 90px rgba(16, 27, 45, 0.09),
    0 10px 24px rgba(197, 145, 78, 0.05);
  overflow: hidden;
}

.payments-showcase__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.payments-showcase__glow--left {
  top: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(197, 145, 78, 0.14) 0%, rgba(197, 145, 78, 0) 72%);
}

.payments-showcase__glow--right {
  right: -120px;
  bottom: -140px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(21, 52, 88, 0.12) 0%, rgba(21, 52, 88, 0) 72%);
}

.payments-showcase__header,
.payments-intro-grid,
.payments-cashier,
.payments-info-grid {
  position: relative;
  z-index: 2;
}

.payments-showcase__header {
  max-width: 980px;
  margin: 0 auto 36px;
}

.payments-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(197, 145, 78, 0.30);
  background: rgba(255,255,255,0.88);
  color: #aa7540;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(18, 36, 59, 0.04);
}

.payments-showcase__title {
  margin: 16px 0 0;
  color: #102a4a;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 700;
  text-transform: uppercase;
}

.payments-showcase__subtitle {
  max-width: 900px;
  margin: 18px auto 0;
  color: #5f6d80;
  font-size: 18px;
  line-height: 1.8;
}

.payments-showcase__subtitle strong {
  color: #173a63;
}

/* Intro cards */
.payments-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.payments-intro-card {
  padding: 28px 24px 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  border: 1px solid rgba(18, 36, 59, 0.08);
  box-shadow:
    0 16px 34px rgba(16, 27, 45, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.payments-intro-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 16px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(197, 145, 78, 0.10);
  color: #aa7540;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.payments-intro-card__title {
  margin: 0 0 12px;
  color: #112b4b;
  font-size: 28px;
  line-height: 1.16;
  font-weight: 700;
}

.payments-intro-card__text {
  margin: 0;
  color: #627287;
  font-size: 15px;
  line-height: 1.75;
}

.payments-intro-card__text strong {
  color: #173a63;
}

/* Cashier */
.payments-cashier {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 18px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, #0f2137 0%, #122a47 52%, #10233d 100%);
  box-shadow:
    0 30px 70px rgba(10, 24, 42, 0.20),
    0 10px 22px rgba(197, 145, 78, 0.08);
  overflow: hidden;
}

.payments-cashier__top {
  margin-bottom: 18px;
}

.payments-cashier__selectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.payments-select__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.84);
  font-size: 12px;
  font-weight: 600;
}

.payments-select__field {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(197, 145, 78, 0.18);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

.payments-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.payments-tab {
  min-width: 132px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.payments-tab.is-active {
  background: linear-gradient(135deg, #12243b 0%, #1c426b 60%, #c18d4a 100%);
  border-color: rgba(255,255,255,0.14);
  box-shadow:
    0 12px 24px rgba(10, 24, 42, 0.22),
    0 6px 14px rgba(197, 145, 78, 0.14);
}

.payments-tab:hover {
  transform: translateY(-2px);
}

.payments-table {
  display: none;
}

.payments-table.is-active {
  display: block;
}

.payments-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  margin-top: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(197, 145, 78, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.payments-row__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.payments-row__icon {
  width: 68px;
  height: 50px;
  flex: 0 0 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(9, 18, 32, 0.34);
  border: 1px solid rgba(197, 145, 78, 0.16);
  overflow: hidden;
}

.payments-row__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.payments-row__info {
  min-width: 0;
}

.payments-row__info strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}

.payments-row__info span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  line-height: 1.45;
}

.payments-row__amount {
  flex: 0 0 auto;
  color: #ffd28d;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

/* Info cards after table */
.payments-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.payments-info-card {
  padding: 24px 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border: 1px solid rgba(18, 36, 59, 0.08);
  box-shadow:
    0 16px 34px rgba(16, 27, 45, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition:
    transform 0.30s ease,
    box-shadow 0.30s ease,
    border-color 0.30s ease;
}

.payments-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 145, 78, 0.22);
  box-shadow:
    0 22px 42px rgba(16, 27, 45, 0.10),
    0 10px 20px rgba(197, 145, 78, 0.08);
}

.payments-info-card__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff8ef 0%, #f6ead7 100%);
  color: #c2863e;
  font-size: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.payments-info-card__title {
  margin: 0 0 10px;
  color: #112b4b;
  font-size: 22px;
  line-height: 1.24;
  font-weight: 700;
}

.payments-info-card__text {
  margin: 0;
  color: #627287;
  font-size: 15px;
  line-height: 1.75;
}

.payments-info-card__text strong {
  color: #173a63;
}

/* Responsive */
@media (max-width: 1399px) {
  .payments-showcase__title {
    font-size: 38px;
  }

  .payments-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .payments-showcase {
    padding: 90px 0;
  }

  .payments-showcase__panel {
    padding: 46px 24px 28px;
    border-radius: 28px;
  }

  .payments-showcase__title {
    font-size: 30px;
  }

  .payments-showcase__subtitle {
    font-size: 17px;
  }

  .payments-intro-grid {
    grid-template-columns: 1fr;
  }

  .payments-cashier {
    padding: 18px 14px 14px;
    border-radius: 24px;
  }

  .payments-cashier__selectors {
    grid-template-columns: 1fr;
  }

  .payments-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .payments-row__left {
    width: 100%;
  }

  .payments-row__amount {
    width: 100%;
    text-align: left;
    padding-left: 72px;
  }

  .payments-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .payments-showcase__title {
    font-size: 27px;
    line-height: 1.14;
  }

  .payments-showcase__subtitle {
    font-size: 16px;
    line-height: 1.7;
  }

  .payments-intro-card {
    padding: 22px 18px 18px;
  }

  .payments-intro-card__title {
    font-size: 24px;
  }

  .payments-tabs {
    flex-direction: column;
  }

  .payments-tab {
    width: 100%;
  }

  .payments-row__icon {
    width: 52px;
    height: 38px;
    flex: 0 0 52px;
  }

  .payments-row__icon img {
    width: 30px;
    height: 30px;
  }

  .payments-row__amount {
    padding-left: 66px;
  }

  .payments-info-card {
    padding: 20px 18px 18px;
  }

  .payments-info-card__title {
    font-size: 20px;
  }
}

/* =========================================================
   Operating Standards & Player Safeguards
========================================================= */

.standards-showcase {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(197, 145, 78, 0.10), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(21, 52, 88, 0.10), transparent 26%),
    linear-gradient(180deg, #f8f6f2 0%, #f2f5f9 55%, #edf2f7 100%);
  overflow: hidden;
}

.standards-showcase .container {
  max-width: 1540px;
}

.standards-showcase__panel {
  position: relative;
  z-index: 2;
  padding: 64px 46px 46px;
  border-radius: 38px;
  border: 1px solid rgba(18, 36, 59, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(249,250,252,0.98) 100%);
  box-shadow:
    0 34px 90px rgba(16, 27, 45, 0.09),
    0 10px 24px rgba(197, 145, 78, 0.05);
  overflow: hidden;
}

.standards-showcase__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.standards-showcase__glow--left {
  top: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(197, 145, 78, 0.14) 0%, rgba(197, 145, 78, 0) 72%);
}

.standards-showcase__glow--right {
  right: -120px;
  bottom: -140px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(21, 52, 88, 0.12) 0%, rgba(21, 52, 88, 0) 72%);
}

.standards-showcase__header,
.standards-showcase__grid {
  position: relative;
  z-index: 2;
}

.standards-showcase__header {
  max-width: 980px;
  margin: 0 auto 40px;
}

.standards-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(197, 145, 78, 0.30);
  background: rgba(255,255,255,0.88);
  color: #aa7540;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(18, 36, 59, 0.04);
}

.standards-showcase__title {
  margin: 16px 0 0;
  color: #102a4a;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 700;
  text-transform: uppercase;
}

.standards-showcase__subtitle {
  max-width: 900px;
  margin: 18px auto 0;
  color: #5f6d80;
  font-size: 18px;
  line-height: 1.8;
}

.standards-showcase__subtitle strong {
  color: #173a63;
}

.standards-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.standard-card {
  padding: 28px 26px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  border: 1px solid rgba(18, 36, 59, 0.08);
  box-shadow:
    0 16px 34px rgba(16, 27, 45, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition:
    transform 0.30s ease,
    box-shadow 0.30s ease,
    border-color 0.30s ease;
}

.standard-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 145, 78, 0.22);
  box-shadow:
    0 22px 42px rgba(16, 27, 45, 0.10),
    0 10px 20px rgba(197, 145, 78, 0.08);
}

.standard-card__icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff8ef 0%, #f6ead7 100%);
  color: #c2863e;
  font-size: 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.standard-card__title {
  margin: 0 0 12px;
  color: #112b4b;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.standard-card__text {
  margin: 0;
  color: #627287;
  font-size: 15px;
  line-height: 1.78;
}

.standard-card__text + .standard-card__text {
  margin-top: 12px;
}

.standard-card__text strong {
  color: #173a63;
}

@media (max-width: 1399px) {
  .standards-showcase__title {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .standards-showcase {
    padding: 90px 0;
  }

  .standards-showcase__panel {
    padding: 46px 24px 28px;
    border-radius: 28px;
  }

  .standards-showcase__title {
    font-size: 30px;
  }

  .standards-showcase__subtitle {
    font-size: 17px;
  }

  .standards-showcase__grid {
    grid-template-columns: 1fr;
  }

  .standard-card {
    padding: 24px 20px 20px;
  }

  .standard-card__title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .standards-showcase__title {
    font-size: 27px;
    line-height: 1.14;
  }

  .standards-showcase__subtitle {
    font-size: 16px;
    line-height: 1.7;
  }

  .standard-card {
    padding: 22px 18px 18px;
  }

  .standard-card__title {
    font-size: 20px;
  }
}

/* =========================================================
   FAQ Section
========================================================= */

.faq-showcase {
  padding: 90px 0;
  background: linear-gradient(180deg, #f4f7fb 0%, #eef2f7 100%);
}

.faq-showcase__header {
  max-width: 760px;
  margin: 0 auto 50px;
}

.faq-showcase__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(18,36,59,0.08);
  color: #b98952;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-showcase__title {
  font-size: 34px;
  font-weight: 600;
  color: #142033;
  line-height: 1.2;
}

.faq-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(18, 36, 59, 0.08);
  box-shadow: 0 12px 28px rgba(14, 26, 44, 0.08);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(14, 26, 44, 0.10);
}

.faq-item.active {
  border-color: rgba(185, 137, 82, 0.24);
  box-shadow:
    0 20px 38px rgba(14, 26, 44, 0.10),
    0 8px 18px rgba(185, 137, 82, 0.08);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: #142033;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.faq-question__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-question__icon::before,
.faq-question__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #b98952;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-question__icon::before {
  width: 18px;
  height: 2px;
}

.faq-question__icon::after {
  width: 2px;
  height: 18px;
}

.faq-item.active .faq-question__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0.2);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer__inner {
  overflow: hidden;
  padding: 0 20px;
}

.faq-answer p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.75;
  color: #5a667b;
}

@media (max-width: 991px) {
  .faq-showcase__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .faq-showcase__title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px 16px;
  }

  .faq-answer__inner {
    padding: 0 16px;
  }
}

.footer-classic-main {
  padding: 55px 0 35px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-classic__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #f2c47f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-classic__brand-block,
.footer-classic__nav-block {
  height: 100%;
}

.footer-classic__description {
  margin-top: 18px;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.75;
}

.footer-classic__small {
  margin-top: 12px;
  color: rgba(255,255,255,0.52);
  font-size: 13px;
  line-height: 1.7;
}

.footer-classic__title {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.footer-classic__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-classic__list li + li {
  margin-top: 10px;
}

.footer-classic__list a,
.footer-classic__list li {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-classic__list a:hover {
  color: #f2c47f;
}

.footer-classic__list--meta span {
  color: #ffffff;
  font-weight: 600;
}

.footer-classic__disclaimer {
  margin-top: 8px;
  color: rgba(255,255,255,0.50);
  font-size: 12px;
  line-height: 1.7;
}

.footer-classic__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-classic__trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #f2c47f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .footer-classic-main {
    padding: 40px 0 20px;
  }

  .footer-classic__trust {
    justify-content: flex-start;
  }
}


/* ==========================================
   THE GRAND ROYAL EXPERIENCE
========================================== */

#experience {
  background: #171b21;
  position: relative;
  overflow: hidden;
}

#experience::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -250px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(196, 238, 236, 0.04);
}

#experience::after {
  content: "";
  position: absolute;
  bottom: -300px;
  left: -300px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(196, 238, 236, 0.03);
}

#experience .container {
  position: relative;
  z-index: 2;
}

#experience .section-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c4eeec;
}

#experience h2 {
  color: #ffffff;
  margin-bottom: 25px;
}

#experience h3 {
  color: #ffffff;
  margin-bottom: 25px;
}

#experience .big {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255,255,255,.85);
  font-size: 20px;
  line-height: 1.9;
}

#experience p {
  color: rgba(255,255,255,.75);
  line-height: 1.9;
}

#experience img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

/* cards */

#experience .box-minimal {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 30px 25px;
  height: 100%;
  transition: .3s ease;
}

#experience .box-minimal:hover {
  transform: translateY(-5px);
  border-color: rgba(196,238,236,.3);
  background: rgba(255,255,255,.06);
}

#experience .box-minimal-icon {
  font-size: 38px;
  color: #c4eeec;
  margin-bottom: 20px;
}

#experience .box-minimal-title {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 20px;
}

#experience .box-minimal p {
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  font-size: 15px;
}

/* text blocks */

#experience .row:last-child {
  margin-top: 70px;
}

#experience .row:last-child h3 {
  position: relative;
  padding-bottom: 15px;
}

#experience .row:last-child h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background: #c4eeec;
}

#experience .row:last-child p + p {
  margin-top: 20px;
}

/* responsive */

@media (max-width: 991px) {

  #experience .big {
    font-size: 18px;
  }

  #experience .row:last-child {
    margin-top: 50px;
  }

  #experience .box-minimal {
    padding: 25px 20px;
  }

}

@media (max-width: 767px) {

  #experience h2 {
    font-size: 34px;
  }

  #experience h3 {
    font-size: 26px;
  }

  #experience .big {
    font-size: 17px;
    line-height: 1.8;
  }

}

/* ==========================================
   THE GRAND ROYAL EXPERIENCE
========================================== */

.experience-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(196, 238, 236, 0.08), transparent 35%),
    radial-gradient(circle at bottom left, rgba(196, 238, 236, 0.05), transparent 40%),
    #15191f;
}

.experience-section .container {
  position: relative;
  z-index: 2;
}

.experience-head {
  max-width: 980px;
  margin: 0 auto 60px;
  text-align: center;
}

.experience-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: #c4eeec;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.experience-head h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.experience-head p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.9;
}

.experience-image {
  position: relative;
}

.experience-image::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(196, 238, 236, 0.35);
  border-radius: 18px;
  z-index: 1;
}

.experience-image img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.experience-facts {
  display: grid;
  gap: 18px;
}

.experience-fact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
}

.experience-fact-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 238, 236, 0.12);
  color: #c4eeec;
  font-size: 22px;
}

.experience-fact-card h4 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 20px;
}

.experience-fact-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.experience-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 70px;
}

.experience-info-card {
  position: relative;
  min-height: 100%;
  padding: 34px 30px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 18px;
  transition: 0.3s ease;
}

.experience-info-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(196, 238, 236, 0.35);
}

.experience-card-number {
  display: inline-block;
  margin-bottom: 20px;
  color: rgba(196, 238, 236, 0.55);
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.experience-info-card h3 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 25px;
}

.experience-info-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.85;
}

.experience-bottom {
  margin-top: 60px;
  padding: 38px;
  background: linear-gradient(135deg, rgba(196, 238, 236, 0.13), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(196, 238, 236, 0.22);
  border-radius: 20px;
}

.experience-bottom-content {
  max-width: 960px;
}

.experience-bottom h3 {
  margin-bottom: 18px;
  color: #ffffff;
}

.experience-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.9;
}

@media (max-width: 1199px) {
  .experience-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .experience-head {
    margin-bottom: 45px;
  }

  .experience-head p {
    font-size: 17px;
  }

  .experience-info-grid {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .experience-info-grid {
    grid-template-columns: 1fr;
  }

  .experience-fact-card {
    padding: 22px;
  }

  .experience-bottom {
    padding: 28px 22px;
  }
}

/* ==========================================
   CASINO FLOOR OVERVIEW
========================================== */

.casino-floor-section {
  background: #f8f5ef;
}

.casino-floor-header {
  max-width: 950px;
  margin: 0 auto 70px;
}

.casino-floor-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  color: #b79d62;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.casino-floor-header h2 {
  margin-bottom: 25px;
}

.casino-floor-header p {
  color: #666;
  font-size: 18px;
  line-height: 1.9;
}

.casino-floor-image {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.casino-floor-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.casino-stat {
  flex: 1;
  text-align: center;
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.casino-stat-number {
  display: block;
  font-size: 34px;
  font-weight: 700;
  color: #1d2127;
}

.casino-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #777;
}

.casino-features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  margin-top: 70px;
}

.casino-feature-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0,0,0,.05);
  transition: .3s ease;
}

.casino-feature-card:hover {
  transform: translateY(-6px);
}

.casino-feature-card i {
  display: block;
  margin-bottom: 20px;
  font-size: 34px;
  color: #b79d62;
}

.casino-feature-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.casino-feature-card p {
  color: #666;
  line-height: 1.8;
}

@media (max-width: 991px) {

  .casino-floor-stats {
    flex-direction: column;
  }

  .casino-features-grid {
    grid-template-columns: repeat(2,1fr);
  }

}

@media (max-width: 767px) {

  .casino-features-grid {
    grid-template-columns: 1fr;
  }

}

/* ==========================================
   SLOT MACHINES SECTION
========================================== */

.slots-section {
  background: #f8f5ef;
  position: relative;
}

.slots-header {
  max-width: 1000px;
  margin: 0 auto 70px;
}

.slots-header .section-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  color: #b79d62;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.slots-header h2 {
  margin-bottom: 25px;
  color: #1d2127;
}

.slots-intro {
  font-size: 19px;
  line-height: 1.9;
  color: #5f646b;
  max-width: 950px;
  margin: 0 auto;
}

/* statistics */

.slots-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}

.slot-stat {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,.05);
  transition: .3s ease;
}

.slot-stat:hover {
  transform: translateY(-5px);
}

.slot-stat span {
  display: block;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: #1d2127;
  margin-bottom: 10px;
  font-family: "Oswald", sans-serif;
}

.slot-stat small {
  display: block;
  color: #777;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* content blocks */

.slots-section h3 {
  color: #1d2127;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.slots-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background: #b79d62;
}

.slots-section p {
  color: #5f646b;
  line-height: 1.95;
  font-size: 16px;
}

.slots-section p + p {
  margin-top: 20px;
}

/* bottom article */

.slots-content {
  margin-top: 70px;
  padding: 50px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,.04);
}

.slots-content h3 {
  margin-bottom: 30px;
}

.slots-content p {
  max-width: 100%;
}

/* decorative separator */

.slots-content::before {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: #b79d62;
  margin-bottom: 30px;
}

/* responsive */

@media (max-width: 1199px) {

  .slots-stats {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 991px) {

  .slots-header {
    margin-bottom: 50px;
  }

  .slots-intro {
    font-size: 17px;
  }

  .slots-content {
    padding: 35px;
  }

}

@media (max-width: 767px) {

  .slots-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .slot-stat span {
    font-size: 36px;
  }

  .slots-content {
    padding: 30px 25px;
  }

  .slots-header h2 {
    font-size: 34px;
  }

  .slots-intro {
    font-size: 16px;
  }

}

/* ==========================================
   LIVE TABLE GAMES
========================================== */

.table-games-section {
  background: #f8f5ef;
  position: relative;
  overflow: hidden;
}

.table-games-header {
  max-width: 980px;
  margin: 0 auto 65px;
}

.table-games-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  color: #b79d62;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.table-games-header h2 {
  margin-bottom: 25px;
  color: #1d2127;
}

.table-games-header p {
  color: #5f646b;
  font-size: 18px;
  line-height: 1.9;
}

.table-games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 70px;
}

.table-game-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.055);
  transition: 0.3s ease;
}

.table-game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.085);
}

.table-game-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(183, 157, 98, 0.12);
  color: #b79d62;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.table-game-card h3 {
  margin-bottom: 14px;
  color: #1d2127;
  font-size: 23px;
}

.table-game-card p {
  color: #62676e;
  font-size: 15px;
  line-height: 1.75;
}

.table-games-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.table-games-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.045);
}

.table-games-block h3 {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 16px;
  color: #1d2127;
  font-size: 26px;
}

.table-games-block h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: #b79d62;
}

.table-games-block p {
  color: #5f646b;
  font-size: 16px;
  line-height: 1.95;
}

.table-games-block p + p {
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .table-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .table-games-header {
    margin-bottom: 50px;
  }

  .table-games-header p {
    font-size: 17px;
  }

  .table-games-content {
    grid-template-columns: 1fr;
  }

  .table-games-block {
    padding: 34px;
  }
}

@media (max-width: 767px) {
  .table-games-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .table-game-card {
    padding: 28px 24px;
  }

  .table-games-block {
    padding: 30px 24px;
  }

  .table-games-header h2 {
    font-size: 34px;
  }
}


/* ==========================================
   POKER ROOM
========================================== */

.poker-room-section {
  background: #f8f5ef;
  position: relative;
}

.poker-header {
  max-width: 980px;
  margin: 0 auto 70px;
}

.poker-header .section-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  color: #b79d62;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.poker-header h2 {
  margin-bottom: 25px;
  color: #1d2127;
}

.poker-intro {
  color: #5f646b;
  font-size: 18px;
  line-height: 1.9;
}

/* highlights */

.poker-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}

.poker-highlight {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,.05);
}

.poker-highlight span {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: #1d2127;
  margin-bottom: 10px;
}

.poker-highlight small {
  color: #777;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

/* feature cards */

.poker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 70px;
}

.poker-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 30px;
  box-shadow: 0 10px 35px rgba(0,0,0,.05);
  transition: .3s ease;
}

.poker-card:hover {
  transform: translateY(-6px);
}

.poker-card h3 {
  margin-bottom: 18px;
  color: #1d2127;
  font-size: 24px;
}

.poker-card p {
  color: #5f646b;
  line-height: 1.8;
  font-size: 15px;
}

/* content blocks */

.poker-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.poker-block {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.04);
}

.poker-block h3 {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 15px;
  color: #1d2127;
}

.poker-block h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background: #b79d62;
}

.poker-block p {
  color: #5f646b;
  line-height: 1.95;
  font-size: 16px;
}

.poker-block p + p {
  margin-top: 20px;
}

/* responsive */

@media (max-width: 1199px) {

  .poker-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 991px) {

  .poker-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .poker-content {
    grid-template-columns: 1fr;
  }

  .poker-block {
    padding: 35px;
  }

}

@media (max-width: 767px) {

  .poker-highlights,
  .poker-grid {
    grid-template-columns: 1fr;
  }

  .poker-header {
    margin-bottom: 50px;
  }

  .poker-intro {
    font-size: 16px;
  }

  .poker-block {
    padding: 28px 24px;
  }

}


/* ==========================================
   BINGOLINAK
========================================== */

.bingo-section {
  background: #f8f5ef;
  position: relative;
  overflow: hidden;
}

.bingo-section::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(183, 157, 98, 0.08);
}

.bingo-section .container {
  position: relative;
  z-index: 2;
}

.bingo-content {
  max-width: 760px;
}

.bingo-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  color: #b79d62;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.bingo-content h2 {
  margin-bottom: 25px;
  color: #1d2127;
}

.bingo-lead {
  color: #5f646b;
  font-size: 18px;
  line-height: 1.9;
}

.bingo-prize-box {
  margin-top: 35px;
  padding: 30px 34px;
  background: #ffffff;
  border-left: 5px solid #b79d62;
  border-radius: 16px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.055);
}

.bingo-prize-box span {
  display: block;
  margin-bottom: 10px;
  color: #1d2127;
  font-family: "Oswald", sans-serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
}

.bingo-prize-box p {
  color: #5f646b;
  font-size: 16px;
  line-height: 1.75;
}

.bingo-image-wrap {
  position: relative;
}

.bingo-image-wrap::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 75%;
  height: 75%;
  border: 1px solid rgba(183, 157, 98, 0.45);
  border-radius: 20px;
  z-index: 1;
}

.bingo-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.bingo-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 75px;
}

.bingo-info-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.bingo-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.075);
}

.bingo-info-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(183, 157, 98, 0.12);
  color: #b79d62;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.bingo-info-card h3 {
  margin-bottom: 14px;
  color: #1d2127;
  font-size: 23px;
}

.bingo-info-card p {
  color: #62676e;
  font-size: 15px;
  line-height: 1.75;
}

.bingo-practical {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.bingo-practical-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 42px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.045);
}

.bingo-practical-block h3 {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 16px;
  color: #1d2127;
  font-size: 26px;
}

.bingo-practical-block h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: #b79d62;
}

.bingo-practical-block p {
  color: #5f646b;
  font-size: 16px;
  line-height: 1.95;
}

.bingo-practical-block p + p {
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .bingo-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .bingo-content {
    max-width: 100%;
  }

  .bingo-image-wrap {
    margin-top: 10px;
  }

  .bingo-practical {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .bingo-info-grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .bingo-practical {
    margin-top: 50px;
  }

  .bingo-practical-block {
    padding: 30px 24px;
  }

  .bingo-prize-box {
    padding: 26px 24px;
  }

  .bingo-prize-box span {
    font-size: 36px;
  }

  .bingo-content h2 {
    font-size: 34px;
  }
}


/* ==========================================
   LYNX REWARDS CLUB
========================================== */

.rewards-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(196, 238, 236, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(183, 157, 98, 0.12), transparent 38%),
    #15191f;
}

.rewards-section .container {
  position: relative;
  z-index: 2;
}

.rewards-header {
  max-width: 980px;
  margin: 0 auto 65px;
}

.rewards-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  color: #c4eeec;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rewards-header h2 {
  margin-bottom: 25px;
  color: #ffffff;
}

.rewards-intro {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.9;
}

.rewards-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}

.rewards-summary-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  transition: 0.3s ease;
}

.rewards-summary-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 238, 236, 0.32);
  background: rgba(255, 255, 255, 0.075);
}

.rewards-summary-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(196, 238, 236, 0.12);
  color: #c4eeec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.rewards-summary-card h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 24px;
}

.rewards-summary-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.75;
}

.rewards-tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 70px;
}

.reward-tier-card {
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  min-height: 100%;
}

.reward-tier-card-featured {
  border-color: rgba(183, 157, 98, 0.45);
  background: rgba(183, 157, 98, 0.09);
}

.reward-tier-card-premium {
  border-color: rgba(196, 238, 236, 0.45);
  background: rgba(196, 238, 236, 0.08);
}

.reward-tier-head {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reward-tier-name {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.reward-tier-points {
  display: block;
  color: #c4eeec;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}

.reward-tier-card ul {
  margin: 0;
  padding: 0;
}

.reward-tier-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.7;
}

.reward-tier-card li + li {
  margin-top: 10px;
}

.reward-tier-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c4eeec;
}

.rewards-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.rewards-content-block {
  padding: 42px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
}

.rewards-content-block h3 {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 16px;
  color: #ffffff;
  font-size: 26px;
}

.rewards-content-block h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: #c4eeec;
}

.rewards-content-block p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.95;
}

.rewards-content-block p + p {
  margin-top: 20px;
}

.rewards-note {
  margin-top: 55px;
  padding: 36px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(196, 238, 236, 0.13), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(196, 238, 236, 0.22);
}

.rewards-note h3 {
  margin-bottom: 16px;
  color: #ffffff;
}

.rewards-note p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.9;
}

@media (max-width: 1399px) {
  .rewards-tiers {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .rewards-summary-grid,
  .rewards-content-grid {
    grid-template-columns: 1fr;
  }

  .rewards-tiers {
    grid-template-columns: repeat(2, 1fr);
  }

  .rewards-content-block {
    padding: 34px;
  }
}

@media (max-width: 767px) {
  .rewards-tiers {
    grid-template-columns: 1fr;
  }

  .rewards-header {
    margin-bottom: 50px;
  }

  .rewards-intro {
    font-size: 16px;
  }

  .rewards-content-block,
  .rewards-note {
    padding: 28px 24px;
  }

  .rewards-header h2 {
    font-size: 34px;
  }
}

/* ==========================================
   PROMOTIONS
========================================== */

.promotions-section {
  background: #f8f5ef;
}

.promotions-header {
  max-width: 980px;
  margin: 0 auto 70px;
}

.promotions-intro {
  color: #5f646b;
  font-size: 18px;
  line-height: 1.9;
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 70px;
}

.promotion-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0,0,0,.05);
  transition: .3s ease;
}

.promotion-card:hover {
  transform: translateY(-6px);
}

.promotion-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(183,157,98,.12);
  color: #b79d62;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.promotion-card h3 {
  margin-bottom: 15px;
  color: #1d2127;
}

.promotion-card p {
  color: #5f646b;
  line-height: 1.8;
}

.promotions-content {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}

.promotion-block {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,.04);
}

.promotion-block h3 {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #b79d62;
  color: #1d2127;
}

.promotion-block p {
  color: #5f646b;
  line-height: 1.95;
}

.promotion-block p + p {
  margin-top: 18px;
}

@media (max-width: 991px) {

  .promotions-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .promotions-content {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 767px) {

  .promotions-grid {
    grid-template-columns: 1fr;
  }

  .promotion-block {
    padding: 30px 24px;
  }

}

/* ==========================================
   DINING AT THE RESORT
========================================== */

.dining-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(183, 157, 98, 0.16), transparent 35%),
    radial-gradient(circle at bottom left, rgba(196, 238, 236, 0.07), transparent 42%),
    #15191f;
}

.dining-section .container {
  position: relative;
  z-index: 2;
}

.dining-copy {
  max-width: 720px;
}

.dining-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  color: #c4eeec;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.dining-copy h2 {
  margin-bottom: 25px;
  color: #ffffff;
}

.dining-lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.9;
}

.dining-actions {
  margin-top: 34px;
}

.dining-image-wrap {
  position: relative;
}

.dining-image-wrap::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 75%;
  height: 75%;
  border: 1px solid rgba(196, 238, 236, 0.35);
  border-radius: 22px;
  z-index: 1;
}

.dining-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.dining-restaurants {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 75px;
}

.dining-card {
  padding: 42px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.dining-card-featured {
  background: rgba(183, 157, 98, 0.1);
  border-color: rgba(183, 157, 98, 0.36);
}

.dining-card-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #c4eeec;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.dining-card h3 {
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 30px;
}

.dining-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.9;
}

.dining-list {
  margin-top: 26px;
  padding: 0;
}

.dining-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.75;
}

.dining-list li + li {
  margin-top: 11px;
}

.dining-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c4eeec;
}

.dining-practical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.dining-practical-block {
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.dining-practical-block h3 {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 16px;
  color: #ffffff;
  font-size: 26px;
}

.dining-practical-block h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: #c4eeec;
}

.dining-practical-block p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.95;
}

.dining-practical-block p + p {
  margin-top: 20px;
}

@media (max-width: 991px) {
  .dining-restaurants,
  .dining-practical-grid {
    grid-template-columns: 1fr;
  }

  .dining-image-wrap {
    margin-top: 20px;
  }

  .dining-card,
  .dining-practical-block {
    padding: 34px;
  }
}

@media (max-width: 767px) {
  .dining-copy h2 {
    font-size: 34px;
  }

  .dining-lead {
    font-size: 16px;
  }

  .dining-card,
  .dining-practical-block {
    padding: 28px 24px;
  }

  .dining-card h3 {
    font-size: 26px;
  }
}


/* ==========================================
   LOUNGE ROYAL & VIP SPACES
========================================== */

.vip-lounge-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(196,238,236,.08), transparent 35%),
    radial-gradient(circle at bottom left, rgba(183,157,98,.12), transparent 40%),
    #15191f;
}

.vip-header {
  max-width: 980px;
  margin: 0 auto 70px;
}

.vip-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  color: #c4eeec;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.vip-header h2 {
  color: #fff;
  margin-bottom: 25px;
}

.vip-intro {
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.9;
}

/* top stats */

.vip-highlights {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-bottom: 70px;
}

.vip-highlight {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
}

.vip-highlight span {
  display: block;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.vip-highlight small {
  color: #c4eeec;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

/* content */

.vip-content-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.vip-block {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 40px;
}

.vip-block h3 {
  color: #fff;
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
}

.vip-block h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background: #c4eeec;
}

.vip-block p {
  color: rgba(255,255,255,.75);
  line-height: 1.95;
  font-size: 16px;
}

.vip-block p + p {
  margin-top: 20px;
}

/* benefits */

.vip-benefits {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 50px;
}

.vip-benefits-header {
  max-width: 850px;
  margin-bottom: 40px;
}

.vip-benefits-header h3 {
  color: #fff;
  margin-bottom: 15px;
}

.vip-benefits-header p {
  color: rgba(255,255,255,.75);
  line-height: 1.8;
}

.vip-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.vip-benefit-card {
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding: 30px;
}

.vip-benefit-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(196,238,236,.12);
  color: #c4eeec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.vip-benefit-card h4 {
  color: #fff;
  margin-bottom: 12px;
}

.vip-benefit-card p {
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  font-size: 15px;
}

/* note */

.vip-note {
  margin-top: 60px;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(196,238,236,.12),
    rgba(255,255,255,.04)
  );
  border: 1px solid rgba(196,238,236,.2);
}

.vip-note h3 {
  color: #fff;
  margin-bottom: 18px;
}

.vip-note p {
  color: rgba(255,255,255,.8);
  line-height: 1.9;
  font-size: 16px;
}

/* responsive */

@media (max-width: 1199px) {

  .vip-benefits-grid {
    grid-template-columns: repeat(2,1fr);
  }

}

@media (max-width: 991px) {

  .vip-highlights {
    grid-template-columns: repeat(2,1fr);
  }

  .vip-content-grid {
    grid-template-columns: 1fr;
  }

  .vip-benefits {
    padding: 35px;
  }

}

@media (max-width: 767px) {

  .vip-highlights,
  .vip-benefits-grid {
    grid-template-columns: 1fr;
  }

  .vip-block,
  .vip-benefits,
  .vip-note {
    padding: 28px 24px;
  }

  .vip-intro {
    font-size: 16px;
  }

}


/* ==========================================
   EVENTS, GROUPS & CELEBRATIONS
========================================== */

.events-section {
  background: #f8f5ef;
  position: relative;
  overflow: hidden;
}

.events-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  color: #b79d62;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.events-copy h2 {
  margin-bottom: 25px;
  color: #1d2127;
}

.events-lead {
  color: #5f646b;
  font-size: 18px;
  line-height: 1.9;
}

.events-image-wrap {
  position: relative;
}

.events-image-wrap::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 75%;
  height: 75%;
  border: 1px solid rgba(183, 157, 98, 0.45);
  border-radius: 22px;
  z-index: 1;
}

.events-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 75px;
}

.events-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  transition: .3s ease;
}

.events-card:hover {
  transform: translateY(-6px);
}

.events-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(183, 157, 98, 0.12);
  color: #b79d62;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.events-card h3 {
  margin-bottom: 14px;
  color: #1d2127;
  font-size: 23px;
}

.events-card p {
  color: #62676e;
  font-size: 15px;
  line-height: 1.75;
}

.events-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.events-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.045);
}

.events-block h3 {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 16px;
  color: #1d2127;
  font-size: 26px;
}

.events-block h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: #b79d62;
}

.events-block p {
  color: #5f646b;
  font-size: 16px;
  line-height: 1.95;
}

.events-block p + p {
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .events-copy {
    margin-top: 20px;
  }

  .events-content-grid {
    grid-template-columns: 1fr;
  }

  .events-block {
    padding: 34px;
  }
}

@media (max-width: 767px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .events-lead {
    font-size: 16px;
  }

  .events-block {
    padding: 28px 24px;
  }

  .events-copy h2 {
    font-size: 34px;
  }
}

/* ==========================================
   EVENTS, GROUPS & CELEBRATIONS
========================================== */

.events-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(183,157,98,.12), transparent 35%),
    radial-gradient(circle at bottom left, rgba(196,238,236,.08), transparent 40%),
    #15191f;
}

.events-section .container {
  position: relative;
  z-index: 2;
}

.events-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  color: #c4eeec;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.events-copy h2 {
  margin-bottom: 25px;
  color: #ffffff;
}

.events-lead {
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.9;
}

.events-image-wrap {
  position: relative;
}

.events-image-wrap::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 75%;
  height: 75%;
  border: 1px solid rgba(196,238,236,.35);
  border-radius: 22px;
  z-index: 1;
}

.events-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 75px;
}

.events-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 32px 26px;
  transition: .3s ease;
}

.events-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,238,236,.3);
  background: rgba(255,255,255,.07);
}

.events-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(196,238,236,.12);
  color: #c4eeec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.events-card h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 23px;
}

.events-card p {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.75;
}

.events-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.events-block {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 40px;
}

.events-block h3 {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 16px;
  color: #ffffff;
  font-size: 26px;
}

.events-block h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: #c4eeec;
}

.events-block p {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  line-height: 1.95;
}

.events-block p + p {
  margin-top: 20px;
}

@media (max-width: 1199px) {

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 991px) {

  .events-copy {
    margin-top: 20px;
  }

  .events-content-grid {
    grid-template-columns: 1fr;
  }

  .events-block {
    padding: 34px;
  }

}

@media (max-width: 767px) {

  .events-grid {
    grid-template-columns: 1fr;
  }

  .events-lead {
    font-size: 16px;
  }

  .events-block {
    padding: 28px 24px;
  }

  .events-copy h2 {
    font-size: 34px;
  }

}

/* ==========================================
   SHUTTLE SERVICE
========================================== */

.transport-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(196,238,236,.08), transparent 35%),
    radial-gradient(circle at bottom right, rgba(183,157,98,.12), transparent 40%),
    #15191f;
}

.transport-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  color: #c4eeec;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.transport-content h2 {
  color: #ffffff;
  margin-bottom: 25px;
}

.transport-lead {
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.9;
}

.transport-highlight {
  margin-top: 35px;
  padding: 30px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(196,238,236,.18);
}

.transport-highlight span {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.transport-highlight p {
  color: rgba(255,255,255,.75);
}

.transport-image-wrap {
  position: relative;
}

.transport-image-wrap::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 75%;
  height: 75%;
  border: 1px solid rgba(196,238,236,.35);
  border-radius: 22px;
}

.transport-image {
  width: 100%;
  border-radius: 22px;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.transport-features {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
  margin-top: 75px;
}

.transport-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 30px 25px;
}

.transport-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(196,238,236,.12);
  color: #c4eeec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.transport-card h3 {
  color: #ffffff;
  margin-bottom: 12px;
}

.transport-card p {
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
  margin-top: 70px;
}

.transport-block {
  padding: 40px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.transport-block h3 {
  color: #ffffff;
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
}

.transport-block h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background: #c4eeec;
}

.transport-block p {
  color: rgba(255,255,255,.75);
  line-height: 1.95;
}

.transport-block p + p {
  margin-top: 20px;
}

@media (max-width:991px) {

  .transport-features {
    grid-template-columns: repeat(2,1fr);
  }

  .transport-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width:767px) {

  .transport-features {
    grid-template-columns: 1fr;
  }

  .transport-block {
    padding: 28px 24px;
  }

}

/* ==========================================
   PLAN YOUR VISIT
========================================== */

.visit-section {
  background: #f8f5ef;
  position: relative;
  overflow: hidden;
}

.visit-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  color: #b79d62;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.visit-copy h2 {
  margin-bottom: 25px;
  color: #1d2127;
}

.visit-lead {
  color: #5f646b;
  font-size: 18px;
  line-height: 1.9;
}

.visit-image-wrap {
  position: relative;
}

.visit-image-wrap::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 75%;
  height: 75%;
  border: 1px solid rgba(183, 157, 98, 0.45);
  border-radius: 22px;
  z-index: 1;
}

.visit-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13);
}

.visit-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 75px;
}

.visit-info-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.visit-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(183, 157, 98, 0.12);
  color: #b79d62;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.visit-info-card h3 {
  margin-bottom: 14px;
  color: #1d2127;
  font-size: 23px;
}

.visit-info-card p {
  color: #62676e;
  font-size: 15px;
  line-height: 1.75;
}

.visit-practical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.visit-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.045);
}

.visit-block h3 {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 16px;
  color: #1d2127;
  font-size: 26px;
}

.visit-block h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: #b79d62;
}

.visit-block p {
  color: #5f646b;
  font-size: 16px;
  line-height: 1.95;
}

.visit-block p + p {
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .visit-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .visit-copy {
    margin-top: 20px;
  }

  .visit-practical-grid {
    grid-template-columns: 1fr;
  }

  .visit-block {
    padding: 34px;
  }
}

@media (max-width: 767px) {
  .visit-info-grid {
    grid-template-columns: 1fr;
  }

  .visit-lead {
    font-size: 16px;
  }

  .visit-block {
    padding: 28px 24px;
  }

  .visit-copy h2 {
    font-size: 34px;
  }
}

/* ==========================================
   SAFETY, SUPPORT & VISITOR ASSISTANCE
========================================== */

.support-section {
  background: #f8f5ef;
}

.support-header {
  max-width: 980px;
  margin: 0 auto 70px;
}

.support-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  color: #b79d62;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.support-intro {
  color: #5f646b;
  font-size: 18px;
  line-height: 1.9;
}

.support-top-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
  margin-bottom: 70px;
}

.support-card {
  background: #ffffff;
  padding: 32px 26px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,.05);
}

.support-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(183,157,98,.12);
  color: #b79d62;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.support-card h3 {
  margin-bottom: 14px;
  color: #1d2127;
}

.support-card p {
  color: #62676e;
  line-height: 1.75;
}

.support-content-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}

.support-block {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.04);
}

.support-block h3 {
  color: #1d2127;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #b79d62;
}

.support-block p {
  color: #5f646b;
  line-height: 1.95;
}

.support-block p + p {
  margin-top: 18px;
}

.support-contact-panel {
  margin-top: 70px;
  padding: 45px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,.04);
}

.support-contact-panel h3 {
  margin-bottom: 30px;
  color: #1d2127;
}

.support-contact-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.support-contact-item span {
  display: block;
  margin-bottom: 10px;
  color: #888;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}

.support-contact-item strong {
  color: #1d2127;
  font-size: 17px;
}

.support-note {
  margin-top: 50px;
  padding: 35px 40px;
  border-radius: 20px;
  background: #ffffff;
  border-left: 4px solid #b79d62;
}

.support-note h3 {
  margin-bottom: 15px;
  color: #1d2127;
}

.support-note p {
  color: #5f646b;
  line-height: 1.9;
}

@media (max-width:991px){

  .support-top-grid,
  .support-contact-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .support-content-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width:767px){

  .support-top-grid,
  .support-contact-grid {
    grid-template-columns: 1fr;
  }

  .support-block,
  .support-contact-panel,
  .support-note {
    padding: 28px 24px;
  }

}

/* ==========================================
   FAQ
========================================== */

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(196,238,236,.08), transparent 35%),
    radial-gradient(circle at bottom left, rgba(183,157,98,.12), transparent 40%),
    #15191f;
}

.faq-header {
  max-width: 900px;
  margin: 0 auto 65px;
}

.faq-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  color: #c4eeec;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.faq-header h2 {
  margin-bottom: 25px;
  color: #ffffff;
}

.faq-intro {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.9;
}

.faq-list {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 16px;
}

.faq-question {
  width: 100%;
  padding: 24px 70px 24px 28px;
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  text-align: left;
  position: relative;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #c4eeec;
  font-size: 30px;
  line-height: 1;
}

.faq-item.active .faq-question::after {
  content: "–";
}

.faq-answer {
  display: none;
  padding: 0 28px 26px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: rgba(255,255,255,.74);
  line-height: 1.9;
  font-size: 16px;
}

@media (max-width: 767px) {
  .faq-question {
    padding: 22px 56px 22px 22px;
    font-size: 17px;
  }

  .faq-question::after {
    right: 22px;
  }

  .faq-answer {
    padding: 0 22px 24px;
  }

  .faq-intro {
    font-size: 16px;
  }
}

/* Legal Pages - Grand Royal Wôlinak Casino */
.legal-page {
  background: #f7f9fa;
}

.legal-hero {
  position: relative;
  padding: 185px 0 105px;
  background: linear-gradient(135deg, #151515 0%, #292f35 50%, #1f3f42 100%);
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(196, 238, 236, 0.28), transparent 36%), radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.12), transparent 28%);
  pointer-events: none;
}

.legal-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.legal-hero__kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #c4eeec;
  font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.legal-hero h1 {
  color: #ffffff;
  font-size: 44px;
  line-height: 1.16;
}

.legal-hero p {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 10px 18px;
  border: 1px solid rgba(196, 238, 236, 0.42);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  letter-spacing: .03em;
}

.legal-content-section {
  background: #f7f9fa;
}

.legal-content-card {
  padding: 46px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(21, 21, 21, 0.08);
}

.legal-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 46px;
}

.legal-info-card {
  padding: 28px;
  border-radius: 18px;
  background: #292f35;
  color: #ffffff;
}

.legal-info-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: #c4eeec;
  font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
}

.legal-info-card h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.25;
}

.legal-info-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.legal-section-block {
  padding: 34px 0;
  border-top: 1px solid #e4eaec;
}

.legal-section-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.legal-section-block h2 {
  color: #151515;
  font-size: 28px;
  line-height: 1.25;
}

.legal-section-block p {
  color: #555f66;
  font-size: 16px;
  line-height: 1.8;
}

.legal-section-block p + p {
  margin-top: 16px;
}

.legal-cta-box {
  margin-top: 34px;
  padding: 34px;
  border-radius: 20px;
  background: linear-gradient(135deg, #c4eeec 0%, #eefafa 100%);
  text-align: center;
}

.legal-cta-box h2 {
  color: #151515;
  font-size: 28px;
}

.legal-cta-box p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #3d474d;
}

.footer-classic__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-classic__legal-links a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-classic__legal-links a:hover {
  color: #c4eeec;
}

@media (max-width: 991px) {
  .legal-hero {
    padding: 145px 0 80px;
  }

  .legal-hero h1 {
    font-size: 36px;
  }

  .legal-info-grid {
    grid-template-columns: 1fr;
  }

  .legal-content-card {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .legal-hero h1 {
    font-size: 30px;
  }

  .legal-hero p {
    font-size: 16px;
  }

  .legal-content-card,
  .legal-cta-box {
    padding: 24px;
  }
}
