:root {
	--f-spinner-width: 36px;
	--f-spinner-height: 36px;
	--f-spinner-color-1: rgba(0, 0, 0, 0.1);
	--f-spinner-color-2: rgba(17, 24, 28, 0.8);
	--f-spinner-stroke: 2.75
}

.f-spinner {
	margin: auto;
	padding: 0;
	width: var(--f-spinner-width);
	height: var(--f-spinner-height)
}

.f-spinner svg {
	width: 100%;
	height: 100%;
	vertical-align: top;
	animation: f-spinner-rotate 2s linear infinite
}

.f-spinner svg * {
	stroke-width: var(--f-spinner-stroke);
	fill: none
}

.f-spinner svg :first-child {
	stroke: var(--f-spinner-color-1)
}

.f-spinner svg :last-child {
	stroke: var(--f-spinner-color-2);
	animation: f-spinner-dash 2s ease-in-out infinite
}

@keyframes f-spinner-rotate {
	100% {
		transform: rotate(360deg)
	}
}

@keyframes f-spinner-dash {
	0% {
		stroke-dasharray: 1, 150;
		stroke-dashoffset: 0
	}

	50% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -35
	}

	100% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -124
	}
}

.f-throwOutUp {
	animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutUp
}

.f-throwOutDown {
	animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutDown
}

@keyframes f-throwOutUp {
	to {
		transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
		opacity: 0
	}
}

@keyframes f-throwOutDown {
	to {
		transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
		opacity: 0
	}
}

.f-zoomInUp {
	animation: var(--f-transition-duration, .2s) ease .1s both f-zoomInUp
}

.f-zoomOutDown {
	animation: var(--f-transition-duration, .2s) ease both f-zoomOutDown
}

@keyframes f-zoomInUp {
	from {
		transform: scale(.975) translate3d(0, 16px, 0);
		opacity: 0
	}

	to {
		transform: scale(1) translate3d(0, 0, 0);
		opacity: 1
	}
}

@keyframes f-zoomOutDown {
	to {
		transform: scale(.975) translate3d(0, 16px, 0);
		opacity: 0
	}
}

.f-fadeIn {
	animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
	z-index: 2
}

.f-fadeOut {
	animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
	z-index: 1
}

@keyframes f-fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes f-fadeOut {
	100% {
		opacity: 0
	}
}

.f-fadeFastIn {
	animation: var(--f-transition-duration, .2s) ease-out both f-fadeFastIn;
	z-index: 2
}

.f-fadeFastOut {
	animation: var(--f-transition-duration, .1s) ease-out both f-fadeFastOut;
	z-index: 2
}

@keyframes f-fadeFastIn {
	0% {
		opacity: .75
	}

	100% {
		opacity: 1
	}
}

@keyframes f-fadeFastOut {
	100% {
		opacity: 0
	}
}

.f-fadeSlowIn {
	animation: var(--f-transition-duration, .5s) ease both f-fadeSlowIn;
	z-index: 2
}

.f-fadeSlowOut {
	animation: var(--f-transition-duration, .5s) ease both f-fadeSlowOut;
	z-index: 1
}

@keyframes f-fadeSlowIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes f-fadeSlowOut {
	100% {
		opacity: 0
	}
}

.f-crossfadeIn {
	animation: var(--f-transition-duration, .2s) ease-out both f-crossfadeIn;
	z-index: 2
}

.f-crossfadeOut {
	animation: calc(var(--f-transition-duration, .2s)*.5) linear .1s both f-crossfadeOut;
	z-index: 1
}

@keyframes f-crossfadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes f-crossfadeOut {
	100% {
		opacity: 0
	}
}

.f-slideIn.from-next {
	animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNext
}

.f-slideIn.from-prev {
	animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrev
}

.f-slideOut.to-next {
	animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNext
}

.f-slideOut.to-prev {
	animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrev
}

@keyframes f-slideInPrev {
	0% {
		transform: translateX(100%)
	}

	100% {
		transform: translate3d(0, 0, 0)
	}
}

@keyframes f-slideInNext {
	0% {
		transform: translateX(-100%)
	}

	100% {
		transform: translate3d(0, 0, 0)
	}
}

@keyframes f-slideOutNext {
	100% {
		transform: translateX(-100%)
	}
}

@keyframes f-slideOutPrev {
	100% {
		transform: translateX(100%)
	}
}

.f-classicIn.from-next {
	animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicInNext;
	z-index: 2
}

.f-classicIn.from-prev {
	animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicInPrev;
	z-index: 2
}

.f-classicOut.to-next {
	animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicOutNext;
	z-index: 1
}

.f-classicOut.to-prev {
	animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicOutPrev;
	z-index: 1
}

@keyframes f-classicInNext {
	0% {
		transform: translateX(-75px);
		opacity: 0
	}

	100% {
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}

@keyframes f-classicInPrev {
	0% {
		transform: translateX(75px);
		opacity: 0
	}

	100% {
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}

@keyframes f-classicOutNext {
	100% {
		transform: translateX(-75px);
		opacity: 0
	}
}

@keyframes f-classicOutPrev {
	100% {
		transform: translateX(75px);
		opacity: 0
	}
}

:root {
	--f-button-width: 40px;
	--f-button-height: 40px;
	--f-button-border: 0;
	--f-button-border-radius: 0;
	--f-button-color: #374151;
	--f-button-bg: #f8f8f8;
	--f-button-hover-bg: #e0e0e0;
	--f-button-active-bg: #d0d0d0;
	--f-button-shadow: none;
	--f-button-transition: all 0.15s ease;
	--f-button-transform: none;
	--f-button-svg-width: 20px;
	--f-button-svg-height: 20px;
	--f-button-svg-stroke-width: 1.5;
	--f-button-svg-fill: none;
	--f-button-svg-filter: none;
	--f-button-svg-disabled-opacity: 0.65
}

.f-button {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: content-box;
	position: relative;
	margin: 0;
	padding: 0;
	width: var(--f-button-width);
	height: var(--f-button-height);
	border: var(--f-button-border);
	border-radius: var(--f-button-border-radius);
	color: var(--f-button-color);
	background: var(--f-button-bg);
	box-shadow: var(--f-button-shadow);
	pointer-events: all;
	cursor: pointer;
	transition: var(--f-button-transition)
}

@media(hover:hover) {
	.f-button:hover:not([disabled]) {
		color: var(--f-button-hover-color);
		background-color: var(--f-button-hover-bg)
	}
}

.f-button:active:not([disabled]) {
	background-color: var(--f-button-active-bg)
}

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

.f-button:focus-visible {
	outline: 0;
	box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))
}

.f-button svg {
	width: var(--f-button-svg-width);
	height: var(--f-button-svg-height);
	fill: var(--f-button-svg-fill);
	stroke: currentColor;
	stroke-width: var(--f-button-svg-stroke-width);
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: opacity .15s ease;
	transform: var(--f-button-transform);
	filter: var(--f-button-svg-filter);
	pointer-events: none
}

.f-button[disabled] {
	cursor: default
}

.f-button[disabled] svg {
	opacity: var(--f-button-svg-disabled-opacity)
}

.f-carousel__nav .f-button.is-next,
.f-carousel__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev {
	position: absolute;
	z-index: 1
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev {
	top: 50%;
	transform: translateY(-50%)
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
	left: var(--f-button-prev-pos)
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
	right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
	left: auto;
	right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
	right: auto;
	left: var(--f-button-prev-pos)
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev {
	top: auto;
	left: 50%;
	transform: translateX(-50%)
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
	top: var(--f-button-next-pos)
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
	bottom: var(--f-button-next-pos)
}

.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg {
	transform: rotate(90deg)
}

.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
	pointer-events: none
}

html.with-fancybox {
	width: auto;
	overflow: visible;
	scroll-behavior: auto
}

html.with-fancybox body {
	touch-action: none
}

html.with-fancybox body.hide-scrollbar {
	width: auto;
	margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
	overflow: hidden !important;
	overscroll-behavior-y: none
}

.fancybox__container {
	--fancybox-color: #dbdbdb;
	--fancybox-hover-color: #fff;
	--fancybox-bg: rgba(24, 24, 27, 0.98);
	--fancybox-slide-gap: 10px;
	--f-spinner-width: 50px;
	--f-spinner-height: 50px;
	--f-spinner-color-1: rgba(255, 255, 255, 0.1);
	--f-spinner-color-2: #bbb;
	--f-spinner-stroke: 3.65;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	direction: ltr;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	color: #f8f8f8;
	-webkit-tap-highlight-color: transparent;
	overflow: visible;
	z-index: var(--fancybox-zIndex, 1050);
	outline: 0;
	transform-origin: top left;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	overscroll-behavior-y: contain
}

.fancybox__container *,
.fancybox__container ::after,
.fancybox__container ::before {
	box-sizing: inherit
}

.fancybox__container::backdrop {
	background-color: rgba(0, 0, 0, 0)
}

.fancybox__backdrop {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	background: var(--fancybox-bg);
	opacity: var(--fancybox-opacity, 1);
	will-change: opacity
}

.fancybox__carousel {
	position: relative;
	box-sizing: border-box;
	flex: 1;
	min-height: 0;
	z-index: 10;
	overflow-y: visible;
	overflow-x: clip
}

.fancybox__viewport {
	width: 100%;
	height: 100%
}

.fancybox__viewport.is-draggable {
	cursor: move;
	cursor: grab
}

.fancybox__viewport.is-dragging {
	cursor: move;
	cursor: grabbing
}

.fancybox__track {
	display: flex;
	margin: 0 auto;
	height: 100%
}

.fancybox__slide {
	flex: 0 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: 0 var(--fancybox-slide-gap) 0 0;
	padding: 4px;
	overflow: auto;
	overscroll-behavior: contain;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
	padding-top: 40px
}

.fancybox__slide.has-html5video,
.fancybox__slide.has-iframe,
.fancybox__slide.has-video {
	overflow: hidden
}

.fancybox__slide.has-image {
	overflow: hidden
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
	overflow: visible
}

.fancybox__slide::after,
.fancybox__slide::before {
	content: "";
	flex: 0 0 0;
	margin: auto
}

.fancybox__backdrop:empty,
.fancybox__slide:empty,
.fancybox__track:empty,
.fancybox__viewport:empty {
	display: block
}

.fancybox__content {
	align-self: center;
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 0;
	padding: 2rem;
	max-width: 100%;
	color: var(--fancybox-content-color, #374151);

	cursor: default;
	border-radius: 0;
	z-index: 20
}

.is-loading .fancybox__content {
	opacity: 0
}

.is-draggable .fancybox__content {
	cursor: move;
	cursor: grab
}

.can-zoom_in .fancybox__content {
	cursor: zoom-in
}

.can-zoom_out .fancybox__content {
	cursor: zoom-out
}

.is-dragging .fancybox__content {
	cursor: move;
	cursor: grabbing
}

.fancybox__content [contenteditable],
.fancybox__content [data-selectable] {
	cursor: auto
}

.fancybox__slide.has-image>.fancybox__content {
	padding: 0;
	background: rgba(0, 0, 0, 0);
	min-height: 1px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	transition: none;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden
}

.fancybox__slide.has-image>.fancybox__content>picture>img {
	width: 100%;
	height: auto;
	max-height: 100%
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
	will-change: transform, width, height
}

.fancybox-image {
	margin: auto;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: contain;
	user-select: none;
	filter: blur(0)
}

.fancybox__caption {
	align-self: center;
	max-width: 100%;
	flex-shrink: 0;
	margin: 0;
	padding: 14px 0 4px 0;
	overflow-wrap: anywhere;
	line-height: 1.375;
	color: var(--fancybox-color, currentColor);
	opacity: var(--fancybox-opacity, 1);
	cursor: auto;
	visibility: visible
}

.is-closing .fancybox__caption,
.is-loading .fancybox__caption {
	opacity: 0;
	visibility: hidden
}

.is-compact .fancybox__caption {
	padding-bottom: 0
}

.f-button.is-close-btn {
	--f-button-svg-stroke-width: 2;
	position: absolute;
	top: 0;
	right: 8px;
	z-index: 40
}

.fancybox__content>.f-button.is-close-btn {
	--f-button-width: 34px;
	--f-button-height: 34px;
	--f-button-border-radius: 4px;
	--f-button-color: var(--fancybox-color, #fff);
	--f-button-hover-color: var(--fancybox-color, #fff);
	--f-button-bg: transparent;
	--f-button-hover-bg: transparent;
	--f-button-active-bg: transparent;
	--f-button-svg-width: 22px;
	--f-button-svg-height: 22px;
	position: absolute;
	top: -38px;
	right: 0;
	opacity: .75
}

.is-loading .fancybox__content>.f-button.is-close-btn {
	visibility: hidden
}

.is-zooming-out .fancybox__content>.f-button.is-close-btn {
	visibility: hidden
}

.fancybox__content>.f-button.is-close-btn:hover {
	opacity: 1
}

.fancybox__footer {
	padding: 0;
	margin: 0;
	position: relative
}

.fancybox__footer .fancybox__caption {
	width: 100%;
	padding: 24px;
	opacity: var(--fancybox-opacity, 1);
	transition: all .25s ease
}

.is-compact .fancybox__footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 20;
	background: rgba(24, 24, 27, .5)
}

.is-compact .fancybox__footer .fancybox__caption {
	padding: 12px
}

.is-compact .fancybox__content>.f-button.is-close-btn {
	--f-button-border-radius: 50%;
	--f-button-color: #fff;
	--f-button-hover-color: #fff;
	--f-button-outline-color: #000;
	--f-button-bg: rgba(0, 0, 0, 0.6);
	--f-button-active-bg: rgba(0, 0, 0, 0.6);
	--f-button-hover-bg: rgba(0, 0, 0, 0.6);
	--f-button-svg-width: 18px;
	--f-button-svg-height: 18px;
	--f-button-svg-filter: none;
	top: 5px;
	right: 5px
}

.fancybox__nav {
	--f-button-width: 50px;
	--f-button-height: 50px;
	--f-button-border: 0;
	--f-button-border-radius: 50%;
	--f-button-color: var(--fancybox-color);
	--f-button-hover-color: var(--fancybox-hover-color);
	--f-button-bg: transparent;
	--f-button-hover-bg: rgba(24, 24, 27, 0.3);
	--f-button-active-bg: rgba(24, 24, 27, 0.5);
	--f-button-shadow: none;
	--f-button-transition: all 0.15s ease;
	--f-button-transform: none;
	--f-button-svg-width: 26px;
	--f-button-svg-height: 26px;
	--f-button-svg-stroke-width: 2.5;
	--f-button-svg-fill: none;
	--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
	--f-button-svg-disabled-opacity: 0.65;
	--f-button-next-pos: 1rem;
	--f-button-prev-pos: 1rem;
	opacity: var(--fancybox-opacity, 1)
}

.fancybox__nav .f-button:before {
	position: absolute;
	content: "";
	top: -30px;
	right: -20px;
	left: -20px;
	bottom: -30px;
	z-index: 1
}

.is-idle .fancybox__nav {
	animation: .15s ease-out both f-fadeOut
}

.is-idle.is-compact .fancybox__footer {
	pointer-events: none;
	animation: .15s ease-out both f-fadeOut
}

.fancybox__slide>.f-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -.5));
	z-index: 30;
	cursor: pointer
}

.fancybox-protected {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 40;
	user-select: none
}

.fancybox-ghost {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: contain;
	z-index: 40;
	user-select: none;
	pointer-events: none
}

.fancybox-focus-guard {
	outline: 0;
	opacity: 0;
	position: fixed;
	pointer-events: none
}

.fancybox__container:not([aria-hidden]) {
	opacity: 0
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>:not(.fancybox__content),
.fancybox__container.is-animated[aria-hidden=false]>:not(.fancybox__backdrop, .fancybox__carousel) {
	animation: var(--f-interface-enter-duration, .25s) ease .1s backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
	animation: var(--f-backdrop-enter-duration, .35s) ease backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>:not(.fancybox__content),
.fancybox__container.is-animated[aria-hidden=true]>:not(.fancybox__backdrop, .fancybox__carousel) {
	animation: var(--f-interface-exit-duration, .15s) ease forwards f-fadeOut
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
	animation: var(--f-backdrop-exit-duration, .35s) ease forwards f-fadeOut
}

.has-html5video .fancybox__content,
.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-vimeo .fancybox__content,
.has-youtube .fancybox__content {
	max-width: 100%;
	flex-shrink: 1;
	min-height: 1px;
	overflow: visible
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
	width: calc(100% - 120px);
	height: 90%
}

.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
	width: 100%;
	height: 100%
}

.has-html5video .fancybox__content,
.has-vimeo .fancybox__content,
.has-youtube .fancybox__content {
	width: 960px;
	height: 540px;
	max-width: 100%;
	max-height: 100%
}

.has-html5video .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-vimeo .fancybox__content,
.has-youtube .fancybox__content {
	padding: 0;
	background: rgba(24, 24, 27, .9);
	color: #fff
}

.has-map .fancybox__content {
	background: #e5e3df
}

.fancybox__html5video,
.fancybox__iframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0)
}

.fancybox-placeholder {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important
}

.f-carousel__thumbs {
	--f-thumb-width: 96px;
	--f-thumb-height: 72px;
	--f-thumb-outline: 0;
	--f-thumb-outline-color: #5eb0ef;
	--f-thumb-opacity: 1;
	--f-thumb-hover-opacity: 1;
	--f-thumb-selected-opacity: 1;
	--f-thumb-border-radius: 2px;
	--f-thumb-offset: 0px;
	--f-button-next-pos: 0;
	--f-button-prev-pos: 0
}

.f-carousel__thumbs.is-classic {
	--f-thumb-gap: 8px;
	--f-thumb-opacity: 0.5;
	--f-thumb-hover-opacity: 1;
	--f-thumb-selected-opacity: 1
}

.f-carousel__thumbs.is-modern {
	--f-thumb-gap: 4px;
	--f-thumb-extra-gap: 16px;
	--f-thumb-clip-width: 46px
}

.f-thumbs {
	position: relative;
	flex: 0 0 auto;
	margin: 0;
	overflow: hidden;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	perspective: 1000px;
	transform: translateZ(0)
}

.f-thumbs .f-spinner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 2px;
	background-image: linear-gradient(#ebeff2, #e2e8f0);
	z-index: -1
}

.f-thumbs .f-spinner svg {
	display: none
}

.f-thumbs.is-vertical {
	height: 100%
}

.f-thumbs__viewport {
	width: 100%;
	height: auto;
	overflow: hidden;
	transform: translate3d(0, 0, 0)
}

.f-thumbs__track {
	display: flex
}

.f-thumbs__slide {
	position: relative;
	flex: 0 0 auto;
	box-sizing: content-box;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	width: var(--f-thumb-width);
	height: var(--f-thumb-height);
	overflow: visible;
	cursor: pointer
}

.f-thumbs__slide.is-loading img {
	opacity: 0
}

.is-classic .f-thumbs__viewport {
	height: 100%
}

.is-modern .f-thumbs__track {
	width: max-content
}

.is-modern .f-thumbs__track::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc((var(--f-thumb-clip-width, 0))*-.5);
	width: calc(var(--width, 0)*1px + var(--f-thumb-clip-width, 0));
	cursor: pointer
}

.is-modern .f-thumbs__slide {
	width: var(--f-thumb-clip-width);
	transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
	transition: none;
	pointer-events: none
}

.is-modern.is-resting .f-thumbs__slide {
	transition: transform .33s ease
}

.is-modern.is-resting .f-thumbs__slide__button {
	transition: clip-path .33s ease
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
	filter: drop-shadow(-1px 0 0 var(--f-thumb-outline-color)) drop-shadow(2px 0 0 var(--f-thumb-outline-color)) drop-shadow(0 -1px 0 var(--f-thumb-outline-color)) drop-shadow(0 2px 0 var(--f-thumb-outline-color))
}

.f-thumbs__slide__button {
	appearance: none;
	width: var(--f-thumb-width);
	height: 100%;
	margin: 0 -100% 0 -100%;
	padding: 0;
	border: 0;
	position: relative;
	border-radius: var(--f-thumb-border-radius);
	overflow: hidden;
	background: rgba(0, 0, 0, 0);
	outline: 0;
	cursor: pointer;
	pointer-events: auto;
	touch-action: manipulation;
	opacity: var(--f-thumb-opacity);
	transition: opacity .2s ease
}

.f-thumbs__slide__button:hover {
	opacity: var(--f-thumb-hover-opacity)
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
	outline: 0
}

.f-thumbs__slide__button:focus-visible {
	outline: 0;
	opacity: var(--f-thumb-selected-opacity)
}

.is-modern .f-thumbs__slide__button {
	--clip-path: inset(0 calc(((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5) round var(--f-thumb-border-radius, 0));
	clip-path: var(--clip-path)
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
	opacity: var(--f-thumb-selected-opacity)
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: auto;
	bottom: 0;
	border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
	border-radius: var(--f-thumb-border-radius);
	animation: f-fadeIn .2s ease-out;
	z-index: 10
}

.f-thumbs__slide__img {
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: var(--f-thumb-offset);
	box-sizing: border-box;
	pointer-events: none;
	object-fit: cover;
	border-radius: var(--f-thumb-border-radius)
}

.f-thumbs.is-horizontal .f-thumbs__track {
	padding: 8px 0 12px 0
}

.f-thumbs.is-horizontal .f-thumbs__slide {
	margin: 0 var(--f-thumb-gap) 0 0
}

.f-thumbs.is-vertical .f-thumbs__track {
	flex-wrap: wrap;
	padding: 0 8px
}

.f-thumbs.is-vertical .f-thumbs__slide {
	margin: 0 0 var(--f-thumb-gap) 0
}

.fancybox__thumbs {
	--f-thumb-width: 96px;
	--f-thumb-height: 72px;
	--f-thumb-border-radius: 2px;
	--f-thumb-outline: 2px;
	--f-thumb-outline-color: #ededed;
	position: relative;
	opacity: var(--fancybox-opacity, 1);
	transition: max-height .35s cubic-bezier(.23, 1, .32, 1)
}

.fancybox__thumbs.is-classic {
	--f-thumb-gap: 8px;
	--f-thumb-opacity: 0.5;
	--f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-classic .f-spinner {
	background-image: linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .05))
}

.fancybox__thumbs.is-modern {
	--f-thumb-gap: 4px;
	--f-thumb-extra-gap: 16px;
	--f-thumb-clip-width: 46px;
	--f-thumb-opacity: 1;
	--f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-modern .f-spinner {
	background-image: linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .05))
}

.fancybox__thumbs.is-horizontal {
	padding: 0 var(--f-thumb-gap)
}

.fancybox__thumbs.is-vertical {
	padding: var(--f-thumb-gap) 0
}

.is-compact .fancybox__thumbs {
	--f-thumb-width: 64px;
	--f-thumb-clip-width: 32px;
	--f-thumb-height: 48px;
	--f-thumb-extra-gap: 10px
}

.fancybox__thumbs.is-masked {
	max-height: 0 !important
}

.is-closing .fancybox__thumbs {
	transition: none !important
}

.fancybox__toolbar {
	--f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
	--f-button-width: 46px;
	--f-button-height: 46px;
	--f-button-color: var(--fancybox-color);
	--f-button-hover-color: var(--fancybox-hover-color);
	--f-button-bg: rgba(24, 24, 27, 0.65);
	--f-button-hover-bg: rgba(70, 70, 73, 0.65);
	--f-button-active-bg: rgba(90, 90, 93, 0.65);
	--f-button-border-radius: 0;
	--f-button-svg-width: 24px;
	--f-button-svg-height: 24px;
	--f-button-svg-stroke-width: 1.5;
	--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
	--f-button-svg-fill: none;
	--f-button-svg-disabled-opacity: 0.65;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
	color: var(--fancybox-color, currentColor);
	opacity: var(--fancybox-opacity, 1);
	text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, .5));
	pointer-events: none;
	z-index: 20
}

.fancybox__toolbar :focus-visible {
	z-index: 1
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0
}

.is-idle .fancybox__toolbar {
	pointer-events: none;
	animation: .15s ease-out both f-fadeOut
}

.fancybox__toolbar__column {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
	flex-grow: 1;
	flex-basis: 0
}

.fancybox__toolbar__column.is-right {
	display: flex;
	justify-content: flex-end;
	flex-wrap: nowrap
}

.fancybox__infobar {
	padding: 0 5px;
	line-height: var(--f-button-height);
	text-align: center;
	font-size: 17px;
	font-variant-numeric: tabular-nums;
	-webkit-font-smoothing: subpixel-antialiased;
	cursor: default;
	user-select: none
}

.fancybox__infobar span {
	padding: 0 5px
}

.fancybox__infobar:not(:first-child):not(:last-child) {
	background: var(--f-button-bg)
}

[data-fancybox-toggle-slideshow] {
	position: relative
}

[data-fancybox-toggle-slideshow] .f-progress {
	height: 100%;
	opacity: .3
}

[data-fancybox-toggle-slideshow] svg g:first-child {
	display: flex
}

[data-fancybox-toggle-slideshow] svg g:last-child {
	display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
	display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
	display: flex
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
	display: flex
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
	display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
	display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
	display: flex
}

.f-progress {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	transform: scaleX(0);
	transform-origin: 0;
	transition-property: transform;
	transition-timing-function: linear;
	background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
	z-index: 30;
	user-select: none;
	pointer-events: none
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0
}

.slick-list:focus {
	outline: 0
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto
}

.slick-track:after,
.slick-track:before {
	display: table;
	content: ''
}

.slick-track:after {
	clear: both
}

.slick-loading .slick-track {
	visibility: hidden
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px
}

[dir=rtl] .slick-slide {
	float: right
}

.slick-slide img {
	display: block
}

.slick-slide.slick-loading img {
	display: none
}

.slick-slide.dragging img {
	pointer-events: none
}

.slick-initialized .slick-slide {
	display: block
}

.slick-loading .slick-slide {
	visibility: hidden
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent
}

.slick-arrow.slick-hidden {
	display: none
}

.btn-yellow span::after,
.btn-yellow span::before,
.btn-yellow::after,
.btn-yellow::before,
.footer::before,
.form-checkbox input[type=checkbox]+label::before,
.form-checkbox input[type=checkbox]:checked+label::after,
.inner-img::before,
.pagination-arrow::after,
.pagination-arrow::before,
.pagination-list li a::after,
.pagination-list li a::before,
.select2-container--default .select2-selection--single .select2-selection__arrow::before,
.slider-arrow::after,
.slider-arrow::before {
	content: "";
	position: absolute
}

.slider-arrow::before {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%
}

.slider-arrow {
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%
}

@font-face {
	font-family: CirceRegular;
	font-weight: 400;
	font-style: normal;
	src: url(../fonts/CirceRegular.eot);
	src: url(../fonts/CirceRegular.woff) format("woff"), url(../fonts/CirceRegular.woff2) format("woff2")
}

@font-face {
	font-family: CirceBold;
	font-weight: 700;
	font-style: normal;
	src: url(../fonts/CirceBold.eot);
	src: url(../fonts/CirceBold.woff) format("woff"), url(../fonts/CirceBold.woff2) format("woff2")
}

.hamburger {
	padding: 0 0;
	display: inline-block;
	cursor: pointer;
	-webkit-transition-property: opacity, -webkit-filter;
	transition-property: opacity, -webkit-filter;
	transition-property: opacity, filter;
	transition-property: opacity, filter, -webkit-filter;
	-webkit-transition-duration: .15s;
	transition-duration: .15s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible
}

.hamburger:hover {
	opacity: 1
}

.hamburger.is-active:hover {
	opacity: 1
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::after,
.hamburger.is-active .hamburger-inner::before {
	background-color: #fff
}

.hamburger-box {
	width: 18px;
	height: 14px;
	display: inline-block;
	position: relative
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -1px
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
	width: 18px;
	height: 2px;
	background-color: #fff;
	border-radius: 2px;
	position: absolute;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-duration: .15s;
	transition-duration: .15s;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease
}

.hamburger-inner::after,
.hamburger-inner::before {
	content: "";
	display: block
}

.hamburger-inner::before {
	top: -6px
}

.hamburger-inner::after {
	bottom: -6px
}

.hamburger--collapse .hamburger-inner {
	top: auto;
	bottom: 0;
	-webkit-transition-duration: .13s;
	transition-duration: .13s;
	-webkit-transition-delay: .13s;
	transition-delay: .13s;
	-webkit-transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.hamburger--collapse .hamburger-inner::after {
	top: -12px;
	-webkit-transition: top .2s .2s cubic-bezier(.33333, .66667, .66667, 1), opacity .1s linear;
	transition: top .2s .2s cubic-bezier(.33333, .66667, .66667, 1), opacity .1s linear
}

.hamburger--collapse .hamburger-inner::before {
	-webkit-transition: top .12s .2s cubic-bezier(.33333, .66667, .66667, 1), -webkit-transform .13s cubic-bezier(.55, .055, .675, .19);
	transition: top .12s .2s cubic-bezier(.33333, .66667, .66667, 1), -webkit-transform .13s cubic-bezier(.55, .055, .675, .19);
	transition: top .12s .2s cubic-bezier(.33333, .66667, .66667, 1), transform .13s cubic-bezier(.55, .055, .675, .19);
	transition: top .12s .2s cubic-bezier(.33333, .66667, .66667, 1), transform .13s cubic-bezier(.55, .055, .675, .19), -webkit-transform .13s cubic-bezier(.55, .055, .675, .19)
}

.hamburger--collapse.is-active .hamburger-inner {
	-webkit-transform: translate3d(0, -6px, 0) rotate(-45deg);
	transform: translate3d(0, -6px, 0) rotate(-45deg);
	-webkit-transition-delay: .22s;
	transition-delay: .22s;
	-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.hamburger--collapse.is-active .hamburger-inner::after {
	top: 0;
	opacity: 0;
	-webkit-transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), opacity .1s .22s linear;
	transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), opacity .1s .22s linear
}

.hamburger--collapse.is-active .hamburger-inner::before {
	top: 0;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transition: top .1s .16s cubic-bezier(.33333, 0, .66667, .33333), -webkit-transform .13s .25s cubic-bezier(.215, .61, .355, 1);
	transition: top .1s .16s cubic-bezier(.33333, 0, .66667, .33333), -webkit-transform .13s .25s cubic-bezier(.215, .61, .355, 1);
	transition: top .1s .16s cubic-bezier(.33333, 0, .66667, .33333), transform .13s .25s cubic-bezier(.215, .61, .355, 1);
	transition: top .1s .16s cubic-bezier(.33333, 0, .66667, .33333), transform .13s .25s cubic-bezier(.215, .61, .355, 1), -webkit-transform .13s .25s cubic-bezier(.215, .61, .355, 1)
}

.hamburger--elastic .hamburger-inner {
	top: 1px;
	-webkit-transition-duration: 275ms;
	transition-duration: 275ms;
	-webkit-transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55);
	transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55)
}

.hamburger--elastic .hamburger-inner::before {
	top: 6px;
	-webkit-transition: opacity 125ms 275ms ease;
	transition: opacity 125ms 275ms ease
}

.hamburger--elastic .hamburger-inner::after {
	top: 12px;
	-webkit-transition: -webkit-transform 275ms cubic-bezier(.68, -.55, .265, 1.55);
	transition: -webkit-transform 275ms cubic-bezier(.68, -.55, .265, 1.55);
	transition: transform 275ms cubic-bezier(.68, -.55, .265, 1.55);
	transition: transform 275ms cubic-bezier(.68, -.55, .265, 1.55), -webkit-transform 275ms cubic-bezier(.68, -.55, .265, 1.55)
}

.hamburger--elastic.is-active .hamburger-inner {
	-webkit-transform: translate3d(0, 6px, 0) rotate(135deg);
	transform: translate3d(0, 6px, 0) rotate(135deg);
	-webkit-transition-delay: 75ms;
	transition-delay: 75ms
}

.hamburger--elastic.is-active .hamburger-inner::before {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	opacity: 0
}

.hamburger--elastic.is-active .hamburger-inner::after {
	-webkit-transform: translate3d(0, -12px, 0) rotate(-270deg);
	transform: translate3d(0, -12px, 0) rotate(-270deg);
	-webkit-transition-delay: 75ms;
	transition-delay: 75ms
}

.hamburger--emphatic {
	overflow: hidden
}

.hamburger--emphatic .hamburger-inner {
	-webkit-transition: background-color 125ms 175ms ease-in;
	transition: background-color 125ms 175ms ease-in
}

.hamburger--emphatic .hamburger-inner::before {
	left: 0;
	-webkit-transition: top 50ms 125ms linear, left 125ms 175ms ease-in, -webkit-transform 125ms cubic-bezier(.6, .04, .98, .335);
	transition: top 50ms 125ms linear, left 125ms 175ms ease-in, -webkit-transform 125ms cubic-bezier(.6, .04, .98, .335);
	transition: transform 125ms cubic-bezier(.6, .04, .98, .335), top 50ms 125ms linear, left 125ms 175ms ease-in;
	transition: transform 125ms cubic-bezier(.6, .04, .98, .335), top 50ms 125ms linear, left 125ms 175ms ease-in, -webkit-transform 125ms cubic-bezier(.6, .04, .98, .335)
}

.hamburger--emphatic .hamburger-inner::after {
	top: 6px;
	right: 0;
	-webkit-transition: top 50ms 125ms linear, right 125ms 175ms ease-in, -webkit-transform 125ms cubic-bezier(.6, .04, .98, .335);
	transition: top 50ms 125ms linear, right 125ms 175ms ease-in, -webkit-transform 125ms cubic-bezier(.6, .04, .98, .335);
	transition: transform 125ms cubic-bezier(.6, .04, .98, .335), top 50ms 125ms linear, right 125ms 175ms ease-in;
	transition: transform 125ms cubic-bezier(.6, .04, .98, .335), top 50ms 125ms linear, right 125ms 175ms ease-in, -webkit-transform 125ms cubic-bezier(.6, .04, .98, .335)
}

.hamburger--emphatic.is-active .hamburger-inner {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	background-color: transparent !important
}

.hamburger--emphatic.is-active .hamburger-inner::before {
	left: -36px;
	top: -36px;
	-webkit-transform: translate3d(36px, 36px, 0) rotate(45deg);
	transform: translate3d(36px, 36px, 0) rotate(45deg);
	-webkit-transition: left 125ms ease-out, top 50ms 125ms linear, -webkit-transform 125ms 175ms cubic-bezier(.075, .82, .165, 1);
	transition: left 125ms ease-out, top 50ms 125ms linear, -webkit-transform 125ms 175ms cubic-bezier(.075, .82, .165, 1);
	transition: left 125ms ease-out, top 50ms 125ms linear, transform 125ms 175ms cubic-bezier(.075, .82, .165, 1);
	transition: left 125ms ease-out, top 50ms 125ms linear, transform 125ms 175ms cubic-bezier(.075, .82, .165, 1), -webkit-transform 125ms 175ms cubic-bezier(.075, .82, .165, 1)
}

.hamburger--emphatic.is-active .hamburger-inner::after {
	right: -36px;
	top: -36px;
	-webkit-transform: translate3d(-36px, 36px, 0) rotate(-45deg);
	transform: translate3d(-36px, 36px, 0) rotate(-45deg);
	-webkit-transition: right 125ms ease-out, top 50ms 125ms linear, -webkit-transform 125ms 175ms cubic-bezier(.075, .82, .165, 1);
	transition: right 125ms ease-out, top 50ms 125ms linear, -webkit-transform 125ms 175ms cubic-bezier(.075, .82, .165, 1);
	transition: right 125ms ease-out, top 50ms 125ms linear, transform 125ms 175ms cubic-bezier(.075, .82, .165, 1);
	transition: right 125ms ease-out, top 50ms 125ms linear, transform 125ms 175ms cubic-bezier(.075, .82, .165, 1), -webkit-transform 125ms 175ms cubic-bezier(.075, .82, .165, 1)
}

.hamburger--squeeze .hamburger-inner {
	-webkit-transition-duration: 75ms;
	transition-duration: 75ms;
	-webkit-transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.hamburger--squeeze .hamburger-inner::before {
	-webkit-transition: top 75ms .12s ease, opacity 75ms ease;
	transition: top 75ms .12s ease, opacity 75ms ease
}

.hamburger--squeeze .hamburger-inner::after {
	-webkit-transition: bottom 75ms .12s ease, -webkit-transform 75ms cubic-bezier(.55, .055, .675, .19);
	transition: bottom 75ms .12s ease, -webkit-transform 75ms cubic-bezier(.55, .055, .675, .19);
	transition: bottom 75ms .12s ease, transform 75ms cubic-bezier(.55, .055, .675, .19);
	transition: bottom 75ms .12s ease, transform 75ms cubic-bezier(.55, .055, .675, .19), -webkit-transform 75ms cubic-bezier(.55, .055, .675, .19)
}

.hamburger--squeeze.is-active .hamburger-inner {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition-delay: .12s;
	transition-delay: .12s;
	-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.hamburger--squeeze.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	-webkit-transition: top 75ms ease, opacity 75ms .12s ease;
	transition: top 75ms ease, opacity 75ms .12s ease
}

.hamburger--squeeze.is-active .hamburger-inner::after {
	bottom: 0;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transition: bottom 75ms ease, -webkit-transform 75ms .12s cubic-bezier(.215, .61, .355, 1);
	transition: bottom 75ms ease, -webkit-transform 75ms .12s cubic-bezier(.215, .61, .355, 1);
	transition: bottom 75ms ease, transform 75ms .12s cubic-bezier(.215, .61, .355, 1);
	transition: bottom 75ms ease, transform 75ms .12s cubic-bezier(.215, .61, .355, 1), -webkit-transform 75ms .12s cubic-bezier(.215, .61, .355, 1)
}

.hamburger--vortex .hamburger-inner {
	-webkit-transition-duration: .2s;
	transition-duration: .2s;
	-webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.hamburger--vortex .hamburger-inner::after,
.hamburger--vortex .hamburger-inner::before {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
	-webkit-transition-delay: .1s;
	transition-delay: .1s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear
}

.hamburger--vortex .hamburger-inner::before {
	-webkit-transition-property: top, opacity;
	transition-property: top, opacity
}

.hamburger--vortex .hamburger-inner::after {
	-webkit-transition-property: bottom, -webkit-transform;
	transition-property: bottom, -webkit-transform;
	transition-property: bottom, transform;
	transition-property: bottom, transform, -webkit-transform
}

.hamburger--vortex.is-active .hamburger-inner {
	-webkit-transform: rotate(765deg);
	-ms-transform: rotate(765deg);
	transform: rotate(765deg);
	-webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.hamburger--vortex.is-active .hamburger-inner::after,
.hamburger--vortex.is-active .hamburger-inner::before {
	-webkit-transition-delay: 0s;
	transition-delay: 0s
}

.hamburger--vortex.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0
}

.hamburger--vortex.is-active .hamburger-inner::after {
	bottom: 0;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg)
}

body,
html {
	height: 100%
}

p {
	margin-top: 0;
	margin-bottom: 15px
}

circle,
path,
rect {
	-webkit-transition: all .35s ease;
	transition: all .35s ease
}

body {
	font-size: 15px;
	line-height: 1.64;
	min-width: 360px;
	position: relative;
	font-family: Roboto, serif;
	color: #bdc1de;
	margin: 0;
	-webkit-tap-highlight-color: transparent;
	-webkit-text-size-adjust: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background: #141a39
}

::-webkit-input-placeholder {
	color: #666;
	opacity: 1
}

::-moz-placeholder {
	color: #666;
	opacity: 1
}

:-ms-input-placeholder {
	color: #666;
	opacity: 1
}

::-ms-input-placeholder {
	color: #666;
	opacity: 1
}

::placeholder {
	color: #666;
	opacity: 1
}

::-moz-selection {
	background: #b3d4fc;
	text-shadow: none
}

::selection {
	background: #b3d4fc;
	text-shadow: none
}

address {
	font-style: normal
}

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

button,
input,
select,
textarea {
	outline: 0;
	border: none;
	margin: 0;
	padding: 0
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	margin: 0
}

a {
	color: inherit;
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
	text-decoration: none;
	outline: 0
}

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

button {
	cursor: pointer;
	background: 0 0
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

select::-ms-expand {
	display: none
}

textarea {
	resize: none
}

body.hidden {
	overflow: hidden
}

.logo img,
.logo svg {
	display: block
}

.header {
	padding: 41px 0;
	position: absolute;
	z-index: 100;
	left: 0;
	top: 0;
	width: 100%
}

.header-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.main-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 60px;
	position: relative;
	top: 4px
}

.main-list a {
	position: relative;
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500
}

.main-list a:hover {
	color: #ffcb0d
}

.lang {
	position: relative;
	z-index: 1
}

.lang-body {
	position: absolute;
	left: 0;
	width: 100%;
	top: 100%;
	-webkit-box-shadow: 0 10px 24px 0 rgba(0, 0, 0, .35);
	box-shadow: 0 10px 24px 0 rgba(0, 0, 0, .35);
	background: #bdc1de;
	border-radius: 0 0 20px 20px;
	overflow: hidden;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	padding-right: 5px
}

.lang-box {
	max-height: 273px;
	overflow-y: auto
}

.lang-box::-webkit-scrollbar {
	width: 5px;
	border-radius: 5px;
	background: #bdc1de
}

.lang-box::-webkit-scrollbar-thumb {
	background: #7a7fa7;
	border-radius: 5px
}

.lang-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	color: #0e1124;
	padding: 7px 16px
}

.lang-link img {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border-radius: 50%;
	border: 1px solid #7a7fa7;
	width: 24px;
	height: 24px
}

.lang-link:hover {
	background: #dbdffc
}

.lang-link.active {
	background: #dbdffc
}

.lang.active .lang-body {
	opacity: 1;
	visibility: visible
}

.lang.active .lang-toggler {
	background: #141a39;
	border-radius: 20px 20px 0 0
}

.lang.active .lang-toggler svg:last-child {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg)
}

.lang-toggler {
	background: #141a39;
	border-radius: 20px;
	padding: 8px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	width: 148px;
	color: #fff;
	cursor: pointer;
	line-height: 1;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
	z-index: 10
}

.lang-toggler:hover {
	background: #1d254f
}

.lang-toggler img {
	border: 1px solid #374173;
	width: 24px;
	height: 24px;
	border-radius: 50%
}

.lang-toggler svg {
	-webkit-transition: all .35s ease;
	transition: all .35s ease
}

.lang-toggler svg:last-child {
	margin-left: auto
}

.hamburger {
	display: none;
	cursor: pointer
}

.hamburger-box {
	width: 24px;
	height: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.footer {
	background: #374173;
	position: relative;
	z-index: 1
}

.footer::before {
	left: 0;
	bottom: 0;
	width: 100%;
	background: #444f87;
	height: 20px
}

.footer .container {
	position: relative;
	padding: 66px 28px 64px
}

.footer-img {
	bottom: 20px;
	position: absolute;
	left: -21px
}

.footer-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 24px;
	padding-left: 185px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

.footer-row .lang.active .lang-toggler {
	border-radius: 0 0 20px 20px
}

.footer-row .lang-body {
	border-radius: 20px 20px 0 0;
	top: auto;
	bottom: 100%
}

.footer-logo {
	margin-bottom: 26px
}

.footer-logo img {
	display: block
}

.footer-content {
	margin-top: 4px
}

.footer-out img {
	display: block
}

.footer-list {
	margin-top: 8px
}

.footer-list li {
	margin-bottom: 12px
}

.footer-list li:last-child {
	margin-bottom: 0
}

.footer-list li a {
	color: #fff;
	font-weight: 500
}

.footer-list li a:hover {
	color: #ffcb0d
}

.copyright {
	max-width: 178px;
	color: #bdc1de;
	margin-bottom: 26px
}

.copyright a {
	font-weight: 700
}

.copyright a:hover {
	color: #ffcb0d
}

.is-error {
	font-size: 13px;
	color: #ff1b1b;
	display: inline-block;
	margin-top: 6px
}

.form-label {
	display: inline-block;
	font-size: 15px;
	line-height: 1.64;
	color: #fff;
	padding-bottom: 6px;
	padding-left: 18px
}

.form-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 16px 38px
}

.form .btn {
	margin-top: 54px
}

.form-item {
	width: calc(50% - 19px)
}

.form-item:last-child {
	width: 100%
}

.form-input,
.form-textarea {
	display: block;
	width: 100%;
	font-family: Roboto, serif;
	font-size: 15px;
	color: #0e1124;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	-webkit-appearance: none;
	border-radius: 14px;
	padding: 15px 18px;
	border: 1px solid #a9adca;
	-webkit-box-shadow: inset 0 -4px 4px 0 rgba(219, 223, 252, .5), inset 0 3px 5px 0 rgba(61, 65, 88, .5);
	box-shadow: inset 0 -4px 4px 0 rgba(219, 223, 252, .5), inset 0 3px 5px 0 rgba(61, 65, 88, .5);
	background: #bdc1de
}

.form-input::-webkit-input-placeholder,
.form-textarea::-webkit-input-placeholder {
	font-size: 15px;
	color: #0e1124;
	font-family: Roboto, serif
}

.form-input::-moz-placeholder,
.form-textarea::-moz-placeholder {
	font-size: 15px;
	color: #0e1124;
	font-family: Roboto, serif
}

.form-input:-ms-input-placeholder,
.form-textarea:-ms-input-placeholder {
	font-size: 15px;
	color: #0e1124;
	font-family: Roboto, serif
}

.form-input::-ms-input-placeholder,
.form-textarea::-ms-input-placeholder {
	font-size: 15px;
	color: #0e1124;
	font-family: Roboto, serif
}

.form-input::placeholder,
.form-textarea::placeholder {
	font-size: 15px;
	color: #0e1124;
	font-family: Roboto, serif
}

.form-input:hover,
.form-textarea:hover {
	border: 1px solid #fff
}

.form-input:focus,
.form-textarea:focus {
	outline: 2px solid #ffff8c;
	border-color: transparent
}

.form-input.has-value,
.form-textarea.has-value {
	outline: 2px solid #ffff8c;
	border-color: transparent
}

.form-input.error,
.form-textarea.error {
	background: #ff9794;
	outline: 2px solid #ff1b1b;
	border-color: transparent
}

.form-textarea {
	min-height: 112px
}

.form-checkbox input[type=checkbox] {
	display: none
}

.form-checkbox input[type=checkbox]+label {
	position: relative;
	cursor: pointer;
	display: block;
	padding-left: 30px;
	font-size: 14px;
	color: #333
}

.form-checkbox input[type=checkbox]+label::before {
	width: 16px;
	height: 16px;
	top: 1px;
	left: 0;
	border: 1px solid #333;
	border-radius: 2px
}

.form-checkbox input[type=checkbox]:checked+label::after {
	width: 5px;
	height: 8px;
	border-bottom: 1px solid #333;
	border-right: 1px solid #333;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 6px;
	top: 4px
}

.select2 {
	display: block
}

.select2.select2-container {
	width: 100% !important
}

.select2-results__option {
	padding: 9px 20px;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	height: 40px;
	font-size: 14px
}

.select2-dropdown {
	border: 1px solid #d9d9d9;
	border-radius: 4px
}

.select2-container {
	z-index: 1100
}

.select2-container--open .select2-selection__arrow::before {
	-webkit-transform: translate(-50%, -50%) rotate(180deg) !important;
	-ms-transform: translate(-50%, -50%) rotate(180deg) !important;
	transform: translate(-50%, -50%) rotate(180deg) !important
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #f0f7f6;
	color: #000
}

.select2-container--default .select2-results__option[aria-selected=true] {
	background-color: #f0f7f6;
	color: #000
}

.select2-container--default .select2-selection {
	border: 1px solid #d9d9d9;
	-webkit-transition: all .35s ease;
	transition: all .35s ease
}

.select2-container--default .select2-selection:hover {
	border-color: #000
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100%;
	border-left: 1px solid rgba(217, 217, 217, .05);
	width: 44px
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none
}

.select2-container--default .select2-selection--single .select2-selection__arrow::before {
	width: 12px;
	height: 8px;
	background: url(../images/select-arrow.svg) no-repeat center center;
	background-size: contain;
	top: 50%;
	left: 50%;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 6px 0;
	padding-left: 12px;
	padding-right: 12px;
	color: #000;
	font-size: 14px
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: #000
}

.select2-container .select2-selection--single {
	height: auto
}

.select2-selection {
	outline: 0 !important
}

.select2-selection__rendered {
	padding: 8px 0;
	padding-left: 12px;
	padding-right: 12px
}

.select2-search {
	display: none
}

.btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 16px;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	font-size: 18px;
	font-family: Roboto, serif;
	text-align: center;
	border-radius: 18px;
	padding: 23px 24px;
	font-weight: 900;
	position: relative;
	z-index: 1;
	line-height: 1
}

.btn-yellow {
	-webkit-box-shadow: 0 0 4px 0 rgba(255, 210, 27, .5);
	box-shadow: 0 0 4px 0 rgba(255, 210, 27, .5);
	background: -webkit-gradient(linear, left bottom, left top, from(#ffae00), to(#ffdd26));
	background: linear-gradient(360deg, #ffae00 0, #ffdd26 100%);
	color: #141a39
}

.btn-yellow:hover {
	-webkit-box-shadow: 0 0 14px 0 rgba(255, 210, 27, .8);
	box-shadow: 0 0 14px 0 rgba(255, 210, 27, .8);
	background: -webkit-gradient(linear, left bottom, left top, from(#ffc31e), to(#ffff5f));
	background: linear-gradient(360deg, #ffc31e 0, #ffff5f 100%)
}

.btn-yellow:hover::before {
	background: -webkit-gradient(linear, left bottom, left top, from(#ffff5f), to(#ffff86));
	background: linear-gradient(360deg, #ffff5f 0, #ffff86 100%);
	opacity: .8
}

.btn-yellow:active {
	-webkit-box-shadow: 0 0 4px 0 rgba(255, 210, 27, .5);
	box-shadow: 0 0 4px 0 rgba(255, 210, 27, .5);
	background: -webkit-gradient(linear, left bottom, left top, from(#fb0), to(#f3a600));
	background: linear-gradient(360deg, #fb0 0, #f3a600 100%)
}

.btn-yellow:active::before {
	background: -webkit-gradient(linear, left bottom, left top, from(#ffc300), to(#ffdd26));
	background: linear-gradient(360deg, #ffc300 0, #ffdd26 100%);
	opacity: .5;
	border: 1px solid rgba(255, 226, 72, .5)
}

.btn-yellow span::before {
	left: 13px;
	top: 4px;
	width: 86px;
	height: 4px;
	background: url(../images/btn-orange-1.svg) no-repeat center center;
	background-size: contain
}

.btn-yellow span::after {
	right: 6px;
	top: 13px;
	width: 3px;
	height: 39px;
	background: url(../images/btn-orange-2.svg) no-repeat center center;
	background-size: contain
}

.btn-yellow::before {
	left: 7px;
	top: 7px;
	width: calc(100% - 14px);
	height: calc(100% - 14px);
	background: -webkit-gradient(linear, left bottom, left top, from(#ffdd26), to(#ffc300));
	background: linear-gradient(360deg, #ffdd26 0, #ffc300 100%);
	opacity: .8;
	border-radius: 11px;
	z-index: -1;
	border: 1px solid transparent
}

.btn-yellow::after {
	width: calc(100% + 28px);
	left: -14px;
	top: 56px;
	height: 65px;
	background: url(../images/btn-bg.png) no-repeat center center;
	background-size: contain;
	z-index: -2
}

.btn-yellow.btn-transparent {
	border: 1px solid #ffcb0d;
	-webkit-box-shadow: 0 0 4px 0 rgba(255, 210, 27, .5);
	box-shadow: 0 0 4px 0 rgba(255, 210, 27, .5);
	background: 0 0;
	color: #ffcb0d;
	font-weight: 600
}

.btn-yellow.btn-transparent::after {
	display: none
}

.btn-yellow.btn-transparent::before {
	display: none
}

.btn-yellow.btn-transparent span::after,
.btn-yellow.btn-transparent span::before {
	display: none
}

.btn-yellow.btn-transparent:hover {
	border: 1px solid #ffff8c;
	text-shadow: 0 0 10px rgba(255, 210, 27, .5);
	color: #ffff8c
}

.btn-yellow.btn-transparent:hover path {
	fill: #ffff8c
}

.btn-yellow.btn-transparent:active {
	border: 1px solid #ffdd26;
	-webkit-box-shadow: 0 0 4px 0 rgba(255, 210, 27, .5);
	box-shadow: 0 0 4px 0 rgba(255, 210, 27, .5);
	color: #ffdd26;
	text-shadow: none
}

.btn-yellow.btn-transparent:active path {
	fill: #ffdd26
}

.btn-200 {
	width: 100%;
	max-width: 200px
}

.btn-288 {
	width: 100%;
	max-width: 288px
}

.btn-back {
	-webkit-box-shadow: 0 0 4px 0 rgba(255, 210, 27, .5);
	box-shadow: 0 0 4px 0 rgba(255, 210, 27, .5);
	border: 1px solid #ffcb0d;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 18px;
	width: 66px;
	height: 66px
}

.btn-back:hover {
	border: 1px solid #ffff8c
}

.btn-back:hover svg {
	-webkit-filter: drop-shadow(0 0 10px 0 rgba(255, 210, 27, .5));
	filter: drop-shadow(0 0 10px 0 rgba(255, 210, 27, .5))
}

.btn-back:hover path {
	stroke: #ffff8c
}

.btn-back:active {
	border: 1px solid #ffdd26
}

.btn-back:active path {
	stroke: #ffdd26
}

.socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px
}

.socials li img,
.socials li svg {
	display: block
}

.read-more {
	font-weight: 500;
	font-size: 14px;
	color: #fff;
	border-bottom: 1px solid transparent;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0 5px;
	-webkit-transition: all .35s ease;
	transition: all .35s ease
}

.read-more:hover {
	border-bottom-color: #fff
}

.read-more:hover svg {
	-webkit-transform: translateX(5px);
	-ms-transform: translateX(5px);
	transform: translateX(5px)
}

.read-more svg {
	-webkit-transition: all .35s ease;
	transition: all .35s ease
}

.slick-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0 22px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.slick-dots li {
	background: #374173;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	position: relative
}

.slick-dots li:hover {
	background: #bdc1de
}

.slick-dots li.slick-active {
	background: #bdc1de
}

.slick-dots li button {
	font-size: 0
}

.slick-slide {
	outline: 0
}

.text-right {
	text-align: right
}

.text-center {
	text-align: center
}

.slider-box {
	position: relative;
	z-index: 1
}

.slider-arrow {
	position: absolute;
	z-index: 2;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .65);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .65)
}

.slider-arrow:hover::after {
	background: #56629f
}

.slider-arrow:hover path {
	stroke: #fff
}

.slider-arrow svg {
	position: relative;
	z-index: 2
}

.slider-arrow::after {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #374173;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	border-radius: 50%
}

.slider-arrow::before {
	width: 58px;
	height: 58px;
	background: linear-gradient(143.5deg, #989ed2 10.67%, #465499 87.35%);
	border-radius: 50%;
	z-index: -1
}

.slider-prev {
	left: -24px
}

.slider-next {
	right: -24px
}

.slider-next svg {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg)
}

.pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 21px
}

.pagination-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 22px
}

.pagination-list li {
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.pagination-list li.active a {
	color: #141a39
}

.pagination-list li.active a::before {
	background: #ffdd26
}

.pagination-list li.active a::after {
	background: #ffdd26
}

.pagination-list li a {
	border-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	position: relative;
	z-index: 1
}

.pagination-list li a:hover {
	color: #141a39
}

.pagination-list li a:hover::before {
	background: #ffdd26
}

.pagination-list li a:hover::after {
	background: #ffdd26
}

.pagination-list li a::before {
	left: -1px;
	top: -1px;
	width: 58px;
	height: 58px;
	border-radius: 10px;
	background: linear-gradient(143.5deg, #989ed2 10.67%, #465499 87.35%);
	z-index: -2
}

.pagination-list li a::after {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #374173;
	border-radius: 10px;
	z-index: -1;
	-webkit-transition: all .35s ease;
	transition: all .35s ease
}

.pagination-arrow {
	border-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	position: relative;
	z-index: 1
}

.pagination-arrow:hover::after {
	background: #56629f
}

.pagination-arrow::before {
	left: -1px;
	top: -1px;
	width: 58px;
	height: 58px;
	border-radius: 10px;
	background: linear-gradient(143.5deg, #989ed2 10.67%, #465499 87.35%);
	z-index: -2
}

.pagination-arrow::after {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #374173;
	border-radius: 10px;
	z-index: -1;
	-webkit-transition: all .35s ease;
	transition: all .35s ease
}

.bg-dark {
	background: #0e1124
}

.modal {
	display: none;
	max-width: 670px;
	-webkit-box-shadow: 0 0 200px 0 #000;
	box-shadow: 0 0 200px 0 #000;
	background: #374173;
	border-radius: 30px;
	width: 100%;
	padding: 0
}

.modal-close {
	cursor: pointer;
	-webkit-transition: all .35s ease;
	transition: all .35s ease
}

.modal-close svg {
	display: block;
	width: 22px;
	height: 22px
}

.modal-close svg:hover path {
	stroke: #ffcb0d
}

.modal-header {
	padding: 22px 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-radius: 30px 30px 0 0;
	background: #56629f
}

.modal-body {
	padding: 30px 50px 60px
}

.h1,
h1 {
	font-weight: 900;
	font-size: 58px;
	line-height: 1.1;
	color: #fff
}

.h1-56,
h1-56 {
	font-size: 56px;
	line-height: 1.16
}

.h2,
h2 {
	font-weight: 700;
	font-size: 48px;
	line-height: 1.18;
	color: #fff
}

.h3,
h3 {
	font-weight: 700;
	font-size: 40px;
	line-height: 1.22;
	color: #fff
}

.h4,
h4 {
	font-weight: 700;
	font-size: 32px;
	line-height: 1.28;
	color: #fff
}

.h5,
h5 {
	font-weight: 700;
	font-size: 26px;
	line-height: 1.3;
	color: #fff
}

.container {
	max-width: 1096px !important;
	padding: 0 28px;
	margin: 0 auto;
	width: 100%
}

.hero {
	position: relative;
	z-index: 1;
	padding-top: 206px;
	padding-bottom: 140px
}

.hero-row {
	position: relative
}

.hero-img {
	position: absolute;
	right: -93px;
	top: -54px
}

.hero-bg {
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1
}

.hero-content {
	max-width: 508px;
    display: flex;
    flex-direction: column-reverse;
}

.hero-content .h1 {
	margin-bottom: 56px
}

.hero-content p {
	margin-bottom: 100px
}

.hero-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 440px;
	gap: 40px
}

.features {
	position: relative;
	z-index: 2;
	padding-bottom: 120px
}

.features-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 68px
}

.features-item {
	width: calc(33.333% - 46px)
}

.features-item__info-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 11px
}

.features-item__info-row .bold {
	font-weight: 700
}

.features-item__info-row:last-child {
	margin-bottom: 0
}

.features-item__info-row .dots {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	border-bottom: 1px dotted #bdc1de
}

.features-item:nth-child(1) .features-item__icon img {
	width: 158px
}

.features-item:nth-child(2) .features-item__icon img {
	width: 158px
}

.features-item:nth-child(3) .features-item__icon {
	margin-bottom: -7px
}

.features-item:nth-child(3) .features-item__icon img {
	width: 196px
}

.features-item__icon {
	margin-left: 7px;
	margin-bottom: 0
}

.features-item__icon img {
	display: block
}

.features-item .h4 {
	margin-bottom: 30px
}

.features-item p {
	margin-bottom: 27px;
	line-height: 1.58
}

.features-item p:last-child {
	margin-bottom: 0
}

.overlay {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: fixed;
	background: rgba(14, 17, 36, .7);
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	pointer-events: none
}

.overlay.active {
	opacity: 1;
	visibility: visible
}

.start {
	padding: 119px 0;
	position: relative;
	z-index: 1
}

.start-frame {
	display: none
}

.start-frame iframe {
	display: block;
	width: 100%;
	height: 601px;
	outline: 0;
	border: none
}

.start-frame__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	margin-bottom: 39px
}

.start-bg {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1
}

.start-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 90px
}

.start .slider-arrow {
	top: 50%;
	margin-top: -92px
}

.start .slider-box {
	width: calc(100% - 391px)
}

.start-item {
	background: linear-gradient(135deg, #4f5ba6 0, #2c3362 57%);
	border-radius: 20px;
	padding: 10px
}

.start-item img {
	display: block;
	border: 1px solid #151825;
	border-radius: 10px;
	width: 100%
}

.start-content {
	max-width: 301px
}

.start-content .h3 {
	margin-bottom: 30px
}

.start-content p {
	margin-bottom: 27px
}

.start-content p:last-child {
	margin-bottom: 0
}

.start .slick-dots {
	margin: 40px 0 60px
}

.start .hero-nav {
	margin: 0 auto
}

.start-slider {
	margin: 0 -10px
}

.start-slide {
	padding: 0 10px
}

.play {
	padding: 125px 0 108px;
	position: relative;
	z-index: 1
}

.play-bg {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1
}

.play-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 128px
}

.play-row>.h2 {
	display: none
}

.play .container {
	position: relative
}

.play-img {
	position: absolute;
	left: -54px;
	top: -87px
}

.play-img img {
	display: block;
	max-width: none
}

.play-content {
	max-width: 577px;
	margin-left: auto
}

.play-content .h2 {
	max-width: 422px;
	margin-bottom: 40px
}

.play-content p {
	margin-bottom: 27px
}

.play-content p:last-of-type {
	margin-bottom: 60px
}

.about {
	padding-bottom: 110px;
	padding-top: 120px
}

.about-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 161px;
    margin-top: 50px;
}

.about-content {
	width: 100%;
	max-width: 577px
}

.about-content .h2 {
	margin-bottom: 40px
}

.about-content p {
	margin-bottom: 40px;
	line-height: 1.68
}

.about-content p:last-child {
	margin-bottom: 0
}

.about-content .h5 {
	margin-bottom: 20px;
	margin-top: 60px
}

.about-content .table-wrap {
	border: 1px solid #989ed2;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 40px
}

.about-content table {
	border-radius: 10px;
	width: 100%;
	border-collapse: collapse
}

.about-content table th {
	background: #56629f;
	font-weight: 700;
	font-size: 15px;
	text-align: left;
	color: #fff;
	padding: 24.5px 50px;
	line-height: 1.234
}

.about-content table td {
	color: #fff;
	padding: 11px 50px;
	line-height: 1.2
}

.about-content table tr:nth-child(odd) td {
	background: #444f87
}

.about-content table tr:nth-child(even) td {
	background: #374173
}

.about-aside {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 303px;
	margin-top: 54px
}

.about-card {
	border: 2px solid #0e1124;
	border-radius: 20px;
	background: #0e1124;
	margin-bottom: 60px
}

.about-card__content {
	padding: 40px 50px 46px
}

.about-card__content .features-item__info-row {
	margin-bottom: 13px
}

.about-card__logo {
	margin-top: 50px
}

.about-card__logo img {
	display: block;
	margin: 0 auto
}

.about-card__img {
	border-radius: 20px 20px 0 0;
	overflow: hidden
}

.about-card__img img {
	display: block;
	width: 100%
}

.about-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px
}

.reviews {
	position: relative;
	z-index: 1;
	padding: 120px 0 140px
}

.reviews-bg {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1
}

.reviews-header {
	text-align: center;
	margin-bottom: 70px
}

.reviews-header .h2 {
	margin-bottom: 30px
}

.reviews-header .btn {
	width: 100%;
	max-width: 288px;
	padding: 17.5px 24px
}

.reviews-header--footer {
	margin-bottom: 60px
}

.reviews-item {
	margin-bottom: 50px
}

.reviews-item__icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: url(../images/user-bg.svg) no-repeat center center;
	background-size: contain;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.reviews-item__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 26px
}

.reviews-item__name {
	font-weight: 500;
	font-size: 20px;
	line-height: 1.64;
	color: #fff
}

.reviews-item__casino {
	font-weight: 700;
	font-size: 15px;
	line-height: 1.64;
	color: #ffcb0d
}

.reviews-item p {
	margin-bottom: 0;
	margin-top: 12px;
	padding-left: 84px
}

.inner {
	padding-top: 184px;
	padding-bottom: 102px;
	position: relative;
	z-index: 1
}

.inner-bg {
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1
}

.inner-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 68px
}

.inner-content {
	max-width: 394px
}

.inner-content .inner-img {
	display: none
}

.inner-content>p {
	margin-bottom: 30px
}

.inner-content>p:last-child {
	margin-bottom: 0
}

.inner-content .hero-nav {
	margin-bottom: 62px
}

.inner-img {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	border-radius: 10px;
	background: #090f1e;
	position: relative;
	z-index: 1;
	padding-top: 4px;
	padding-bottom: 29px;
	margin-top: 16px;
	overflow: hidden
}

.inner-img::before {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-filter: blur(70px);
	filter: blur(70px);
	background: rgba(0, 0, 0, .4);
	-webkit-transform: rotate(-7deg);
	-ms-transform: rotate(-7deg);
	transform: rotate(-7deg)
}

.inner-img__image {
	display: block;
	width: 100%
}

.inner-img__logo {
	display: block;
	margin-left: auto;
	margin-right: 25px;
	margin-top: 11px
}

.rate-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 22px;
	margin-bottom: 19px
}

.rate-header__img {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 58px;
	height: 58px
}

.rate-header__img img {
	width: 100%;
	border-radius: 10px
}

.rate-header__content p {
	font-weight: 400;
	font-size: 13px;
	color: #bdc1de;
	margin: 0
}

.rate-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	margin-bottom: 49px
}

.rate-info__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	color: #fff
}

.rate-info__item img {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 22px
}

.rate-info__item b {
	font-weight: 700
}

@media only screen and (max-width:1240px) {
	.hero-img {
		right: -28px;
		max-width: 500px
	}

	.features-row {
		gap: 24px
	}

	.features-item {
		width: calc(33.333% - 16px)
	}

	.start-frame__nav {
		gap: 20px
	}

	.start-frame iframe {
		width: calc(100% + 72px);
		position: relative;
		left: -36px;
		height: 700px
	}

	.start-row {
		gap: 24px
	}

	.start-content {
		max-width: 401px
	}

	.slider-prev {
		left: 16px
	}

	.slider-next {
		right: 16px
	}

	.about-row {
		gap: 24px
	}

	.about-aside {
		max-width: 385px
	}

	.reviews-row {
		gap: 24px
	}

	
}

@media only screen and (max-width:1023px) {
	.inner {
		padding-top: 120px
	}

	.inner-img {
		display: none
	}

	.inner-content {
		max-width: 100%
	}

	.inner-content .inner-img {
		display: block;
		margin-bottom: 22px
	}

	.header {
		padding: 22px 0
	}

	.lang {
		background: 0 0
	}

	.lang-body {
		width: 148px;
		left: auto;
		right: 0;
		border-radius: 20px 0 20px 20px
	}

	.lang.active .lang-body {
		background: #bdc1de
	}

	.lang.active .lang-toggler {
		background: #bdc1de
	}

	.lang-toggler {
		padding: 8px;
		width: auto;
		background: 0 0
	}

	.lang-toggler svg {
		display: none
	}

	.lang-toggler span {
		display: none
	}

	.lang-toggler img {
		width: 28px;
		height: 28px;
		border: none
	}

	.hamburger {
		display: inline-block;
		position: relativeq;
		z-index: 10231
	}

	.main-list {
		display: block
	}

	.main-list li {
		margin-bottom: 26px
	}

	.main-list li:last-child {
		margin-bottom: 0
	}

	.main-nav {
		position: absolute;
		width: 213px;
		left: 0;
		top: 0;
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: -webkit-transform .35s ease;
		transition: -webkit-transform .35s ease;
		transition: transform .35s ease;
		transition: transform .35s ease, -webkit-transform .35s ease;
		padding: 95px 36px 65px;
		z-index: 100;
		-webkit-box-shadow: 0 10px 50px 0 #000;
		box-shadow: 0 10px 50px 0 #000;
		background: linear-gradient(164deg, #4f5ba6 0, #2c3362 100%);
		border-radius: 0 30px 30px 30px
	}

	.main-nav.open {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}

	.hero-img {
		position: static;
		display: block;
		margin: 0 auto
	}

	.hero-content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}

	.hero-content p {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1
	}

	.hero-content .hero-nav {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}

	.hero-content .h1 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3
	}

	.hero {
		padding-top: 120px;
		padding-bottom: 80px
	}

	.hero-img {
		margin-bottom: 36px;
		position: relative;
		left: 30px;
		top: 0
	}

	.hero-content {
		max-width: 100%
	}

	.hero-content p {
		text-align: center;
		margin-bottom: 44px
	}

	.hero-content .hero-nav {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		max-width: 100%;
		margin-bottom: 80px
	}

	.hero-content .h1 {
		text-align: center;
		margin-bottom: 0
	}

	.features {
		padding-bottom: 40px
	}

	.features-row {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 40px 24px
	}

	.features-item {
		width: calc(50% - 12px)
	}

	.start {
		padding-top: 40px
	}

	.start-row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0
	}

	.start-content {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1
	}

	.start-content p {
		display: none
	}

	.start .slider-box {
		width: 100%
	}

	.play {
		padding: 80px 0
	}

	.play-img {
		position: static;
		margin-bottom: 40px
	}

	.play-row {
		display: block
	}

	.play-content {
		max-width: 100%
	}

	.about-row {
		display: block
	}

	.about-content {
		max-width: 100%
	}

	.about-aside {
		margin-left: auto;
		margin-right: auto
	}
}

@media only screen and (max-width:767px) {
	.container {
		padding: 0 36px
	}

	.h1,
	h1 {
		font-size: 38px;
		line-height: 1.2
	}

	.h2,
	h2 {
		font-size: 40px;
		line-height: 1.22
	}

	.play {
		padding-top: 50px;
		padding-bottom: 60px
	}

	.play .hero-nav {
		position: relative;
		left: -8px;
		width: calc(100% + 16px)
	}

	.play-row>.h2 {
		display: block;
		margin-bottom: 29px
	}

	.play-content .h2 {
		display: none
	}

	.play-content p:last-of-type {
		margin-bottom: 42px
	}

	.play-img {
		left: -28px;
		width: calc(100% + 56px);
		position: relative;
		top: 0;
		margin-bottom: 6px
	}

	.play-img img {
		max-width: 100%
	}

	.hero {
		padding-top: 88px;
		padding-bottom: 36px
	}

	.hero .hero-nav {
		position: relative;
		left: -8px;
		width: calc(100% + 16px);
		max-width: none
	}

	.hero-nav {
		gap: 14px
	}

	.hero-nav .btn-transparent {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1
	}

	.hero-img {
		max-width: 100%;
		left: 11px;
		margin-bottom: 40px;
		right: auto;
		max-width: 311px
	}

	.features {
		padding-bottom: 50px
	}

	.features-row {
		gap: 48px 24px
	}

	.features-item {
		width: 100%
	}

	.features-item:last-child .features-item__icon img {
		left: 11px
	}

	.features-item__icon img {
		display: block;
		margin: 0 auto;
		position: relative;
		left: -10px
	}

	.features-item__content {
		text-align: center;
		margin-top: -10px
	}

	.features-item__content .h4 {
		margin-bottom: 20px
	}

	.features-item__content p {
		text-align: left
	}

	.reviews-box {
		width: 100%
	}

	.footer {
		z-index: initial
	}

	.footer .container {
		padding: 50px 36px 68px;
		position: static
	}

	.footer-row {
		padding-left: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0
	}

	.footer-row .lang {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
		margin-bottom: 50px;
		position: relative;
		z-index: 20
	}

	.footer-row .lang.active .lang-toggler {
		border-radius: 20px 20px 0 0;
		color: #0e1124
	}

	.footer-row .lang.active .lang-toggler path {
		stroke: #0e1124
	}

	.footer-row .lang-body {
		bottom: auto;
		top: 100%;
		left: 0;
		right: auto;
		border-radius: 0 20px 20px 20px
	}

	.footer-row .lang-toggler {
		background: #141a39
	}

	.footer-row .lang-toggler img {
		width: 24px;
		height: 24px
	}

	.footer-row .lang-toggler span,
	.footer-row .lang-toggler svg {
		display: block
	}

	.footer-img {
		left: auto;
		max-width: 136px;
		right: 0
	}

	.footer-logo img {
		max-width: 220px
	}

	.footer-list {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		margin-bottom: 60px
	}

	.footer-content {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3
	}

	.header {
		padding: 12px 0
	}

	.header .logo img {
		max-width: 160px
	}

	.header .container {
		padding-left: 26px;
		padding-right: 18px
	}

	.start {
		padding-top: 54px;
		padding-bottom: 70px
	}

	.start-bg {
		display: none
	}

	.start .slider-arrow {
		display: none !important
	}

	.start .slider-box {
		position: relative;
		left: -8px;
		width: calc(100% + 16px)
	}

	.start-item {
		padding: 9px
	}

	.start .slick-dots {
		margin-bottom: 52px
	}

	.about {
		padding-top: 30px;
		padding-bottom: 60px
	}

	.about-nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		gap: 14px;
		position: relative;
		left: -8px;
		width: calc(100% + 16px)
	}

	.about-content .h2 {
		margin-bottom: 20px
	}

	.about-content .h5 {
		margin-top: 40px;
		margin-bottom: 20px
	}

	.about-content p {
		margin-bottom: 30px
	}

	.about-content .table-wrap {
		margin-bottom: 30px
	}

	.about-content table th {
		padding: 15.25px 15px
	}

	.about-content table th:first-child {
		padding-left: 30px
	}

	.about-content table td {
		padding: 11px 15px
	}

	.about-content table td:first-child {
		padding-left: 30px
	}

	.about-card {
		margin-bottom: 30px
	}

	.about-card__content {
		padding: 30px 44px 40px
	}

	.about-card__logo {
		margin-top: 34px
	}

	.about-card__logo img {
		max-width: 103px
	}

	.about-card__img {
		position: relative;
		overflow: hidden;
		padding-top: 56%
	}

	.about-card__img img {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover
	}

	.about-aside {
		margin-top: 20px
	}

	.reviews {
		padding-top: 30px;
		overflow: hidden
	}

	.reviews-bg {
		min-width: 700px;
		right: -150px
	}

	.reviews-header {
		margin-bottom: 40px
	}

	.reviews-header--footer {
		margin-bottom: 50px
	}

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

	.reviews-item {
		margin-bottom: 40px
	}

	.reviews-item p {
		padding-left: 0;
		margin-top: 16px
	}

	.reviews-item__icon {
		width: 43px;
		height: 43px
	}

	.reviews-item__icon img {
		width: 15px
	}

	.reviews-item__header {
		gap: 17px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}

	.reviews-item__casino {
		line-height: 1.4
	}

	.pagination {
		gap: 10px
	}

	.pagination-arrow {
		width: 40px;
		height: 52px
	}

	.pagination-arrow::before {
		width: 42px;
		height: 54px
	}

	.pagination-list {
		gap: 10px
	}

	.pagination-list li a {
		width: 40px;
		height: 52px
	}

	.pagination-list li a::before {
		width: 42px;
		height: 54px
	}

	.modal-header {
		padding: 23px 42px;
		padding-right: 29px
	}

	.modal-body {
		padding: 20px 42px 60px
	}

	.form-row {
		gap: 16px
	}

	.form-item {
		width: 100%
	}

	.form .btn {
		margin-top: 44px;
		max-width: 100%
	}

	.inner {
		padding-top: 92px;
		padding-bottom: 48px
	}

	.inner-content .hero-nav {
		position: relative;
		left: -8px;
		width: calc(100% + 16px);
		margin-bottom: 53px
	}

	.inner-img {
		padding-bottom: 16px
	}

	.inner-img__logo {
		width: 77px;
		margin-right: 15px;
		margin-top: 6px
	}

	.rate-info {
		margin-bottom: 36px
	}

	.rate-header {
		gap: 18px
	}

	.rate-header__content .h3 {
		font-size: 32px
	}
}