

/* Start:/local/templates/ggmed/css/main.css?1772706995238630*/
@charset "UTF-8";
:root {
	--container-width: 1720px;
	--container-width--wide: 1820px;
	--font: "Onest", -apple-system, BlinkMacSystemFont, sans-serif;
	--gap: 20px;
	--black: #262626;
	--black-light: #808080;
	--black-lightest: #a3a3a3;
	--gold: #907D6F;
	--gold95: #F4F2F0;
	--gold95-hover: #E9E5E2;
	--line: #D2CBC6;
	--services: #B1A49A;
	--gradient-1: linear-gradient(320deg, #CEC6C1, #9D8C81);
	--gradient-2: linear-gradient(320deg, #A6978C, #736459);
	--br-10: 10px;
}
@media (max-width: 1024px) {
	:root {
		--gap: 5px;
	}
}

: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-shadow: none;
	--f-button-transition: all .15s ease;
	--f-button-transform: none;
	--f-button-outline-width: 1px;
	--f-button-outline-color: rgba(0, 0, 0, .7);
	--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-opacity: 1;
	--f-button-svg-disabled-opacity: .5;
	--f-button-svg-transition: opacity .15s ease;
	--f-button-svg-transform: none;
}

.f-button {
	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);
	transform: var(--f-button-transform);
	transition: var(--f-button-transition);
	backdrop-filter: var(--f-button-backdrop-filter);
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: content-box;
	position: relative;
	margin: 0;
	padding: 0;
	pointer-events: all;
	cursor: pointer;
	overflow: hidden;
}

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

.f-button:focus {
	outline: none;
}

.f-button:focus-visible {
	outline: var(--f-button-outline-width) solid var(--f-button-outline-color);
	outline-offset: var(--f-button-outline-offset);
	position: relative;
	z-index: 1;
}

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

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

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

:root {
	--f-spinner-color-1: rgba(0, 0, 0, .1);
	--f-spinner-color-2: rgba(17, 24, 28, .8);
	--f-spinner-width: 50px;
	--f-spinner-height: 50px;
	--f-spinner-border-radius: 50%;
	--f-spinner-border-width: 4px;
}

.f-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: calc(var(--f-spinner-width) * -0.5) 0 0 calc(var(--f-spinner-height) * -0.5);
	padding: 0;
	width: var(--f-spinner-width);
	height: var(--f-spinner-height);
	border-radius: var(--f-spinner-border-radius);
	border: var(--f-spinner-border-width) solid var(--f-spinner-color-1);
	border-top-color: var(--f-spinner-color-2);
	animation: f-spinner 0.75s linear infinite, f-fadeIn 0.2s ease 0.2s both;
}

@keyframes f-spinner {
	to {
		transform: rotate(360deg);
	}
}
.f-panzoom, .f-zoomable {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.f-panzoom:before, .f-panzoom:after, .f-zoomable:before, .f-zoomable:after {
	display: block;
	content: "";
}

.f-panzoom:not(.has-controls):before, .f-zoomable:not(.has-controls):before {
	margin-bottom: auto;
}

.f-panzoom:after, .f-zoomable:after {
	margin-top: auto;
}

.f-panzoom__wrapper {
	position: relative;
	min-width: 0;
	min-height: 0;
	max-width: 100%;
	max-height: 100%;
}

.f-panzoom__wrapper.will-zoom-out {
	cursor: zoom-out;
}

.f-panzoom__wrapper.can-drag {
	cursor: move;
	cursor: grab;
}

.f-panzoom__wrapper.will-zoom-in {
	cursor: zoom-in;
}

.f-panzoom__wrapper.is-dragging {
	cursor: move;
	cursor: grabbing;
}

.f-panzoom__wrapper.has-error {
	display: none;
}

.f-panzoom__content {
	display: block;
	min-width: 0;
	min-height: 0;
	max-width: 100%;
	max-height: 100%;
}

.f-panzoom__content.is-lazyloading, .f-panzoom__content.has-lazyerror {
	visibility: hidden;
}

img.f-panzoom__content {
	vertical-align: top;
	object-fit: contain;
	transition: none;
	-webkit-user-select: none;
	        user-select: none;
}

.f-panzoom__wrapper > .f-panzoom__content {
	visibility: hidden;
}

.f-panzoom__viewport {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.f-panzoom__viewport > .f-panzoom__content {
	width: 100%;
	height: 100%;
	object-fit: fill;
}

picture.f-panzoom__content img {
	vertical-align: top;
	width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
	transition: none;
	-webkit-user-select: none;
	        user-select: none;
}

.f-panzoom__protected {
	position: absolute;
	inset: 0;
	z-index: 1;
	-webkit-user-select: none;
	        user-select: none;
}

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

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

@keyframes f-fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes f-fadeOut {
	to {
		opacity: 0;
	}
}
.f-crossfadeIn {
	animation: var(--f-transition-duration, 0.2s) ease both f-crossfadeIn;
	z-index: 2;
}

.f-crossfadeOut {
	animation: calc(var(--f-transition-duration, 0.2s) * 0.2) ease calc(var(--f-transition-duration, 0.2s) * 0.8) both f-crossfadeOut;
	z-index: 1;
}

@keyframes f-crossfadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes f-crossfadeOut {
	to {
		opacity: 0;
	}
}
.is-horizontal .f-slideIn.from-next {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNextX;
}

.is-horizontal .f-slideIn.from-prev {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrevX;
}

.is-horizontal .f-slideOut.to-next {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNextX;
}

.is-horizontal .f-slideOut.to-prev {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrevX;
}

@keyframes f-slideInPrevX {
	0% {
		transform: translate(calc(100% + var(--f-carousel-gap, 0)));
	}
	to {
		transform: translateZ(0);
	}
}
@keyframes f-slideInNextX {
	0% {
		transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
	}
	to {
		transform: translateZ(0);
	}
}
@keyframes f-slideOutNextX {
	to {
		transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
	}
}
@keyframes f-slideOutPrevX {
	to {
		transform: translate(calc(100% + var(--f-carousel-gap, 0)));
	}
}
.is-vertical .f-slideIn.from-next {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNextY;
}

.is-vertical .f-slideIn.from-prev {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrevY;
}

.is-vertical .f-slideOut.to-next {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNextY;
}

.is-vertical .f-slideOut.to-prev {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrevY;
}

@keyframes f-slideInPrevY {
	0% {
		transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
	}
	to {
		transform: translateZ(0);
	}
}
@keyframes f-slideInNextY {
	0% {
		transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
	}
	to {
		transform: translateZ(0);
	}
}
@keyframes f-slideOutNextY {
	to {
		transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
	}
}
@keyframes f-slideOutPrevY {
	to {
		transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
	}
}
.f-zoomInUp {
	animation: var(--f-transition-duration, 0.3s) ease both f-zoomInUp;
}

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

@keyframes f-zoomInUp {
	0% {
		transform: scale(var(--f-zoomInUp-scale, 0.975)) translate3d(var(--f-zoomInUp-x, 0), var(--f-zoomInUp-y, 16px), 0);
		opacity: var(--f-zoomInUp-opacity, 0);
	}
	to {
		transform: scale(1) translateZ(0);
		opacity: 1;
	}
}
@keyframes f-zoomOutDown {
	to {
		transform: scale(var(--f-zoomOutDown-scale, 0.975)) translate3d(var(--f-zoomOutDown-x, 0), var(--f-zoomOutDown-y, 16px), 0);
		opacity: 0;
	}
}
.f-throwOutUp {
	animation: var(--f-throwOutUp-duration, 0.2s) ease-out both f-throwOutUp;
}

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

@keyframes f-throwOutUp {
	to {
		transform: translate3d(0, calc(var(--f-throwOutUp-y, 150px) * -1), 0);
		opacity: 0;
	}
}
@keyframes f-throwOutDown {
	to {
		transform: translate3d(0, var(--f-throwOutDown-y, 150px), 0);
		opacity: 0;
	}
}
.has-iframe .f-html, .has-pdf .f-html, .has-gmap .f-html {
	width: 100%;
	height: 100%;
	min-height: 1px;
	overflow: visible;
}

.has-pdf .f-html, .has-gmap .f-html {
	padding: 0;
}

.f-html {
	position: relative;
	box-sizing: border-box;
	margin: var(--f-html-margin, 0);
	padding: var(--f-html-padding, 2rem);
	color: var(--f-html-color, currentColor);
	background: var(--f-html-bg);
}

.f-html.is-error {
	text-align: center;
}

.f-iframe {
	display: block;
	margin: 0;
	border: 0;
	height: 100%;
	width: 100%;
}

.f-caption {
	align-self: center;
	flex-shrink: 0;
	margin: var(--f-caption-margin);
	padding: var(--f-caption-padding, 16px 8px);
	max-width: 100%;
	max-height: calc(80vh - 100px);
	overflow: auto;
	overflow-wrap: anywhere;
	line-height: var(--f-caption-line-height);
	color: var(--f-caption-color);
	background: var(--f-caption-bg);
	font: var(--f-caption-font);
}

.has-html5video .f-html, .has-youtube .f-html, .has-vimeo .f-html {
	padding: 0;
	width: 100%;
	height: 100%;
	min-height: 1px;
	overflow: visible;
	max-width: var(--f-video-width, 960px);
	max-height: var(--f-video-height, 540px);
	aspect-ratio: var(--f-video-aspect-ratio);
	background: var(--f-video-bg, rgba(0, 0, 0, 0.9));
}

.f-html5video {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
	background: transparent;
}

.f-button.is-arrow {
	--f-button-width: var(--f-arrow-width, 46px);
	--f-button-height: var(--f-arrow-height, 46px);
	--f-button-svg-width: var(--f-arrow-svg-width, 24px);
	--f-button-svg-height: var(--f-arrow-svg-height, 24px);
	--f-button-svg-stroke-width: var(--f-arrow-svg-stroke-width, 1.75);
	--f-button-border-radius: var(--f-arrow-border-radius, unset);
	--f-button-bg: var(--f-arrow-bg, transparent);
	--f-button-hover-bg: var(--f-arrow-hover-bg, var(--f-arrow-bg));
	--f-button-active-bg: var(--f-arrow-active-bg, var(--f-arrow-hover-bg));
	--f-button-shadow: var(--f-arrow-shadow);
	--f-button-color: var(--f-arrow-color);
	--f-button-hover-color: var(--f-arrow-hover-color, var(--f-arrow-color));
	--f-button-active-color: var( --f-arrow-active-color, var(--f-arrow-hover-color) );
	overflow: visible;
}

.f-button.is-arrow.is-prev, .f-button.is-arrow.is-next {
	position: absolute;
	transform: translate(0);
	z-index: 20;
}

.is-horizontal .f-button.is-arrow.is-prev, .is-horizontal .f-button.is-arrow.is-next {
	inset: 50% auto auto;
	transform: translateY(-50%);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-prev {
	left: var(--f-arrow-pos, 0);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-next {
	right: var(--f-arrow-pos, 0);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-prev {
	right: var(--f-arrow-pos, 0);
	transform: translateY(-50%) rotateY(180deg);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-next {
	left: var(--f-arrow-pos, 0);
	transform: translateY(-50%) rotateY(180deg);
}

.is-vertical.is-ltr .f-button.is-arrow.is-prev, .is-vertical.is-rtl .f-button.is-arrow.is-prev {
	top: var(--f-arrow-pos, 0);
	right: auto;
	bottom: auto;
	left: 50%;
	transform: translate(-50%);
}

.is-vertical.is-ltr .f-button.is-arrow.is-next, .is-vertical.is-rtl .f-button.is-arrow.is-next {
	top: auto;
	right: auto;
	bottom: var(--f-arrow-pos, 0);
	left: 50%;
	transform: translate(-50%);
}

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

.f-carousel__toolbar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	margin: var(--f-toolbar-margin, 0);
	padding: var(--f-toolbar-padding, 8px);
	line-height: var(--f-toolbar-line-height);
	background: var(--f-toolbar-bg, none);
	box-shadow: var(--f-toolbar-shadow, none);
	backdrop-filter: var(--f-toolbar-backdrop-filter);
	position: relative;
	z-index: 20;
	color: var(--f-toolbar-color, currentColor);
	font-size: var(--f-toolbar-font-size, 17px);
	font-weight: var(--f-toolbar-font-weight, inherit);
	font-family: var(--f-toolbar-font, -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif);
	text-shadow: var(--f-toolbar-text-shadow);
	text-align: center;
	font-variant-numeric: tabular-nums;
	-webkit-font-smoothing: subpixel-antialiased;
	white-space: nowrap;
	pointer-events: none;
}

.f-carousel__toolbar.is-absolute {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.f-carousel__toolbar__column {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: var(--f-toolbar-gap, 0);
	pointer-events: none;
}

.f-carousel__toolbar__column.is-left {
	justify-self: flex-start;
	justify-content: flex-start;
}

.f-carousel__toolbar__column.is-middle {
	justify-content: center;
}

.f-carousel__toolbar__column.is-right {
	justify-self: flex-end;
	justify-content: flex-end;
	flex-flow: nowrap;
}

.f-carousel__toolbar__column > * {
	pointer-events: all;
}

.f-carousel:has(.f-carousel__slide.is-fullsize) [data-panzoom-action=toggleFull] g {
	display: none;
}

[data-autoplay-action=toggle] svg g:first-child {
	display: flex;
}

[data-autoplay-action=toggle] svg g:last-child {
	display: none;
}

.has-autoplay [data-autoplay-action=toggle] svg g:first-child {
	display: none;
}

.has-autoplay [data-autoplay-action=toggle] svg g:last-child {
	display: flex;
}

:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:first-child {
	display: none;
}

:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:last-child {
	display: flex;
}

.f-counter {
	position: relative;
	display: flex;
	flex-direction: row;
	cursor: default;
	-webkit-user-select: none;
	        user-select: none;
	margin: var(--f-counter-margin, 0);
	padding: var(--f-counter-padding, 4px);
	line-height: var(--f-counter-line-height);
	background: var(--f-counter-bg);
	border-radius: var(--f-counter-border-radius);
}

.f-counter span {
	padding: 0 var(--f-counter-gap, 4px);
}

:root {
	--f-thumbs-gap: 8px;
	--f-thumbs-margin: 0;
	--f-thumbs-padding-x: 8px;
	--f-thumbs-padding-y: 8px;
	--f-thumbs-z-index: 1;
	--f-thumb-width: 96px;
	--f-thumb-height: 72px;
	--f-thumb-clip-width: 46px;
	--f-thumb-extra-gap: 16px;
	--f-thumb-fit: cover;
	--f-thumb-opacity: 1;
	--f-thumb-transition: opacity .3s ease, transform .15s ease;
	--f-thumb-border: none;
	--f-thumb-border-radius: 4px;
	--f-thumb-transfors: none;
	--f-thumb-shadow: none;
	--f-thumb-bg: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .05));
	--f-thumb-focus-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
	--f-thumb-selected-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
}

.f-thumbs {
	flex-shrink: 0;
	margin: var(--f-thumbs-margin);
	padding: 0;
	background: var(--f-thumbs-bg);
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: none;
	        user-select: none;
	transition: max-height 0.3s ease, max-width 0.3s ease;
	position: relative;
	overflow: hidden;
	z-index: var(--f-thumbs-z-index);
}

.f-thumbs.is-horizontal {
	max-height: calc(var(--f-carousel-slide-height) + var(--f-thumbs-padding-y) * 2 + var(--f-thumbs-gap) * 2);
}

.f-thumbs.is-vertical {
	max-width: calc(var(--f-carousel-slide-width) + var(--f-thumbs-padding-x) * 2 + var(--f-thumbs-gap) * 2);
}

.f-thumbs.is-ltr {
	direction: ltr;
}

.f-thumbs.is-rtl {
	direction: rtl;
}

.f-thumbs__viewport {
	margin: var(--f-thumbs-padding-y) var(--f-thumbs-padding-x);
	overflow: visible;
	display: grid;
}

.f-thumbs.is-vertical .f-thumbs__viewport {
	height: calc(100% - var(--f-thumbs-padding-y) * 2);
}

.f-thumbs__slide {
	position: relative;
	box-sizing: border-box;
	grid-area: 1/1;
	width: var(--f-carousel-slide-width);
	height: var(--f-carousel-slide-height);
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-direction: column;
	cursor: pointer;
	overflow: visible;
}

.f-thumbs__slide:hover button {
	opacity: var(--f-thumb-hover-opacity, 1);
	transform: var(--f-thumb-hover-transform, none);
}

.f-thumbs__slide:hover button:after {
	border: var(--f-thumb-hover-border, none);
	box-shadow: var(--f-thumb-hover-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide button {
	all: unset;
	margin: auto;
	padding: 0;
	position: relative;
	overflow: visible;
	width: 100%;
	height: 100%;
	outline: none;
	transition: var(--f-thumb-transition);
	border-radius: var(--f-thumb-border-radius);
	opacity: var(--f-thumb-opacity);
	transform: var(--f-thumb-transform);
	background: var(--f-thumb-bg);
}

.f-thumbs__slide button:after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	transition: none;
	border-radius: inherit;
	border: var(--f-thumb-border);
	box-shadow: var(--f-thumb-shadow);
}

.f-thumbs__slide button:focus-within {
	opacity: var(--f-thumb-focus-opacity, 1);
	transform: var(--f-thumb-focus-transform, none);
}

.f-thumbs__slide button:focus-within:after {
	border: var(--f-thumb-focus-border, none);
	box-shadow: var(--f-thumb-focus-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide:active {
	opacity: var(--f-thumb-active-opacity, 1);
	transform: var(--f-thumb-active-transform, none);
}

.f-thumbs__slide:active:after {
	border: var(--f-thumb-active-border, none);
	box-shadow: var(--f-thumb-active-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide.is-selected {
	z-index: 2;
}

.f-thumbs__slide.is-selected button {
	opacity: var(--f-thumb-selected-opacity, 1);
	transform: var(--f-thumb-selected-transform, none);
}

.f-thumbs__slide.is-selected button:after {
	border: var(--f-thumb-selected-border, none);
	box-shadow: var(--f-thumb-selected-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: var(--f-thumb-fit);
	border-radius: inherit;
	pointer-events: none;
}

.f-thumbs__slide img.has-lazyerror {
	display: none;
}

.f-thumbs.is-classic {
	--f-carousel-slide-width: var(--f-thumb-width);
	--f-carousel-slide-height: var(--f-thumb-height);
	--f-carousel-gap: var(--f-thumbs-gap);
}

.f-thumbs.is-modern {
	--f-carousel-slide-width: calc( var(--f-thumb-clip-width) + var(--f-thumbs-gap) );
	--f-carousel-slide-height: var(--f-thumb-height);
	--f-carousel-gap: 0;
	--width-diff: calc((var(--f-thumb-width) - var(--f-thumb-clip-width)));
}

.f-thumbs.is-modern .f-thumbs__viewport {
	width: calc(100% + var(--f-carousel-slide-width) * 2);
	margin-inline: calc(var(--f-carousel-slide-width) * -1);
}

.f-thumbs.is-modern .f-thumbs__slide {
	--clip-shift: calc((var(--width-diff) * .5) * var(--progress));
	--clip-path: inset( 0 var(--clip-shift) round var(--f-thumb-border-radius, 0) );
	padding: 0;
	overflow: visible;
	left: var(--shift, 0);
	will-change: left;
	transition: left var(--f-transition-duration) var(--f-transition-easing);
}

.f-thumbs.is-modern .f-thumbs__slide button {
	display: block;
	margin-inline: 50%;
	width: var(--f-thumb-width);
	clip-path: var(--clip-path);
	border: none;
	box-shadow: none;
	transition: clip-path var(--f-transition-duration) var(--f-transition-easing), opacity var(--f-thumb-transition-duration, 0.2s) var(--f-thumb-transition-easing, ease);
}

.f-thumbs.is-modern .f-thumbs__slide button:after {
	display: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus:not(:focus-visible) {
	outline: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus-within:not(.is-selected) button:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: var(--clip-shift);
	bottom: 0;
	right: var(--clip-shift);
	transition: border var(--f-transition-duration) var(--f-transition-easing), box-shadow var(--f-transition-duration) var(--f-transition-easing);
	border-radius: inherit;
	border: var(--f-thumb-focus-border, none);
	box-shadow: var(--f-thumb-focus-shadow, none);
}

.f-thumbs.is-modern {
	--f-transition-duration: .25s;
	--f-transition-easing: ease-out;
}

.f-thumbs.is-modern.is-syncing {
	--f-transition-duration: 0s;
}

:root {
	--f-progressbar-height: 3px;
	--f-progressbar-color: var(--f-carousel-theme-color, #575ad6);
	--f-progressbar-opacity: 1;
	--f-progressbar-z-index: 30;
}

.f-progressbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: var(--f-progressbar-z-index);
	height: var(--f-progressbar-height);
	transform: scaleX(0);
	transform-origin: 0;
	opacity: var(--f-progressbar-opacity);
	background: var(--f-progressbar-color);
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
	animation-name: f-progressbar;
	animation-play-state: running;
	animation-timing-function: linear;
}

button > .f-progressbar {
	--f-progressbar-height: 100%;
	--f-progressbar-opacity: .2;
}

@keyframes f-progressbar {
	0% {
		transform: scaleX(0);
	}
	to {
		transform: scaleX(1);
	}
}
[data-fullscreen-action=toggle] svg g:first-child {
	display: flex;
}

[data-fullscreen-action=toggle] svg g:last-child {
	display: none;
}

:fullscreen [data-fullscreen-action=toggle] svg g:first-child {
	display: none;
}

:fullscreen [data-fullscreen-action=toggle] svg g:last-child {
	display: flex;
}

.in-fullscreen-mode > .f-carousel {
	flex: 1;
	min-width: 0 !important;
	min-height: 0 !important;
}

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

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

.fancybox__dialog {
	width: 100%;
	height: 100vh;
	max-height: unset;
	max-width: unset;
	padding: 0;
	margin: 0;
	border: 0;
	overflow: hidden;
	background: transparent;
	touch-action: none;
}

.fancybox__dialog:focus {
	outline: none;
}

.fancybox__dialog::backdrop {
	opacity: 0;
}

@supports (height: 100dvh) {
	.fancybox__dialog {
		height: 100dvh;
	}
}
div.fancybox__dialog {
	position: fixed;
	inset: 0;
	z-index: 1050;
}

.fancybox__container {
	--fancybox-color: #dbdbdb;
	--fancybox-backdrop-bg: rgba(24, 24, 27, .95);
	--f-toolbar-margin: 0;
	--f-toolbar-padding: 8px;
	--f-toolbar-gap: 0;
	--f-toolbar-color: #ddd;
	--f-toolbar-font-size: 16px;
	--f-toolbar-font-weight: 500;
	--f-toolbar-font: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
	--f-toolbar-line-height: var(--f-button-height);
	--f-toolbar-text-shadow: 1px 1px 1px rgba(0, 0, 0, .75);
	--f-toolbar-shadow: none;
	--f-toolbar-bg: none;
	--f-counter-margin: 0;
	--f-counter-padding: 0px 10px;
	--f-counter-gap: 4px;
	--f-counter-line-height: var(--f-button-height);
	--f-carousel-gap: 17px;
	--f-carousel-slide-width: 100%;
	--f-carousel-slide-height: 100%;
	--f-carousel-slide-padding: 0;
	--f-carousel-slide-bg: unset;
	--f-html-color: #222;
	--f-html-bg: #fff;
	--f-error-color: #fff;
	--f-error-bg: #333;
	--f-caption-margin: 0;
	--f-caption-padding: 16px 8px;
	--f-caption-color: var(--fancybox-color, #dbdbdb);
	--f-caption-bg: transparent;
	--f-caption-font: inherit;
	--f-caption-line-height: 1.375;
	--f-spinner-color-1: rgba(255, 255, 255, .2);
	--f-spinner-color-2: rgba(255, 255, 255, .8);
	--f-spinner-width: 50px;
	--f-spinner-height: 50px;
	--f-spinner-border-radius: 50%;
	--f-spinner-border-width: 4px;
	--f-progressbar-color: rgba(255, 255, 255);
	--f-button-width: 46px;
	--f-button-height: 46px;
	--f-button-color: #ddd;
	--f-button-hover-color: #fff;
	--f-button-outline-width: 1px;
	--f-button-outline-color: rgba(255, 255, 255, .75);
	--f-button-outline-offset: 0px;
	--f-button-bg: rgba(54, 54, 54, .75);
	--f-button-border: 0;
	--f-button-border-radius: 0;
	--f-button-shadow: none;
	--f-button-transition: all .2s ease;
	--f-button-transform: none;
	--f-button-svg-width: 24px;
	--f-button-svg-height: 24px;
	--f-button-svg-stroke-width: 1.75;
	--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, .01)), drop-shadow(1px 2px 1px rgba(24, 24, 27, .05));
	--f-button-svg-fill: none;
	--f-button-svg-disabled-opacity: .5;
	--f-arrow-pos: 32px;
	--f-arrow-width: 50px;
	--f-arrow-height: 50px;
	--f-arrow-svg-width: 24px;
	--f-arrow-svg-height: 24px;
	--f-arrow-svg-stroke-width: 2;
	--f-arrow-border-radius: 50%;
	--f-arrow-bg: rgba(54, 54, 54, .65);
	--f-arrow-color: #ddd;
	--f-arrow-hover-color: #fff;
	--f-thumbs-margin: 0px;
	--f-thumbs-padding-x: 8px;
	--f-thumbs-padding-y: 8px;
	--f-thumbs-bg: none;
	--f-thumb-transition: all .2s ease;
	--f-thumb-width: 94px;
	--f-thumb-height: 76px;
	--f-thumb-opacity: 1;
	--f-thumb-border: none;
	--f-thumb-shadow: none;
	--f-thumb-transform: none;
	--f-thumb-focus-opacity: 1;
	--f-thumb-focus-border: none;
	--f-thumb-focus-shadow: inset 0 0 0 2px rgba(255, 255, 255, .65);
	--f-thumb-focus-transform: none;
	--f-thumb-hover-opacity: 1;
	--f-thumb-hover-border: none;
	--f-thumb-hover-transform: none;
	--f-thumb-active-opacity: var(--f-thumb-hover-opacity);
	--f-thumb-active-border: var(--f-thumb-hover-border);
	--f-thumb-active-transform: var(--f-thumb-hover-transform);
	--f-thumb-selected-opacity: 1;
	--f-thumb-selected-border: none;
	--f-thumb-selected-shadow: inset 0 0 0 2px #fff;
	--f-thumb-selected-transform: none;
	position: absolute;
	inset: 0;
	overflow: hidden;
	outline: none;
	display: flex;
	flex-direction: column;
}

.fancybox__container[theme=light] {
	--fancybox-color: #222;
	--fancybox-backdrop-bg: rgba(255, 255, 255, .97);
	--f-toolbar-color: var(--fancybox-color, #222);
	--f-toolbar-text-shadow: none;
	--f-toolbar-font-weight: 400;
	--f-html-color: var(--fancybox-color, #222);
	--f-html-bg: #fff;
	--f-error-color: #555;
	--f-error-bg: #fff;
	--f-video-bg: #fff;
	--f-caption-color: #333;
	--f-spinner-color-1: rgba(0, 0, 0, .2);
	--f-spinner-color-2: rgba(0, 0, 0, .8);
	--f-spinner-border-width: 3.5px;
	--f-progressbar-color: rgba(111, 111, 116);
	--f-button-color: #333;
	--f-button-hover-color: #000;
	--f-button-outline-color: rgba(0, 0, 0, .85);
	--f-button-bg: rgba(255, 255, 255, .85);
	--f-button-svg-stroke-width: 1.3;
	--f-button-svg-filter: none;
	--f-arrow-bg: rgba(255, 255, 255, .85);
	--f-arrow-color: #333;
	--f-arrow-hover-color: #000;
	--f-arrow-svg-stroke-width: 1.3;
	--f-close-button-color: #555;
	--f-close-button-hover-color: #000;
	--f-thumb-bg: linear-gradient(#ebeff2, #e2e8f0);
	--f-thumb-focus-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #888;
	--f-thumb-selected-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #000;
}

.fancybox__container::backdrop {
	background-color: transparent;
}

.fancybox__container.has-vertical-thumbs {
	flex-direction: row-reverse;
}

.fancybox__container.has-vertical-thumbs:not(.is-closing) .fancybox__viewport {
	overflow-x: clip;
	overflow-y: visible;
}

.fancybox__container > *:not(.fancybox__carousel), .fancybox__container .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper, .f-spinner) {
	opacity: var(--f-drag-opacity, 1);
}

.fancybox__container:not(.is-ready, .is-hiding) {
	visibility: hidden;
}

.fancybox__container.is-revealing > *:not(.fancybox__carousel), .fancybox__container.is-revealing .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-revealing .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container.is-revealing .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper, .f-spinner) {
	animation: var(--f-interface-enter-duration, 0.35s) ease none f-fadeIn;
}

.fancybox__container.is-hiding > *:not(.fancybox__carousel), .fancybox__container.is-hiding .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-hiding .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container.is-hiding .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper) {
	animation: var(--f-interface-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.fancybox__container.is-idle .f-carousel__toolbar {
	pointer-events: none;
	opacity: 0;
}

.fancybox__container.is-idle .f-button.is-arrow {
	opacity: 0;
}

.fancybox__container.is-idle.is-ready .f-carousel__toolbar {
	pointer-events: none;
	animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__container.is-idle.is-ready .f-button.is-arrow {
	animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__backdrop {
	position: fixed;
	inset: 0;
	z-index: -1;
	background: var(--fancybox-backdrop-bg);
}

.fancybox__carousel {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
	min-width: 0;
	position: relative;
	z-index: 10;
	overflow-y: visible;
	overflow-x: clip;
}

.fancybox__carousel.is-vertical {
	--f-carousel-slide-height: 100%;
}

.fancybox__carousel.is-ltr {
	direction: ltr;
}

.fancybox__carousel.is-rtl {
	direction: rtl;
}

.fancybox__carousel > .f-button.is-arrow:before {
	position: absolute;
	content: "";
	inset: -30px;
	z-index: 1;
}

.fancybox__viewport {
	display: grid;
	flex: 1;
	min-height: 0;
	min-width: 0;
	position: relative;
	overflow: visible;
	transform: translate3d(0, var(--f-drag-offset, 0), 0);
}

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

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

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

.fancybox__slide {
	box-sizing: border-box;
	position: relative;
	grid-area: 1/1;
	display: flex;
	align-items: center;
	flex-direction: column;
	width: var(--f-carousel-slide-width);
	height: var(--f-carousel-slide-height);
	min-width: 0;
	min-height: 0;
	max-width: 100%;
	margin: 0;
	padding: var(--f-carousel-slide-padding);
	background: var(--f-carousel-slide-bg);
	backface-visibility: hidden;
	transform: translateZ(0);
	will-change: transform;
}

.fancybox__slide:before, .fancybox__slide:after {
	display: block;
	content: "";
}

.fancybox__slide:before {
	margin-bottom: auto;
}

.fancybox__slide:after {
	margin-top: auto;
}

.fancybox__slide.is-selected {
	z-index: 1;
}

.fancybox__slide.f-zoomable {
	overflow: visible;
}

.fancybox__slide.has-error {
	--f-html-color: var(--f-error-color, --f-html-color);
	--f-html-bg: var(--f-error-bg, --f-html-bg);
}

.fancybox__slide.has-html {
	overflow: auto;
	padding: 8px;
}

.fancybox__slide.has-close-btn {
	padding-top: 34px;
}

.fancybox__slide .f-button[data-fancybox-close] {
	--f-button-width: var(--f-close-button-width, 34px);
	--f-button-height: var(--f-close-button-height, 34px);
	--f-button-border-radius: var(--f-close-border-radius, 4px);
	--f-button-color: var(--f-close-button-color, #fff);
	--f-button-hover-color: var(--f-close-button-hover-color, #fff);
	--f-button-bg: var(--f-close-button-bg, transparent);
	--f-button-hover-bg: var(--f-close-button-hover-bg, transparent);
	--f-button-active-bg: var(--f-close-button-active-bg, transparent);
	--f-button-svg-width: var(--f-close-button-svg-width, 22px);
	--f-button-svg-height: var(--f-close-button-svg-height, 22px);
	position: absolute;
	top: calc(var(--f-button-height) * -1);
	right: 0;
	z-index: 40;
}

.fancybox__slide .f-spinner {
	cursor: pointer;
}

.fancybox__container.is-closing .f-caption, .fancybox__slide.is-loading .f-caption {
	visibility: hidden;
}

.fancybox__container.is-closing .fancybox__carousel {
	overflow: visible;
}

/**
 * Swiper 12.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 18, 2025
 */
:root {
	--swiper-theme-color: #007aff ;
}

:host {
	display: block;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.swiper {
	display: block;
	list-style: none;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	padding: 0;
	position: relative;
	z-index: 1;
}

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

.swiper-wrapper {
	box-sizing: initial;
	display: flex;
	height: 100%;
	position: relative;
	transition-property: transform;
	transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
	width: 100%;
	z-index: 1;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
	transform: translateZ(0);
}

.swiper-horizontal {
	touch-action: pan-y;
}

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

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

.swiper-slide-invisible-blank {
	visibility: hidden;
}

.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 {
	backface-visibility: hidden;
	transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
	transform-style: preserve-3d;
}

.swiper-3d {
	perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
	transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
	scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
	scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
	scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
	content: "";
	flex-shrink: 0;
	order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: center center;
	scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
	margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
	height: 100%;
	min-height: 1px;
	width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
	margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
	height: var(--swiper-centered-offset-after);
	min-width: 1px;
	width: 100%;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
	background: rgba(0, 0, 0, 0.1490196078);
}
.swiper-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top: 4px solid rgba(0, 0, 0, 0);
	box-sizing: border-box;
	height: 42px;
	left: 50%;
	margin-left: -21px;
	margin-top: -21px;
	position: absolute;
	top: 50%;
	transform-origin: 50%;
	width: 42px;
	z-index: 10;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
	animation: swiper-preloader-spin 1s linear infinite;
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff ;
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000 ;
}

@keyframes swiper-preloader-spin {
	0% {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(1turn);
	}
}
.swiper-virtual .swiper-slide {
	-webkit-backface-visibility: hidden;
	transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
	content: "";
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
}

.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 {
	height: var(--swiper-virtual-size);
	width: 1px;
}

:root {
	--swiper-navigation-size: 44px ;
}

.swiper-button-next, .swiper-button-prev {
	align-items: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
	cursor: pointer;
	display: flex;
	height: var(--swiper-navigation-size);
	justify-content: center;
	position: absolute;
	width: var(--swiper-navigation-size);
	z-index: 10;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
	cursor: auto;
	opacity: 0.35;
	pointer-events: none;
}
.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
	cursor: auto;
	opacity: 0;
	pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
	display: none !important;
}
.swiper-button-next svg, .swiper-button-prev svg {
	height: 100%;
	object-fit: contain;
	transform-origin: center;
	width: 100%;
	fill: currentColor;
	pointer-events: none;
}

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

.swiper-button-next, .swiper-button-prev {
	margin-top: calc(0px - var(--swiper-navigation-size) / 2);
	top: var(--swiper-navigation-top-offset, 50%);
}

.swiper-button-prev {
	left: var(--swiper-navigation-sides-offset, 4px);
	right: auto;
}
.swiper-button-prev .swiper-navigation-icon {
	transform: rotate(180deg);
}

.swiper-button-next {
	left: auto;
	right: var(--swiper-navigation-sides-offset, 4px);
}

.swiper-horizontal .swiper-button-next, .swiper-horizontal .swiper-button-prev, .swiper-horizontal ~ .swiper-button-next, .swiper-horizontal ~ .swiper-button-prev {
	margin-left: 0;
	margin-top: calc(0px - var(--swiper-navigation-size) / 2);
	top: var(--swiper-navigation-top-offset, 50%);
}
.swiper-horizontal.swiper-rtl .swiper-button-next, .swiper-horizontal.swiper-rtl ~ .swiper-button-next, .swiper-horizontal ~ .swiper-button-prev, .swiper-horizontal .swiper-button-prev {
	left: var(--swiper-navigation-sides-offset, 4px);
	right: auto;
}
.swiper-horizontal.swiper-rtl .swiper-button-prev, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev, .swiper-horizontal ~ .swiper-button-next, .swiper-horizontal .swiper-button-next {
	left: auto;
	right: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-horizontal.swiper-rtl .swiper-button-next .swiper-navigation-icon, .swiper-horizontal.swiper-rtl ~ .swiper-button-next .swiper-navigation-icon, .swiper-horizontal ~ .swiper-button-prev .swiper-navigation-icon, .swiper-horizontal .swiper-button-prev .swiper-navigation-icon {
	transform: rotate(180deg);
}
.swiper-horizontal.swiper-rtl .swiper-button-prev .swiper-navigation-icon, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev .swiper-navigation-icon {
	transform: rotate(0deg);
}

.swiper-vertical .swiper-button-next, .swiper-vertical .swiper-button-prev, .swiper-vertical ~ .swiper-button-next, .swiper-vertical ~ .swiper-button-prev {
	left: var(--swiper-navigation-top-offset, 50%);
	margin-left: calc(0px - var(--swiper-navigation-size) / 2);
	margin-top: 0;
	right: auto;
}
.swiper-vertical .swiper-button-prev, .swiper-vertical ~ .swiper-button-prev {
	bottom: auto;
	top: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-vertical .swiper-button-prev .swiper-navigation-icon, .swiper-vertical ~ .swiper-button-prev .swiper-navigation-icon {
	transform: rotate(-90deg);
}
.swiper-vertical .swiper-button-next, .swiper-vertical ~ .swiper-button-next {
	bottom: var(--swiper-navigation-sides-offset, 4px);
	top: auto;
}
.swiper-vertical .swiper-button-next .swiper-navigation-icon, .swiper-vertical ~ .swiper-button-next .swiper-navigation-icon {
	transform: rotate(90deg);
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	transform: translateZ(0);
	transition: opacity 0.3s;
	z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}
.swiper-pagination.swiper-pagination-disabled, .swiper-pagination-disabled > .swiper-pagination {
	display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: var(--swiper-pagination-bottom, 8px);
	left: 0;
	top: var(--swiper-pagination-top, auto);
	width: 100%;
}

.swiper-pagination-bullets-dynamic {
	font-size: 0;
	overflow: hidden;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	position: relative;
	transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .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 {
	background: var(--swiper-pagination-bullet-inactive-color, #000);
	border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
	display: inline-block;
	height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
	opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
	width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
}
.swiper-pagination-bullet button {
	appearance: none;
	border: none;
	box-shadow: none;
	margin: 0;
	padding: 0;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}
.swiper-pagination-bullet:only-child {
	display: none !important;
}

.swiper-pagination-bullet-active {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
	left: var(--swiper-pagination-left, auto);
	right: var(--swiper-pagination-right, 8px);
	top: 50%;
	transform: translate3d(0, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
	display: block;
	margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	transition: transform 0.2s, top 0.2s;
}

.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, 4px);
}
.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: transform 0.2s, left 0.2s;
}

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

.swiper-pagination-fraction {
	color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
	background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.2509803922));
	position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale(0);
	transform-origin: left top;
	width: 100%;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	transform-origin: right top;
}
.swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > .swiper-pagination-progressbar, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	height: var(--swiper-pagination-progressbar-size, 4px);
	left: 0;
	top: 0;
	width: 100%;
}
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar {
	height: 100%;
	left: 0;
	top: 0;
	width: var(--swiper-pagination-progressbar-size, 4px);
}

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

.swiper-scrollbar {
	background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1019607843));
	border-radius: var(--swiper-scrollbar-border-radius, 10px);
	position: relative;
	touch-action: none;
}
.swiper-scrollbar.swiper-scrollbar-disabled, .swiper-scrollbar-disabled > .swiper-scrollbar {
	display: none !important;
}
.swiper-scrollbar.swiper-scrollbar-horizontal, .swiper-horizontal > .swiper-scrollbar {
	bottom: var(--swiper-scrollbar-bottom, 4px);
	height: var(--swiper-scrollbar-size, 4px);
	left: var(--swiper-scrollbar-sides-offset, 1%);
	position: absolute;
	top: var(--swiper-scrollbar-top, auto);
	width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
	z-index: 50;
}
.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
	height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
	left: var(--swiper-scrollbar-left, auto);
	position: absolute;
	right: var(--swiper-scrollbar-right, 4px);
	top: var(--swiper-scrollbar-sides-offset, 1%);
	width: var(--swiper-scrollbar-size, 4px);
	z-index: 50;
}

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

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

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

.swiper-zoom-container {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	text-align: center;
	width: 100%;
}
.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.swiper-slide-zoomed {
	cursor: move;
	touch-action: none;
}

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

.swiper-free-mode > .swiper-wrapper {
	margin: 0 auto;
	transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
	flex-wrap: wrap;
}

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

.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 {
	pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper.swiper-cube {
	overflow: visible;
}

.swiper-cube .swiper-slide {
	backface-visibility: hidden;
	height: 100%;
	pointer-events: none;
	transform-origin: 0 0;
	visibility: hidden;
	width: 100%;
	z-index: 1;
}
.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 {
	pointer-events: auto;
	visibility: visible;
}
.swiper-cube .swiper-cube-shadow {
	bottom: 0;
	height: 100%;
	left: 0;
	opacity: 0.6;
	position: absolute;
	width: 100%;
	z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
	background: #000;
	bottom: 0;
	content: "";
	filter: blur(50px);
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

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

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

.swiper.swiper-flip {
	overflow: visible;
}

.swiper-flip .swiper-slide {
	backface-visibility: hidden;
	pointer-events: none;
	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-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
	backface-visibility: hidden;
	z-index: 0;
}

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

.swiper.swiper-cards {
	overflow: visible;
}

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

.nice-select {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background-color: #fff;
	border-radius: 5px;
	border: solid 1px #e8e8e8;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	height: 38px;
	line-height: 36px;
	outline: none;
	padding-left: 18px;
	padding-right: 30px;
	position: relative;
	text-align: left !important;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	        user-select: none;
	white-space: nowrap;
}

.nice-select:hover {
	border-color: hsl(0, 0%, 85.9803921569%);
}

.nice-select:active, .nice-select:focus {
	border-color: #999;
}

.nice-select:after {
	border-bottom: 2px solid #999;
	border-right: 2px solid #999;
	content: "";
	display: block;
	height: 5px;
	margin-top: -4px;
	pointer-events: none;
	position: absolute;
	right: 12px;
	top: 50%;
	transform-origin: 66% 66%;
	transform: rotate(45deg);
	transition: all 0.15s ease-in-out;
	width: 5px;
}

.nice-select.open {
	border-color: #999;
}

.nice-select.open:after {
	transform: rotate(-135deg);
}

.nice-select.open .nice-select-dropdown {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1) translateY(0);
}

.nice-select.disabled {
	border-color: rgb(237, 237, 237);
	color: #999;
	pointer-events: none;
}

.nice-select.disabled:after {
	border-color: #ccc;
}

.nice-select.wide {
	width: 100%;
}

.nice-select.wide .nice-select-dropdown {
	left: 0 !important;
	right: 0 !important;
}

.nice-select.right {
	float: right;
}

.nice-select.right .nice-select-dropdown {
	left: auto;
	right: 0;
}

.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px;
}

.nice-select.small:after {
	height: 4px;
	width: 4px;
}

.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}

.nice-select .has-multiple {
	white-space: inherit;
	height: auto;
	padding: 7px 12px;
	min-height: 36px;
	line-height: 22px;
}

.nice-select .has-multiple span.current {
	border: 1px solid #ccc;
	background: #eee;
	padding: 0 10px;
	border-radius: 3px;
	display: inline-block;
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 3px;
	margin-right: 3px;
}

.nice-select .has-multiple .multiple-options {
	display: block;
	line-height: 24px;
	padding: 0;
}

.nice-select .nice-select-search-box {
	box-sizing: border-box;
	width: 100%;
	padding: 5px;
	pointer-events: none;
	border-radius: 5px 5px 0 0;
}

.nice-select .nice-select-search {
	box-sizing: border-box;
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 3px;
	color: #444;
	display: inline-block;
	vertical-align: middle;
	padding: 7px 12px;
	margin: 0 10px 0 0;
	width: 100%;
	min-height: 36px;
	line-height: 22px;
	height: auto;
	outline: 0 !important;
	font-size: 14px;
}

.nice-select .nice-select-dropdown {
	margin-top: 4px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	transform-origin: 50% 0;
	transform: scale(0.75) translateY(19px);
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 9;
	opacity: 0;
	max-height: 230px;
	overflow-y: scroll;
	overflow-x: hidden;
}

.nice-select .list {
	border-radius: 5px;
	box-sizing: border-box;
	padding: 0;
}

.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	outline: none;
	padding-left: 18px;
	padding-right: 29px;
	text-align: left;
	transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
	background-color: #f6f6f6;
}

.nice-select .option.selected {
	font-weight: bold;
}

.nice-select .option.disabled {
	background-color: rgba(0, 0, 0, 0);
	color: #999;
	cursor: default;
}

.nice-select .extra {
	float: right;
}

.nice-select .optgroup {
	font-weight: bold;
}

.no-csspointerevents .nice-select .nice-select-dropdown {
	display: none;
}

.no-csspointerevents .nice-select.open .nice-select-dropdown {
	display: block;
}

.nice-select .list::-webkit-scrollbar {
	width: 0;
}

.hidden-select {
	opacity: 0;
	width: 0;
	padding: 0;
	height: 0;
	font-size: 0;
	min-height: auto;
}

.select-selection-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.select-selection-list .select-selection {
	background-color: #e4e4e4;
	border: 1px solid #aaa;
	border-radius: 4px;
	box-sizing: border-box;
	display: inline-block;
	margin-left: 5px;
	margin-top: 5px;
	padding: 2px 5px;
	position: relative;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: bottom;
	white-space: nowrap;
}

.select-selection-list button.remove-select-selection {
	height: 15px;
	width: 15px;
	line-height: 15px;
	padding: 0px;
	background-color: #bd2919;
	border-radius: 20%;
} 
.rs-container * {
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
}

.rs-container {
	font-family: Arial, Helvetica, sans-serif;
	height: 45px;
	position: relative;
}

.rs-container .rs-bg, .rs-container .rs-selected {
	background-color: #eee;
	border: 1px solid #ededed;
	height: 10px;
	left: 0;
	position: absolute;
	top: 5px;
	width: 100%;
	border-radius: 3px;
}

.rs-container .rs-selected {
	background-color: #00b3bc;
	border: 1px solid #00969b;
	transition: all 0.2s linear;
	width: 0;
}

.rs-container.disabled .rs-selected {
	background-color: #ccc;
	border-color: #bbb;
}

.rs-container .rs-pointer {
	background-color: #fff;
	border: 1px solid #bbb;
	border-radius: 4px;
	cursor: pointer;
	height: 20px;
	left: -10px;
	position: absolute;
	top: 0;
	transition: all 0.2s linear;
	width: 30px;
	box-shadow: inset 0 0 1px #FFF, inset 0 1px 6px #ebebeb, 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.rs-container.disabled .rs-pointer {
	border-color: #ccc;
	cursor: default;
}

.rs-container .rs-pointer::after, .rs-container .rs-pointer::before {
	content: "";
	position: absolute;
	width: 1px;
	height: 9px;
	background-color: #ddd;
	left: 12px;
	top: 5px;
}

.rs-container .rs-pointer::after {
	left: auto;
	right: 12px;
}

.rs-container.sliding .rs-pointer, .rs-container.sliding .rs-selected {
	transition: none;
}

.rs-container .rs-scale {
	left: 0;
	position: absolute;
	top: 5px;
	white-space: nowrap;
}

.rs-container .rs-scale span {
	float: left;
	position: relative;
}

.rs-container .rs-scale span::before {
	background-color: #ededed;
	content: "";
	height: 8px;
	left: 0;
	position: absolute;
	top: 10px;
	width: 1px;
}

.rs-container.rs-noscale span::before {
	display: none;
}

.rs-container.rs-noscale span:first-child::before, .rs-container.rs-noscale span:last-child::before {
	display: block;
}

.rs-container .rs-scale span:last-child {
	margin-left: -1px;
	width: 0;
}

.rs-container .rs-scale span ins {
	color: #333;
	display: inline-block;
	font-size: 12px;
	margin-top: 20px;
	text-decoration: none;
}

.rs-container.disabled .rs-scale span ins {
	color: #999;
}

.rs-tooltip {
	color: #333;
	width: auto;
	min-width: 60px;
	height: 30px;
	background: #fff;
	border: 1px solid #00969b;
	border-radius: 3px;
	position: absolute;
	transform: translate(-50%, -35px);
	left: 13px;
	text-align: center;
	font-size: 13px;
	padding: 6px 10px 0;
}

.rs-container.disabled .rs-tooltip {
	border-color: #ccc;
	color: #999;
}

*, *:after, *:before {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, div, span {
	max-height: 5000em;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
	position: relative;
}

img {
	border: none;
	object-fit: contain;
}

.bx-core-popup-menu-item[title="Редактировать страницу в визуальном редакторе"] {
	display: none !important;
}

.bx-core-adm-dialog .bx-core-adm-dialog-content:has(.bxce) {
	overflow: hidden;
}

.printr {
	position: fixed;
	right: 0;
	bottom: 0;
	width: min(90%, 900px);
	max-height: 90vh;
	z-index: 100000;
	background: #FFF;
	color: #000;
	border: 2px solid #d2d2d2;
	border-radius: 2px;
	overflow: auto;
}
.printr summary {
	position: sticky;
	top: 0;
	background: #eee;
	cursor: pointer;
}

/* cyrillic */
@font-face {
	font-family: "Onest";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url(/local/templates/ggmed/css/../fonts/gNMKW3F-SZuj7xmb-HY6EQ.woff2) format("woff2");
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
	font-family: "Onest";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url(/local/templates/ggmed/css/../fonts/gNMKW3F-SZuj7xmf-HY.woff2) format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
	font-family: "Onest";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url(/local/templates/ggmed/css/../fonts/gNMKW3F-SZuj7xmR-HY6EQ.woff2) format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@view-transition {
	navigation: auto;
}
html {
	font-size: 0.522vw;
}
@media (width > 1920px) {
	html {
		font-size: 10px;
	}
}

body {
	font-family: var(--font);
	font-size: max(12px, 1.6rem);
	font-weight: 500;
	line-height: 1.5;
	color: var(--black);
}

a {
	color: inherit;
	text-decoration: none;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	font-family: var(--font);
	font-weight: 400;
}

:is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) :is(b, mark, strong, em) {
	font-weight: 400;
	color: var(--gold);
}

h1, .h1 {
	font-size: max(var(--min-fz, 28px), 8rem);
	line-height: 1.2;
}

h2, .h2 {
	font-size: max(var(--min-fz, 24px), 6rem);
	line-height: 1.2;
}

h3, .h3 {
	font-size: max(var(--min-fz, 20px), 4.8rem);
	line-height: 1.2;
}

h4, .h4 {
	font-size: max(var(--min-fz, 18px), 3.4rem);
	line-height: 1.2;
}

h5, .h5 {
	font-size: max(var(--min-fz, 16px), 2.8rem);
	line-height: 1.2;
}

h6, .h6 {
	font-size: max(var(--min-fz, 16px), 2.6rem);
	line-height: 1.2;
}

.text-1 {
	font-size: max(var(--min-fz, 15px), 2rem);
}

.text-2 {
	font-size: max(var(--min-fz, 14px), 1.8rem);
}

.text-3 {
	font-size: max(var(--min-fz, 12px), 1.6rem);
}

.text-4 {
	font-size: max(var(--min-fz, 12px), 1.4rem);
}

::selection {
	color: #FFF;
	background-color: var(--gold);
}

::-moz-selection {
	color: #FFF;
	background-color: var(--gold);
}

.style-list, .user-content-simple ul, .user-content ul {
	list-style: none;
	--ul-dots-color: var(--gold);
}
.style-list li, .user-content-simple ul li, .user-content ul li {
	position: relative;
	padding-left: 1.5em;
}
.style-list li:before, .user-content-simple ul li:before, .user-content ul li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	background: var(--ul-dots-color);
}

.style-list-ol, .user-content-simple ol, .user-content ol {
	list-style: none;
	--ul-dots-color: var(--gold);
	counter-reset: ol;
}
.style-list-ol li, .user-content-simple ol li, .user-content ol li {
	position: relative;
	padding-left: 1.5em;
	counter-increment: ol;
}
.style-list-ol li:before, .user-content-simple ol li:before, .user-content ol li:before {
	content: counter(ol);
	position: absolute;
	left: 0;
	top: 0;
	color: var(--ul-dots-color);
	font-weight: bold;
}

.link, .about-facts__prizes__right a, .article-panel a, .user-content a:not(.btn, .btn-double), .footer-middle a:not(.pb-link), .menu-panel__title__link, .menu-panel__services header .h6 a, .menu-panel__pages a {
	display: inline;
	color: var(--gold);
	text-decoration-line: underline;
	text-decoration-thickness: 1px;
	text-decoration-color: transparent;
	text-underline-offset: 0.3em;
	transition: color 0.3s ease, -webkit-text-decoration 0.3s ease;
	transition: color 0.3s ease, text-decoration 0.3s ease;
	transition: color 0.3s ease, text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
@media (hover: hover) {
	.link:hover, .about-facts__prizes__right a:hover, .article-panel a:hover, .user-content a:hover:not(.btn, .btn-double), .footer-middle a:hover:not(.pb-link), .menu-panel__title__link:hover, .menu-panel__services header .h6 a:hover, .menu-panel__pages a:hover {
		text-decoration-color: currentColor;
	}
}
.link:active, .about-facts__prizes__right a:active, .article-panel a:active, .user-content a:active:not(.btn, .btn-double), .footer-middle a:active:not(.pb-link), .menu-panel__title__link:active, .menu-panel__services header .h6 a:active, .menu-panel__pages a:active {
	text-decoration-color: currentColor;
}

.link--gray {
	color: var(--black-light);
}

.link-icon {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	color: var(--gold);
	white-space: nowrap;
	transition: color 0.3s ease;
}
@media (hover: hover) {
	.link-icon:hover span {
		text-decoration-color: currentColor;
	}
	.link-icon:hover svg {
		translate: 20% 0;
	}
}
.link-icon:active span {
	text-decoration-color: currentColor;
}
.link-icon:active svg {
	translate: 20% 0;
}
.link-icon span {
	text-decoration-line: underline;
	text-decoration-thickness: 1px;
	text-decoration-color: transparent;
	text-underline-offset: 0.3em;
	transition: -webkit-text-decoration 0.3s ease;
	transition: text-decoration 0.3s ease;
	transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
.link-icon svg {
	width: 0.9em;
	height: auto;
	flex-shrink: 0;
	stroke: currentColor;
	transition: translate 0.3s ease;
}

.container {
	margin: 0 auto;
	width: 100%;
	max-width: calc(var(--container-width) + 80px);
	position: relative;
	padding-left: 40px;
	padding-right: 40px;
}
@media (max-width: 1024px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.container-wide {
	margin: 0 auto;
	width: 100%;
	max-width: calc(var(--container-width--wide) + 40px);
	position: relative;
	padding-left: 20px;
	padding-right: 20px;
}
@media (max-width: 1024px) {
	.container-wide {
		padding-left: 5px;
		padding-right: 5px;
	}
}

.s-def {
	padding: max(80px, 15rem) 0;
}
.s-def:not(.s-def--top) + .s-def:not(.s-def--important) {
	padding-top: 0;
}

.s-def--big {
	padding: max(100px, 20rem) 0;
}

.s-def--top {
	padding-bottom: 0;
}

.s-def--bottom {
	padding-top: 0;
}

.btn {
	--btn-color: var(--gold);
	--btn-bg: transparent;
	--btn-border: rgba(144, 125, 111, 0.3);
	--btn-color-hover: #FFF;
	--btn-bg-hover: var(--gold);
	--btn-border-hover: var(--gold);
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: max(10px, 2rem);
	vertical-align: top;
	position: relative;
	height: max(40px, 6rem);
	padding: 0 max(15px, 3rem);
	font-size: max(14px, 1.8rem);
	font-family: var(--font);
	line-height: 1.3;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease, grid-template-columns 0.2s ease, gap 0.3s ease, scale 0.1s ease;
	-webkit-user-select: none;
	        user-select: none;
	border-radius: 50px;
	background: var(--btn-bg);
	border: 1px solid var(--btn-border);
	color: var(--btn-color);
	scale: 1;
	flex-shrink: 0;
}
@media (hover: hover) {
	.btn:hover {
		background: var(--btn-bg-hover);
		color: var(--btn-color-hover);
		border: 1px solid var(--btn-border-hover);
	}
}
.btn:active {
	background: var(--btn-bg-hover);
	color: var(--btn-color-hover);
	border: 1px solid var(--btn-border-hover);
	scale: 0.96;
}
.btn:focus {
	outline: none;
}
.btn svg {
	width: 1em;
	height: auto;
	flex-shrink: 0;
	stroke: currentColor;
}

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

.btn--icon-fill svg {
	stroke: none;
	fill: currentColor;
}

.btn--big {
	height: max(50px, 8rem);
	padding: 0 max(20px, 3.5rem);
	font-size: max(14px, 2rem);
}

.btn--white {
	--btn-color: #FFF;
	--btn-bg: transparent;
	--btn-border: #FFF;
	--btn-color-hover: var(--gold);
	--btn-bg-hover: #FFF;
	--btn-border-hover: #FFF;
}

.btn--white-full {
	--btn-color: var(--gold);
	--btn-bg: #FFF;
	--btn-border: #FFF;
	--btn-color-hover: #FFF;
	--btn-bg-hover: var(--gold);
	--btn-border-hover: var(--gold);
}

.btn--white-hover-dark {
	--btn-color: #FFF;
	--btn-bg: transparent;
	--btn-border: #FFF;
	--btn-color-hover: #FFF;
	--btn-bg-hover: rgba(86, 75, 67, 0.5);
	--btn-border-hover: transparent;
}

.btn--hover-white {
	--btn-color-hover: var(--gold);
	--btn-bg-hover: #FFF;
}

.btn--gold {
	--btn-color: #FFF;
	--btn-bg: var(--gold);
	--btn-border: transparent;
	--btn-color-hover: #FFF;
	--btn-bg-hover: #7c6b5f;
	--btn-border-hover: transparent;
}

.btn-play {
	--btn-color: #FFF;
	--btn-bg: var(--gold);
	--btn-color-hover: #FFF;
	--btn-bg-hover: #7c6b5f;
	--btn-size: max(40px, 6rem);
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--btn-size);
	height: var(--btn-size);
	flex-shrink: 0;
	border-radius: 50%;
	border: none;
	background: var(--btn-bg);
	color: var(--btn-color);
	cursor: pointer;
	-webkit-user-select: none;
	        user-select: none;
	transition: background 0.3s ease, color 0.3s ease, scale 0.1s ease;
}
@media (hover: hover) {
	.btn-play:hover {
		color: var(--btn-color-hover);
		background: var(--btn-bg-hover);
	}
}
.btn-play:active {
	color: var(--btn-color-hover);
	background: var(--btn-bg-hover);
	scale: 0.9;
}
.btn-play svg {
	fill: currentColor;
	width: 100%;
	height: auto;
}

.btn-play--white {
	--btn-color: var(--gold);
	--btn-bg: #FFF;
	--btn-color-hover: #FFF;
	--btn-bg-hover: var(--gold);
}

.btn-play--light {
	--btn-color: var(--gold);
	--btn-bg: var(--gold95);
	--btn-color-hover: #FFF;
	--btn-bg-hover: var(--gold);
}

.btn--slide {
	display: inline-grid;
	grid-template-columns: 0fr auto;
	gap: 0;
}
@media (hover: hover) {
	.btn--slide:hover {
		grid-template-columns: 1fr auto;
		gap: max(10px, 2rem);
	}
}
.btn--slide:active {
	grid-template-columns: 1fr auto;
	gap: max(10px, 2rem);
}
.btn--slide span {
	overflow: hidden;
}

.btn-plus {
	--btn-color: #FFF;
	--btn-bg: var(--gold);
	--btn-color-hover: #FFF;
	--btn-bg-hover: #7c6b5f;
	--btn-size: max(40px, 8rem);
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--btn-size);
	height: var(--btn-size);
	flex-shrink: 0;
	border-radius: 50%;
	border: none;
	background: var(--btn-bg);
	color: var(--btn-color);
	font-size: calc(var(--btn-size) / 2);
	font-weight: normal;
	line-height: 1;
	cursor: pointer;
	-webkit-user-select: none;
	        user-select: none;
	transition: background 0.3s ease, color 0.3s ease, scale 0.1s ease, rotate 0.3s ease;
}
@media (hover: hover) {
	.btn-plus:hover {
		color: var(--btn-color-hover);
		background: var(--btn-bg-hover);
	}
}
.btn-plus:active {
	color: var(--btn-color-hover);
	background: var(--btn-bg-hover);
	scale: 0.9;
}
.btn-plus:after {
	content: "+";
	position: relative;
	top: 0.05em;
}
.btn-plus.active {
	rotate: 45deg;
	background: var(--line);
	color: var(--gold);
}

.more-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1em;
	text-align: center;
	width: 100%;
	height: max(60px, 10rem);
	color: var(--gold);
	font-family: var(--font);
	font-size: max(14px, 1.8rem);
	border-radius: var(--br-10);
	background: var(--gold95);
	-webkit-user-select: none;
	        user-select: none;
	border: none;
	transition: background 0.3s ease, scale 0.1s ease;
	margin-top: max(30px, 5rem);
	cursor: pointer;
}
@media (hover: hover) {
	.more-btn:hover {
		background: var(--gold95-hover);
	}
}
.more-btn:active {
	background: var(--gold95-hover);
	scale: 0.98;
}
.more-btn svg {
	fill: currentColor;
	width: 1em;
	height: auto;
}
.more-btn:disabled {
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}

.modal {
	display: none;
	flex-direction: column;
	width: 500px;
	max-width: 100%;
}

.modal__title {
	margin-bottom: 1em;
	max-width: calc(100% - 30px);
}

.modal__descr {
	color: var(--black-light);
}

.fancybox__container {
	--fancybox-backdrop-bg: rgba(0, 0, 0, 0.5);
}

.fancybox__viewport.is-draggable {
	cursor: default;
}

.fancybox__slide:has(.modal--aside) {
	overflow: hidden;
	padding: 0 !important;
}

.modal--aside {
	width: max(400px, 60rem);
	max-width: 95%;
	align-self: end;
	flex: 1;
	border-radius: 10px 0 0 10px;
	background: #FFF;
	padding: max(30px, 4rem) 30px 30px 30px;
	overflow: auto;
}
@media (max-width: 480px) {
	.modal--aside {
		padding: 20px;
	}
}
.modal--aside.f-zoomInUp {
	animation: asideIn 0.3s ease;
}
.modal--aside.f-fadeOut {
	animation: asideOut 0.3s ease;
}
.modal--aside .mini-cta {
	width: 100%;
	margin-top: max(15px, 3rem);
	padding-top: max(15px, 3rem);
	border-top: 1px solid var(--line);
	justify-content: space-between;
}
.modal--aside .mini-cta .text-3 {
	color: var(--black-light);
}

@keyframes asideIn {
	from {
		translate: 100%;
	}
	to {
		translate: 0%;
	}
}
@keyframes asideOut {
	from {
		translate: 0%;
	}
	to {
		translate: 100%;
	}
}
.modal--error {
	background: #dfbebe;
}

.fancybox__slide.has-html {
	padding-left: 25px;
	padding-right: 25px;
}
@media (max-width: 680px) {
	.fancybox__slide.has-html {
		padding-left: 4px;
		padding-right: 4px;
	}
}

.has-youtube .f-html {
	--f-video-width: 1920px;
	--f-video-height: 1080px;
	--f-video-aspect-ratio: 16 / 9;
	height: auto;
}

.has-iframe .f-html {
	padding: 0;
	width: 100%;
	max-width: 1800px;
	aspect-ratio: 16/9;
	height: auto;
	max-height: 90vh;
}

.is-horizontal .f-button.is-arrow.is-prev, .is-horizontal .f-button.is-arrow.is-next {
	--f-button-svg-stroke-width: 3;
	--f-arrow-pos: 5px;
}

.fancybox__slide .f-button[data-fancybox-close] {
	--f-button-width: 60px;
	--f-button-height: 60px;
	--f-button-border-radius: 50%;
	--f-button-color: var(--black-light);
	--f-button-hover-color: #FFF;
	--f-button-bg: #FFF;
	--f-button-hover-bg: var(--gold);
	--f-button-active-bg: var(--gold);
	--f-button-svg-width: 18px;
	--f-button-svg-height: 18px;
	--f-button-svg-stroke-width: 3;
	position: absolute;
	top: 12px;
	right: 12px;
	opacity: 1;
	transition: all 0.3s ease;
}
@media (max-width: 680px) {
	.fancybox__slide .f-button[data-fancybox-close] {
		top: 5px;
		right: 5px;
		width: 40px;
		height: 40px;
	}
}

.modal-docs {
	display: grid;
	grid-template-columns: 1fr;
	gap: max(20px, 3rem);
}

.modal-doc {
	display: block;
	cursor: pointer;
}
@media (hover: hover) {
	.modal-doc:hover img {
		border: 1px solid var(--gold);
	}
	.modal-doc:hover .text-3 {
		color: var(--gold);
	}
}
.modal-doc img {
	display: block;
	height: auto;
	aspect-ratio: 700/1000;
	object-fit: cover;
	background: var(--gold95);
	margin-bottom: max(6px, 1rem);
	width: max(300px, 43rem);
	max-width: 90%;
	border: 1px solid var(--gold95-hover);
	border-radius: var(--br-10);
	overflow: hidden;
	transition: border 0.3s ease;
}
.modal-doc .text-3 {
	color: var(--black-light);
	transition: color 0.3s ease;
}

.modal-req {
	display: flex;
	align-items: center;
	gap: max(7px, 1rem);
	font-size: max(var(--min-fz, 15px), 2rem);
	line-height: 1.2;
	border-radius: 5px;
	padding: max(7px, 1rem);
	transition: background 0.3s ease, color 0.3s ease;
}
@media (hover: hover) {
	.modal-req:hover {
		background: var(--gold95);
		color: var(--gold);
	}
}
.modal-req:active {
	background: var(--gold95);
}

.modal-req__file {
	height: 1.5em;
	width: auto;
	flex-shrink: 0;
}

.modal-req__arrow {
	margin-left: auto;
	width: 1em;
	height: auto;
	flex-shrink: 0;
}

.modal-form .modal__title {
	margin-bottom: 0.3em;
}
.modal-form .modal__descr {
	margin-bottom: max(15px, 2rem);
}

label {
	cursor: pointer;
}

.ajax-form input[name=phone] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	height: 1px;
	width: 1px;
	overflow: hidden;
	-webkit-user-select: none;
	        user-select: none;
}

.input-text {
	display: inline-block;
	font-family: var(--font);
	font-size: max(var(--min-fz, 14px), 1.8rem);
	border-radius: 40px;
	line-height: 1.3;
	-webkit-appearance: none;
	border: 1px solid var(--line);
	background: #FFF;
	color: var(--gold);
	padding: 1em 1.5em;
	overflow: visible;
	min-height: max(40px, 6rem);
}
.input-text::placeholder {
	font-size: max(var(--min-fz, 14px), 1.8rem);
	line-height: 1.3;
	color: var(--black-lightest);
	opacity: 1;
	transition: opacity 0.3s ease;
}
.input-text:focus {
	outline: none;
	box-shadow: 0 0 0 2px var(--gold);
	border-color: transparent;
}
.input-text:focus::placeholder {
	opacity: 0.5;
}
.input-text.error {
	box-shadow: 0 0 0 2px #fd7d7d;
	background: #efc3c3;
}

.input-text--search {
	font-size: max(var(--min-fz, 15px), 2rem);
	background: var(--gold95);
	color: var(--black);
	padding: 1em 1.5em;
	min-height: max(40px, 6rem);
	border: none;
}
.input-text--search::placeholder {
	font-size: max(var(--min-fz, 15px), 2rem);
	color: var(--black-lightest);
}

textarea.input-text {
	border-radius: 25px;
	resize: vertical;
}

.vertical-form {
	display: flex;
	flex-direction: column;
	gap: max(10px, 2rem);
}
.vertical-form .input-text {
	width: 100%;
}
.vertical-form .btn {
	width: 100%;
	margin-top: max(10px, 2rem);
	text-align: center;
	justify-content: center;
}

.style-checkbox {
	display: block;
	position: relative;
	cursor: pointer;
	font-size: max(var(--min-fz, 12px), 1.6rem);
	color: var(--gold);
}
.style-checkbox input {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
}
.style-checkbox input:checked + span:after {
	opacity: 1;
}
.style-checkbox input.error + span:before {
	box-shadow: 0 0 0 2px #fd7d7d;
	background: #efc3c3;
	border-color: transparent;
}
.style-checkbox span {
	display: block;
	position: relative;
	padding-left: max(30px, 4rem);
}
.style-checkbox span:before {
	content: "";
	width: max(20px, 2.8rem);
	height: max(20px, 2.8rem);
	border: 1px solid var(--line);
	border-radius: max(7px, 1rem);
	position: absolute;
	left: 0;
	top: 0;
}
.style-checkbox span:after {
	content: "";
	width: max(20px, 2.8rem);
	height: max(20px, 2.8rem);
	background: url(/local/templates/ggmed/css/../img/icons/check.svg) no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	opacity: 0;
}
.style-checkbox span a {
	color: currentColor;
	text-decoration: underline;
}
@media (hover: hover) {
	.style-checkbox span a:hover {
		color: var(--black);
	}
}

select.style-select {
	display: none;
}

.style-select.nice-select {
	font-size: max(15px, 2rem);
	font-weight: 500;
	height: max(40px, 6rem);
	line-height: max(40px, 6rem);
	background: var(--gold95);
	border: none;
	border-radius: 50px;
	padding-left: max(15px, 2rem);
	padding-right: max(30px, 5rem);
}
@media (hover: hover) {
	.style-select.nice-select:hover {
		background: var(--gold95-hover);
	}
}
.style-select.nice-select .current {
	color: var(--gold);
}
.style-select.nice-select:after {
	border-color: var(--gold);
	width: max(7px, 1rem);
	height: max(7px, 1rem);
	right: max(15px, 2.5rem);
	top: 46%;
}
.style-select.nice-select .nice-select-dropdown {
	background: var(--gold95);
	border-radius: var(--br-10);
	border: none;
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
	overflow: auto;
}
.style-select.nice-select .option {
	font-weight: normal;
}
.style-select.nice-select .option:hover {
	color: var(--gold);
	background: var(--gold95-hover);
}
.style-select.nice-select .option.selected {
	font-weight: normal;
	color: #FFF;
	background: var(--gold);
}

.anim--fadeIn {
	opacity: 0;
	will-change: opacity;
	transition: opacity 1.6s ease;
}
.anim--fadeIn.animated {
	opacity: 1;
}

.anim--fadeZoomIn {
	opacity: 0;
	transform: scale3d(0.8, 0.8, 1);
	will-change: opacity, transform;
	transition: opacity 1.6s ease, transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim--fadeZoomIn.animated {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

.anim--slideIn {
	opacity: 0;
	transform: translate3d(0, 40px, 0);
	will-change: opacity, transform;
	transition: opacity 1.6s ease, transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim--slideIn.animated {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.anim--clipImg .anim--clipImg__frame {
	clip-path: inset(50%);
	overflow: hidden;
	transform: translate3d(0, 0, 0);
	will-change: clip-path, transform;
	transition: clip-path 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim--clipImg.animated .anim--clipImg__frame {
	clip-path: inset(0%);
}

.anim.animated .anim--fadeIn {
	opacity: 1;
}
.anim.animated .anim--fadeZoomIn {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

.anim--slides-enter .swiper-slide {
	opacity: 0;
	translate: 100px 0;
	transition: opacity 1s ease, translate 1s ease;
}
.anim--slides-enter .swiper-slide:nth-child(1) {
	transition-delay: 0.1s;
}
.anim--slides-enter .swiper-slide:nth-child(2) {
	transition-delay: 0.2s;
}
.anim--slides-enter .swiper-slide:nth-child(3) {
	transition-delay: 0.3s;
}
.anim--slides-enter .swiper-slide:nth-child(4) {
	transition-delay: 0.4s;
}
.anim--slides-enter .swiper-slide:nth-child(5) {
	transition-delay: 0.5s;
}
.anim--slides-enter .swiper-slide:nth-child(6) {
	transition-delay: 0.6s;
}
.anim--slides-enter .swiper-slide:nth-child(7) {
	transition-delay: 0.7s;
}
.anim--slides-enter .swiper-slide:nth-child(8) {
	transition-delay: 0.8s;
}
.anim--slides-enter .swiper-slide:nth-child(9) {
	transition-delay: 0.9s;
}
.anim--slides-enter .swiper-slide:nth-child(10) {
	transition-delay: 1s;
}
.anim--slides-enter.animated .swiper-slide {
	opacity: 1;
	translate: 0 0;
}

.sec-title {
	margin-bottom: max(25px, 5rem);
}
.sec-title .h2 {
	max-width: 23em;
	text-wrap: pretty;
}
.sec-title .h2 figure {
	display: inline-block;
	vertical-align: top;
	background: var(--gold);
	padding: 0.2em 0.5em;
	white-space: nowrap;
	color: #fff;
	border-radius: 50px;
}

.sec-title__uptitle {
	color: var(--black-light);
	text-transform: uppercase;
	margin-bottom: 0.8em;
}

.sec-title--double {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px 10rem;
}
@media (max-width: 768px) {
	.sec-title--double {
		flex-direction: column;
		align-items: flex-start;
	}
}

.slider-btn {
	display: inline-flex;
	align-items: center;
	width: max(40px, 6rem);
	height: max(40px, 6rem);
	background: #FFF;
	color: var(--gold);
	border: 1px solid rgba(144, 125, 111, 0.3);
	border-radius: 50%;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	flex-shrink: 0;
	transition: opacity 0.3s ease, background 0.3s ease, scale 0.1s ease, color 0.3s ease, border 0.3s ease;
}
@media (hover: hover) {
	.slider-btn:hover:not(.swiper-button-disabled) {
		background: var(--gold);
		color: #FFF;
		border-color: var(--gold);
	}
}
.slider-btn:active:not(.swiper-button-disabled) {
	scale: 0.95;
}
.slider-btn svg {
	flex-shrink: 0;
	width: 100%;
	height: auto;
	stroke: currentColor;
	pointer-events: none;
}
.slider-btn.swiper-button-disabled {
	opacity: 0.3;
	cursor: default;
}

.slider-nav {
	display: flex;
	align-items: center;
	gap: 5px;
}

.swiper-scrollbar.swiper-scrollbar-horizontal {
	--swiper-scrollbar-size: 2px;
	--swiper-scrollbar-drag-bg-color: var(--gold);
	--swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
	--swiper-scrollbar-border-radius: 2px;
	position: relative;
	left: initial;
	bottom: initial;
	top: initial;
	width: 100%;
}

.slider-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	--swiper-pagination-color: rgba(0, 0, 0, 1);
	--swiper-pagination-bullet-inactive-color: rgba(0, 0, 0, 0.3);
	--swiper-pagination-bullet-inactive-opacity: 1;
	--swiper-pagination-bullet-size: 6px;
	--swiper-pagination-bullet-horizontal-gap: 4px;
	pointer-events: none;
}
@media (max-width: 1024px) {
	.slider-pagination {
		--swiper-pagination-bullet-size: 4px;
		--swiper-pagination-bullet-horizontal-gap: 3px;
	}
}
.slider-pagination .swiper-pagination-bullet {
	transition: scale 0.2s ease, background 0.3s ease;
	flex-shrink: 0;
	pointer-events: all;
}
.slider-pagination .swiper-pagination-bullet-active {
	scale: 1.8;
}

.slider-bottom-interface {
	display: flex;
	align-items: center;
	gap: max(10px, 2rem);
	margin-top: max(20px, 3rem);
}
.slider-bottom-interface .slider-nav {
	margin-left: auto;
}

.photo-slider {
	overflow: visible;
	-webkit-user-select: none;
	        user-select: none;
	cursor: none;
}
.photo-slider .swiper-slide {
	width: auto;
	background: var(--gold95);
	border-radius: var(--br-10);
	overflow: clip;
}
.photo-slider .swiper-slide img {
	display: block;
	height: 100%;
	width: auto;
}
.photo-slider .swiper-slide:nth-child(3n+1) {
	height: max(240px, 80rem);
}
.photo-slider .swiper-slide:nth-child(3n+2) {
	height: max(210px, 60rem);
}
.photo-slider .swiper-slide:nth-child(3n+3) {
	height: max(180px, 40rem);
}

.photo-slider-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFF;
	width: 15rem;
	height: 11rem;
	border-radius: 100px;
	border: 1px solid var(--line);
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
	transform: translate3d(var(--nav-x, 0), var(--nav-y, 0), 0);
	will-change: transform;
}
@media (max-width: 1024px) {
	.photo-slider-nav {
		visibility: hidden;
		opacity: 0;
		display: none;
	}
}
.photo-slider-nav.visible {
	opacity: 1;
	transition: opacity 0.3s ease 0.2s;
}
.photo-slider-nav svg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 2.4rem;
	height: 2.4rem;
	transition: all 0.3s ease;
	opacity: 0;
}
.photo-slider-nav svg:first-child {
	rotate: 180deg;
}
.photo-slider-nav.visible {
	opacity: 1;
}
.photo-slider-nav.left svg:first-child {
	opacity: 1;
	scale: 1;
}
.photo-slider-nav.left svg:last-child {
	opacity: 0;
	scale: 0.5;
}
.photo-slider-nav.right svg:last-child {
	opacity: 1;
	scale: 1;
}
.photo-slider-nav.right svg:first-child {
	opacity: 0;
	scale: 0.5;
}

.s-header {
	--header-soc-bg: rgba(0, 0, 0, 0.2);
	--header-soc-bg--hover: rgba(0, 0, 0, 0.4);
	--header-main-bg: rgba(255, 255, 255, 0.3);
	--burger-bg: rgba(255, 255, 255, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	margin-right: var(--f-scrollbar-compensate, 0px);
	padding: max(20px, 3.5rem) 0;
	color: #FFF;
	transition: padding 0.2s ease, background 0.2s ease, translate 0.3s ease;
	translate: 0 -100%;
}
@media (max-width: 1250px) {
	.s-header {
		position: absolute;
		padding: 10px 0;
	}
}
.s-header .container {
	max-width: calc(var(--container-width--wide) + 80px);
}
.s-header.s-header--loaded {
	translate: 0 0;
}
@media (max-width: 1250px) {
	.s-header.s-header--loaded {
		translate: initial;
	}
}

.s-header--black {
	color: var(--black);
	--header-soc-bg: var(--gold95);
	--header-soc-bg--hover: var(--gold95-hover);
	--header-main-bg: var(--gold95);
	--burger-bg: var(--gold95);
}
.s-header--black .header__logo__white {
	opacity: 0;
}
.s-header--black .header__logo__black {
	opacity: 1;
}

.s-header--scrolled {
	--burger-bg: var(--gold95);
}
@media (width > 1250px) {
	.s-header--scrolled {
		background: rgba(255, 255, 255, 0.9);
		padding: 0px 0;
		border-bottom: 1px solid rgba(210, 203, 198, 0.5);
		color: var(--black);
		backdrop-filter: blur(15px);
		-webkit-backdrop-filter: blur(15px);
		--header-soc-bg: var(--gold95);
		--header-soc-bg--hover: var(--gold95-hover);
		--header-main-bg: tranparent;
		--burger-bg: tranparent;
	}
	.s-header--scrolled .header__logo {
		width: 20rem;
	}
	.s-header--scrolled .header__logo__white {
		opacity: 0;
	}
	.s-header--scrolled .header__logo__black {
		opacity: 1;
	}
	.s-header--scrolled .header__phone__cta {
		opacity: 0;
	}
	.s-header--scrolled .header__main {
		gap: 0px;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		box-shadow: none;
	}
	.s-header--scrolled .header__main__nav__img {
		width: 0;
	}
	.s-header--scrolled .burger {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
}
@media (max-width: 1250px) {
	.s-header--scrolled .burger {
		box-shadow: 0 0px 25px 0 rgba(0, 0, 0, 0.2);
	}
}

.header {
	display: flex;
	align-items: center;
	gap: 10px;
}
@media (max-width: 680px) {
	.header {
		height: 40px;
	}
}

.header__left {
	display: flex;
	align-items: center;
	gap: max(10px, 2rem);
	margin-right: max(10px, 2rem);
}

.header__logo {
	display: block;
	position: relative;
	width: 31.4rem;
	transition: opacity 0.3s ease, width 0.3s ease;
}
@media (max-width: 1550px) {
	.header__logo {
		width: 25rem;
	}
}
@media (max-width: 1250px) {
	.header__logo {
		width: 130px;
	}
}
@media (hover: hover) {
	.header__logo:hover {
		opacity: 0.9;
	}
}
.header__logo:active {
	opacity: 0.8;
}
.header__logo img {
	display: block;
	width: 100%;
	height: auto;
	transition: opacity 0.3s ease;
}

.header__logo__black {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	opacity: 0;
}

.header__city-wrap {
	position: relative;
}

.header__city-note {
	position: absolute;
	z-index: 5;
	top: calc(100% + 10px);
	left: 0;
	background: #FFF;
	color: var(--black);
	border-radius: var(--br-10);
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
	padding: 10px 15px;
	width: auto;
	opacity: 0;
	visibility: hidden;
	scale: 0.95;
	transform-origin: center top;
	transition: scale 0.2s ease, visibility 0.2s ease, opacity 0.2s ease;
}
@media (max-width: 680px) {
	.header__city-note {
		left: -100px;
		padding: 7px 10px;
	}
}
.header__city-note.active {
	opacity: 1;
	visibility: visible;
	scale: 1;
}

.header__city-note__text strong {
	font-weight: 600;
	color: var(--gold);
}

.header__city-note__btns {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 10px;
}
@media (max-width: 680px) {
	.header__city-note__btns {
		margin-top: 4px;
	}
}
.header__city-note__btns .btn {
	height: 40px;
	padding: 0 15px;
	font-size: 14px;
}
@media (max-width: 680px) {
	.header__city-note__btns .btn {
		height: 30px;
		padding: 0 10px;
		font-size: 12px;
	}
}

.header__city {
	display: flex;
	align-items: center;
	gap: max(5px, 0.8rem);
	cursor: pointer;
	width: max(130px, 17rem);
	flex-shrink: 0;
}
@media (hover: hover) {
	.header__city:hover .header__city__arrow {
		background: var(--header-soc-bg--hover);
	}
}
.header__city:active .header__city__arrow {
	background: var(--header-soc-bg--hover);
}

.header__city__current {
	font-size: max(12px, 1.6rem);
	color: currentColor;
	max-width: 10em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.header__city__arrow {
	width: max(15px, 2rem);
	height: max(15px, 2rem);
	border-radius: 50%;
	background: var(--header-soc-bg);
	transition: background 0.3s ease;
	flex-shrink: 0;
}
.header__city__arrow svg {
	stroke: currentColor;
	width: 100%;
	height: auto;
}

.header__connect {
	display: flex;
	align-items: center;
	gap: max(6px, 1rem);
}
@media (max-width: 1550px) {
	.header__connect {
		gap: 2px;
	}
}
@media (max-width: 1250px) {
	.header__connect {
		margin-left: auto;
	}
}

.header__social {
	width: max(40px, 5rem);
	height: max(40px, 5rem);
	background: var(--header-soc-bg);
	border-radius: 50%;
	transition: background 0.3s ease, scale 0.1s ease;
	flex-shrink: 0;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
@media (hover: hover) {
	.header__social:hover {
		background: var(--header-soc-bg--hover);
	}
}
.header__social:active {
	background: var(--header-soc-bg--hover);
	scale: 0.95;
}
.header__social svg {
	display: block;
	width: 100%;
	height: auto;
	fill: currentColor;
}

.header__phone-block {
	position: relative;
}
@media (max-width: 680px) {
	.header__phone-block {
		display: none;
	}
}

.header__phone__cta {
	position: absolute;
	bottom: calc(100% + 4px);
	left: max(16px, 2rem);
	color: var(--black-light);
	color: rgba(0, 0, 0, 0.5);
	transition: opacity 0.3s ease;
}
@media (max-width: 1250px) {
	.header__phone__cta {
		display: none;
	}
}

.header__phone {
	font-family: var(--font);
	display: flex;
	align-items: center;
	background: var(--header-soc-bg);
	height: max(40px, 5rem);
	padding: 0 1em;
	border-radius: 50px;
	transition: background 0.3s ease, scale 0.1s ease;
	white-space: nowrap;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	font-weight: 500;
	border: none;
	color: inherit;
	cursor: pointer;
}
@media (hover: hover) {
	.header__phone:hover {
		background: var(--header-soc-bg--hover);
	}
}
.header__phone:active {
	background: var(--header-soc-bg--hover);
	scale: 0.95;
}

.header__consult {
	position: relative;
}
@media (max-width: 680px) {
	.header__consult {
		display: none;
	}
}

.header__consult__pop {
	display: flex;
	flex-direction: column;
	position: absolute;
	z-index: 55;
	top: 100%;
	left: 0;
	width: 100%;
	background: #FFF;
	border-radius: var(--br-10);
	gap: 5px;
	padding: 8px;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
	scale: 0.96;
	visibility: hidden;
	opacity: 0;
	transform-origin: center top;
	transition: scale 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}
@media (max-width: 1250px) {
	.header__consult__pop {
		padding: 4px;
		gap: 4px;
	}
}
.header__consult__pop.active {
	scale: 1;
	visibility: visible;
	opacity: 1;
}

.header__consult__btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	height: 40px;
	border-radius: 5px;
	padding-left: 10px;
	color: var(--gold);
	border: 1px solid var(--gold95);
	cursor: pointer;
	transition: background 0.3s ease;
}
@media (max-width: 1250px) {
	.header__consult__btn {
		height: 34px;
	}
}
@media (hover: hover) {
	.header__consult__btn:hover {
		background: var(--gold95);
	}
}
.header__consult__btn:active {
	background: var(--gold95);
}
.header__consult__btn svg {
	fill: currentColor;
	height: 100%;
	width: auto;
}

.header__right {
	display: flex;
	align-items: center;
	margin-left: auto;
}
@media (max-width: 1250px) {
	.header__right {
		margin-left: initial;
		width: 10px;
	}
}
@media (max-width: 1024px) {
	.header__right {
		width: 40px;
	}
}

.header__main {
	display: flex;
	align-items: center;
	position: relative;
	gap: max(10px, 3rem);
	background: var(--header-main-bg);
	border-radius: 100px;
	padding: max(5px, 1rem);
	padding-right: max(20px, 3rem);
	color: var(--black);
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.4) inset;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	transition: background 0.3s ease, gap 0.3s ease;
}
@media (max-width: 1550px) {
	.header__main {
		gap: 10px;
	}
}
@media (max-width: 1250px) {
	.header__main {
		display: none;
	}
}

.header__services-btn {
	display: flex;
	align-items: center;
	gap: max(5px, 1rem);
	height: max(40px, 6rem);
	background: #FFF;
	border-radius: 50px;
	padding: 0 max(15px, 2rem);
	font-size: max(12px, 1.6rem);
	cursor: pointer;
	-webkit-user-select: none;
	        user-select: none;
	white-space: nowrap;
	transition: background 0.3s ease, scale 0.1s ease, color 0.3s ease;
}
@media (hover: hover) {
	.header__services-btn:hover {
		background: var(--gold);
		color: #FFF;
	}
}
.header__services-btn:active {
	background: var(--gold);
	color: #FFF;
	scale: 0.96;
}
.header__services-btn svg {
	width: 1.5em;
	height: auto;
	flex-shrink: 0;
	fill: currentColor;
}

.header__main__nav {
	display: flex;
	align-items: center;
	white-space: nowrap;
	font-size: max(12px, 1.6rem);
	gap: 2em;
}
@media (max-width: 1550px) {
	.header__main__nav {
		gap: 1em;
	}
}
.header__main__nav a {
	display: flex;
	align-items: center;
	gap: max(8px, 1.5rem);
	transition: color 0.3s ease;
}
@media (hover: hover) {
	.header__main__nav a:hover {
		color: var(--gold);
	}
}
.header__main__nav a:active {
	color: var(--gold);
}

.header__main__nav__img {
	height: max(25px, 5rem);
	width: max(60px, 12.1rem);
	flex-shrink: 0;
	transition: width 0.3s ease;
	object-fit: cover;
}

.burger {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: max(50px, 8rem);
	height: max(50px, 8rem);
	flex-shrink: 0;
	background: var(--burger-bg);
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease, scale 0.1s ease;
	color: var(--black);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
@media (max-width: 1250px) {
	.burger {
		position: fixed;
		right: 5px;
		top: 5px;
		z-index: 50;
	}
}
@media (hover: hover) {
	.burger:hover {
		background: var(--gold);
		color: #FFF;
	}
}
.burger:active {
	background: var(--gold);
	color: #FFF;
	scale: 0.97;
}
.burger:before, .burger:after {
	content: "";
	position: absolute;
	top: 50%;
	left: calc(50% - 9px);
	width: 18px;
	height: 3px;
	border-radius: 2px;
	background: currentColor;
}
.burger:before {
	top: calc(50% - 3px);
}
.burger:after {
	top: calc(50% + 3px);
}

.body-overlay {
	position: fixed;
	z-index: 55;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	visibility: hidden;
	pointer-events: none;
}

.menu-panel {
	position: fixed;
	z-index: 60;
	top: 0;
	right: 0;
	width: max(400px, 60rem);
	max-width: 90%;
	bottom: 0;
	background: #FFF;
	color: var(--black);
	overflow: auto;
	visibility: hidden;
	translate: 105% 0;
	transition: visibility 0.3s ease, translate 0.3s ease;
	overscroll-behavior: none;
	border-radius: var(--br-10) 0 0 var(--br-10);
	padding: 20px;
}
.menu-panel.active {
	visibility: visible;
	translate: 0 0%;
}
.menu-panel.active ~ .body-overlay {
	z-index: 55;
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.menu-panel__close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 10;
	cursor: pointer;
	fill: var(--black-light);
	transition: fill 0.3s ease;
}
@media (hover: hover) {
	.menu-panel__close:hover {
		fill: var(--black);
	}
}
.menu-panel__close:active {
	fill: var(--black);
}

.menu-panel__section {
	padding: max(15px, 3rem) 10px;
	border-bottom: 1px solid var(--line);
}
.menu-panel__section .search-form {
	width: 100%;
}
@media (max-width: 480px) {
	.menu-panel__section .search-form {
		margin-left: -20px;
		width: calc(100% + 40px);
	}
}

.menu-panel__title {
	margin-bottom: 0.5em;
}

.menu-panel__services header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: max(10px, 1.5rem) 15px;
	margin-left: -15px;
	margin-right: -15px;
	border-radius: 10px;
}
.menu-panel__services header:has(svg) {
	cursor: pointer;
}
@media (hover: hover) {
	.menu-panel__services header:has(svg):hover {
		background: var(--gold95);
	}
	.menu-panel__services header:has(svg):hover svg {
		background: var(--gold);
		stroke: #FFF;
	}
}
.menu-panel__services header:has(svg):active {
	background: var(--gold95);
}
.menu-panel__services header:has(svg):active svg {
	background: var(--gold);
	stroke: #FFF;
}
.menu-panel__services header svg {
	border-radius: 50%;
	background: var(--gold95-hover);
	stroke: var(--black-light);
	transition: rotate 0.3s ease;
}
.menu-panel__services main {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}
.menu-panel__services.active main {
	grid-template-rows: 1fr;
}
.menu-panel__services.active header svg {
	rotate: 180deg;
}

.menu-panel__section__list {
	overflow: hidden;
	list-style: none;
}
.menu-panel__section__list a {
	display: block;
	color: var(--black-light);
	padding: 0.4em 1em;
	font-size: max(14px, 1.6rem);
}
@media (hover: hover) {
	.menu-panel__section__list a:hover {
		background: var(--gold95);
		border-radius: 5px;
	}
}
.menu-panel__section__list a:active {
	background: var(--gold95);
	border-radius: 5px;
}

.menu-panel__pages {
	list-style: none;
	columns: 2;
}
.menu-panel__pages li {
	margin-bottom: 0.7em;
}
.menu-panel__pages a {
	font-size: max(14px, 1.6rem);
}

.menu-panel__connect {
	padding: max(15px, 3rem) 0;
	justify-content: space-between;
}
.menu-panel__connect .text-3 {
	color: var(--black-light);
}

.menu-panel__section--location {
	padding-top: 10px;
}

.menu-panel__city {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	cursor: pointer;
	color: var(--black-light);
	-webkit-user-select: none;
	        user-select: none;
}
@media (hover: hover) {
	.menu-panel__city:hover .menu-panel__city__arrow {
		background: var(--gold);
		color: #FFF;
	}
}
.menu-panel__city:active .menu-panel__city__arrow {
	background: var(--gold);
	color: #FFF;
}
.menu-panel__city.active .menu-panel__city__arrow {
	rotate: 180deg;
}
.menu-panel__city.active + .menu-panel__city-roller {
	grid-template-rows: 1fr;
}
.menu-panel__city.active + .menu-panel__city-roller .menu-panel__city-list {
	padding-top: 10px;
}

.menu-panel__city__arrow {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--gold95);
	color: var(--black-light);
	transition: rotate 0.3s ease;
}
.menu-panel__city__arrow svg {
	stroke: currentColor;
}

.menu-panel__city-roller {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.menu-panel__city-list {
	overflow: hidden;
	padding-top: 0;
	transition: padding 0.3s ease;
	margin-left: -10px;
	margin-right: -10px;
}

.menu-panel__city-item {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	position: relative;
	padding: 0.7em 10px;
	border-radius: 5px;
	cursor: pointer;
}
@media (hover: hover) {
	.menu-panel__city-item:hover {
		background: var(--gold95);
	}
}
.menu-panel__city-item:active {
	background: var(--gold95);
}
.menu-panel__city-item .h6 {
	color: var(--gold);
	font-size: max(var(--min-fz, 16px), 2.2rem);
}
.menu-panel__city-item .text-4 {
	color: var(--black-light);
}
.menu-panel__city-item.active {
	padding-left: 20px;
}
.menu-panel__city-item.active:after {
	display: block;
}
.menu-panel__city-item:after {
	content: "";
	position: absolute;
	top: 1.25em;
	left: 5px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
	display: none;
}

.menu-panel__phone {
	display: inline-block;
	color: var(--gold);
	margin-bottom: 10px;
}

.menu-panel__connect-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
	margin: 0 -10px;
}

.city-panel {
	right: initial;
	left: 0;
	translate: -105% 0;
	border-radius: 0 var(--br-10) var(--br-10) 0;
}

.city-panel__title {
	padding: 0 10px;
	color: var(--gold);
	margin-bottom: 0.7em;
}

.city-panel__item {
	position: relative;
	border-radius: 5px;
	background: #FFF;
	cursor: pointer;
	transition: background 0.3s ease;
	padding: 10px;
	margin-bottom: 10px;
}
@media (hover: hover) {
	.city-panel__item:hover {
		background: var(--gold95);
	}
}
.city-panel__item:active {
	background: var(--gold95);
}
.city-panel__item:after {
	content: "";
	position: absolute;
	top: 10px;
	right: 10px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
	opacity: 0;
}
.city-panel__item.active:after {
	opacity: 1;
}

.city-panel__item__title {
	color: var(--gold);
	margin-bottom: 0.3em;
}

.city-panel__item__info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	font-size: max(var(--min-fz, 12px), 1.8rem);
	color: var(--black-light);
}

.breadcrumbs {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 49;
	margin-right: var(--fancybox-scrollbar-compensate);
	transition: all 0.3s ease;
}
@media (max-width: 1250px) {
	.breadcrumbs {
		display: none;
	}
}

.breadcrumbs__list {
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	font-weight: 500;
	gap: 0.4em;
	white-space: nowrap;
}
.breadcrumbs__list > li {
	display: flex;
	align-items: center;
	color: #FFF;
	gap: 0.25em;
}
.breadcrumbs__list > li svg {
	width: 1em;
	height: auto;
	stroke: currentColor;
}
.breadcrumbs__list > li:last-child {
	color: rgba(255, 255, 255, 0.4);
}
.breadcrumbs__list > li:last-child svg {
	display: none;
}

.breadcrumbs__item {
	transition: all 0.3s ease;
	-webkit-tap-highlight-color: transparent;
	white-space: nowrap;
	max-width: 30em;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media (hover: hover) {
	.breadcrumbs__item:hover {
		opacity: 0.8;
	}
}
.breadcrumbs__item:active {
	opacity: 0.8;
}

.s-header--black .breadcrumbs__list li {
	color: var(--black);
}
.s-header--black .breadcrumbs__list li:last-child {
	color: rgba(0, 0, 0, 0.4);
}

.s-header--scrolled .breadcrumbs {
	opacity: 0;
	visibility: hidden;
}

.s-footer {
	border-top: 1px solid var(--line);
}

.footer-top {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 20px;
	margin-bottom: max(25px, 5rem);
}
@media (max-width: 1024px) {
	.footer-top {
		grid-template-columns: 1fr;
	}
}

.footer-top__group {
	position: relative;
	padding: max(15px, 6rem) 15px 0 max(15px, 5rem);
}
.footer-top__group:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: max(50px, 10rem);
	width: 1px;
	border-left: 1px solid var(--line);
}
@media (max-width: 1024px) {
	.footer-top__group:before {
		display: none;
	}
}
.footer-top__group:first-child {
	padding-left: 0;
}
.footer-top__group:first-child:before {
	display: none;
}

.footer-top__title {
	margin-bottom: 0.8em;
}
@media (max-width: 1024px) {
	.footer-top__title {
		display: none;
	}
}

.footer-top__list {
	list-style: none;
	font-size: max(14px, 1.8rem);
	line-height: 1.25;
}
@media (max-width: 1024px) {
	.footer-top__list {
		display: none;
	}
}
.footer-top__list > li {
	margin-bottom: 0.7em;
}
.footer-top__list > li:last-child {
	margin-bottom: 0;
}
.footer-top__list ul {
	list-style: none;
	font-size: max(12px, 1.6rem);
	padding-left: 1em;
	padding-top: 0.7em;
	padding-bottom: 0.5em;
}
.footer-top__list ul li {
	margin-bottom: 0.7em;
}
.footer-top__list ul li:last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.footer-top__group--left, .footer-top__group--center {
		display: none;
	}
}
.footer-top__group--left .footer-top__list, .footer-top__group--center .footer-top__list {
	columns: 2;
}
.footer-top__group--left .footer-top__list li, .footer-top__group--center .footer-top__list li {
	break-inside: avoid-column;
}

@media (max-width: 1024px) {
	.footer-top__group--right {
		padding-left: 0;
		padding-right: 0;
	}
}

.footer-socs {
	margin-top: max(15px, 3.5rem);
	margin-left: -3.5rem;
	margin-right: -15px;
}
@media (max-width: 1250px) {
	.footer-socs {
		margin-left: initial;
	}
}
@media (max-width: 1024px) {
	.footer-socs {
		margin: initial;
	}
}

.footer-socs__panel {
	display: flex;
	align-items: center;
	gap: 10px max(10px, 3rem);
	padding: max(10px, 3rem);
	background: var(--gold95);
	border-radius: var(--br-10);
}
@media (max-width: 1250px) {
	.footer-socs__panel {
		flex-direction: column;
		text-align: center;
	}
}
.footer-socs__panel .text-4 {
	color: var(--gold);
	line-height: 1.35;
}

.footer-socs_list {
	display: flex;
	align-items: center;
	gap: max(10px, 2.5rem);
}
@media (max-width: 1024px) {
	.footer-socs_list {
		gap: 20px;
	}
}
.footer-socs_list a {
	display: block;
}
@media (hover: hover) {
	.footer-socs_list a:hover {
		opacity: 0.8;
	}
}
.footer-socs_list a:active {
	opacity: 0.8;
}
.footer-socs_list img {
	display: block;
	height: max(24px, 3.6rem);
	width: auto;
	flex-shrink: 0;
	opacity: 0.9;
}
@media (max-width: 1024px) {
	.footer-socs_list img {
		height: 36px;
	}
}

.footer-socs__note {
	padding-top: 0.5em;
	padding-left: 2rem;
	padding-right: 2rem;
	font-size: max(10px, 1.4rem);
	opacity: 0.3;
	line-height: 1.2;
}
@media (max-width: 1250px) {
	.footer-socs__note {
		padding-left: initial;
		padding-right: initial;
	}
}
@media (max-width: 1024px) {
	.footer-socs__note {
		text-align: center;
	}
}

.footer-logo {
	position: relative;
	margin-bottom: max(25px, 5rem);
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
	overflow: clip;
	transform: translateZ(0px);
}
.footer-logo strong {
	display: block;
	position: relative;
	z-index: 2;
	font-weight: normal;
	font-size: 47rem;
	text-align: center;
	line-height: 0.8;
	color: #000;
	background-color: white;
	mix-blend-mode: screen;
	transform: translateZ(0px);
}
@media (max-width: 480px) {
	.footer-logo strong {
		font-size: 45rem;
	}
}
.footer-logo video {
	position: absolute;
	top: 1px;
	left: 1px;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	opacity: 0.99;
	object-fit: cover;
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}

.footer-logo__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 200%;
	height: 200%;
	background: radial-gradient(ellipse 100% 100% at 20% 0%, #787374, #dac6ab, #787374);
	animation: flogo 6s linear infinite alternate;
}

@keyframes flogo {
	to {
		translate: -50% -50%;
	}
}
.footer-middle {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: max(25px, 5rem);
}
@media (max-width: 1250px) {
	.footer-middle {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
	}
}
@media (max-width: 680px) {
	.footer-middle {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 480px) {
	.footer-middle {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 10px;
	}
}
.footer-middle > div {
	max-width: 28rem;
}
@media (max-width: 1250px) {
	.footer-middle > div {
		max-width: initial;
	}
}
.pb-link span {
	display: block;
	margin-bottom: 0.3em;
}
.pb-link img {
	display: block;
	max-width: 100%;
	height: auto;
}
@media (max-width: 1250px) {
	.pb-link img {
		width: 130px;
	}
}
@media (max-width: 480px) {
	.pb-link img {
		margin-left: auto;
		margin-right: auto;
	}
}

.footer-bottom {
	padding: max(25px, 5rem) 0;
	border-top: 1px solid var(--line);
	color: var(--black-lightest);
	font-size: max(10px, 1.4rem);
}
.footer-bottom p {
	margin-bottom: 0.5em;
}
.footer-bottom p:last-child {
	margin-bottom: 0;
}

.user-content-simple p, .user-content-simple ol, .user-content-simple ul {
	margin-bottom: max(10px, 2rem);
}
.user-content-simple p:last-child, .user-content-simple ol:last-child, .user-content-simple ul:last-child {
	margin-bottom: 0;
}
.user-content-simple h1, .user-content-simple .h1, .user-content-simple h2, .user-content-simple .h2, .user-content-simple h3, .user-content-simple .h3, .user-content-simple h4, .user-content-simple .h4, .user-content-simple h5, .user-content-simple .h5, .user-content-simple h6, .user-content-simple .h6 {
	margin-bottom: max(10px, 2rem);
	margin-top: max(20px, 3rem);
}
.user-content-simple h1:first-child, .user-content-simple .h1:first-child, .user-content-simple h2:first-child, .user-content-simple .h2:first-child, .user-content-simple h3:first-child, .user-content-simple .h3:first-child, .user-content-simple h4:first-child, .user-content-simple .h4:first-child, .user-content-simple h5:first-child, .user-content-simple .h5:first-child, .user-content-simple h6:first-child, .user-content-simple .h6:first-child {
	margin-top: 0;
}
.user-content {
	font-size: max(14px, 2rem);
}
.user-content :is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) {
	margin-top: max(30px, 6rem);
	margin-bottom: max(15px, 3rem);
}
.user-content :is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6):first-child {
	margin-top: 0;
}
.user-content :is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6):last-child {
	margin-bottom: 0;
}
.user-content :is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) + :is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) {
	margin-top: 0;
}
.user-content p, .user-content ul, .user-content ol, .user-content table, .user-content img {
	margin-bottom: max(15px, 2rem);
}
.user-content p:first-child, .user-content ul:first-child, .user-content ol:first-child, .user-content table:first-child, .user-content img:first-child {
	margin-top: 0;
}
.user-content p:last-child, .user-content ul:last-child, .user-content ol:last-child, .user-content table:last-child, .user-content img:last-child {
	margin-bottom: 0;
}
.user-content ul li {
	margin-bottom: 0.5em;
}
.user-content ul li:last-child {
	margin-bottom: 0;
}
.user-content ol li {
	margin-bottom: 0.5em;
}
.user-content ol li:last-child {
	margin-bottom: 0;
}
.user-content b, .user-content strong {
	font-weight: 600;
}
.user-content em, .user-content i {
	font-style: normal;
	color: var(--black-light);
}
.user-content p:empty {
	display: none;
}

.cook-panel {
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 10px 40px;
	position: fixed;
	z-index: 50;
	bottom: 10px;
	left: 10px;
	background: #FFF;
	padding: 30px;
	color: var(--black);
	font-size: 16px;
	border-radius: 40px;
	width: 930px;
	max-width: calc(100% - 100px);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 1550px) {
	.cook-panel {
		font-size: 12px;
		padding: 15px;
		border-radius: 20px;
		width: 640px;
	}
}
@media (max-width: 480px) {
	.cook-panel {
		font-size: 10px;
		padding: 10px;
		border-radius: 10px;
		flex-direction: column;
		align-items: flex-start;
	}
}
.cook-panel.active {
	display: flex;
}

.cook-panel__close {
	padding: 0 2em;
	height: 3em;
}

.connect-widget {
	display: flex;
	flex-direction: column-reverse;
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 50;
	background: #FFF;
	border-radius: 100px;
	box-shadow: 0 4px 50px 0 rgba(144, 125, 111, 0.5);
	width: 80px;
	-webkit-user-select: none;
	        user-select: none;
}
@media (max-width: 680px) {
	.connect-widget {
		width: 60px;
		bottom: 5px;
		right: 5px;
	}
}
.connect-widget--opened .connect-widget__toggler__chat {
	opacity: 0;
}
.connect-widget--opened .connect-widget__toggler__cross {
	opacity: 1;
}
.connect-widget--opened .connect-widget__roller {
	grid-template-rows: 1fr;
}
.connect-widget--ready .connect-widget__roller-content {
	overflow: visible;
}

.connect-widget__toggler {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	transition: background 0.2s ease;
	background: #FFF;
	border: none;
	cursor: pointer;
}
@media (max-width: 680px) {
	.connect-widget__toggler {
		width: 60px;
		height: 60px;
	}
}
@media (hover: hover) {
	.connect-widget__toggler:hover {
		background: #F2F2F2;
	}
}
.connect-widget__toggler:active {
	background: #F2F2F2;
}

.connect-widget__toggler__text {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: opacity 0.3s ease;
}

.connect-widget__toggler__chat {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	transition: opacity 0.3s ease;
}

.connect-widget__toggler__cross {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	opacity: 0;
}

.connect-widget__roller {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.connect-widget__roller-content {
	overflow: hidden;
}

.connect-widget__list {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 10px 10px 5px 10px;
}
@media (max-width: 680px) {
	.connect-widget__list {
		padding: 5px 5px 3px 5px;
		gap: 3px;
	}
}
.connect-widget__list .round-soc {
	--size: 60px;
	position: relative;
}
@media (max-width: 680px) {
	.connect-widget__list .round-soc {
		--size: 50px;
	}
}
@media (hover: hover) {
	.connect-widget__list .round-soc:hover .connect-widget__label {
		opacity: 1;
		translate: 0 0;
	}
}

.connect-widget__label {
	position: absolute;
	right: calc(100% + 20px);
	top: 0;
	bottom: 0;
	margin: auto 0;
	background: #FFF;
	color: var(--gold);
	border-radius: var(--br-10);
	font-size: 14px;
	height: 38px;
	display: flex;
	align-items: center;
	padding: 0 1em;
	box-shadow: 0 4px 50px 0 rgba(144, 125, 111, 0.5);
	opacity: 0;
	translate: 10px 0;
	pointer-events: none;
	transition: opacity 0.2s ease, translate 0.2s ease;
}

.consult-block {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-radius: var(--br-10);
	padding: max(15px, 4rem);
	background: var(--gold95);
}
@media (max-width: 768px) {
	.consult-block {
		flex-direction: column;
	}
}

.consult-block__left .sec-title__uptitle {
	display: flex;
	align-items: center;
	gap: max(5px, 1rem);
}
.consult-block__left .sec-title__uptitle:before {
	content: "";
	width: 0.5em;
	height: 0.5em;
	background: var(--gold);
	border-radius: 50%;
	flex-shrink: 0;
}
.consult-block__left .h2 {
	color: var(--gold);
	margin-bottom: 0.5em;
	max-width: 10em;
}

.consult-block__stage {
	display: flex;
	align-items: flex-start;
	gap: max(15px, 3rem);
}
.consult-block__stage .text-2 {
	max-width: 25em;
}

.consult-block__video {
	width: max(80px, 15rem);
	height: auto;
	aspect-ratio: 150/215;
	object-fit: cover;
	border-radius: var(--br-10);
	background: var(--services);
}

.consult-block__items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: var(--gap);
	width: max(500px, 120rem);
}
@media (max-width: 1250px) {
	.consult-block__items {
		gap: 5px;
	}
}
@media (max-width: 1024px) {
	.consult-block__items {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 768px) {
	.consult-block__items {
		width: 100%;
		grid-template-columns: 1fr 1fr;
	}
}

.consult-block__item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	position: relative;
	background: #EEEBE7;
	border-radius: var(--br-10);
	padding: max(10px, 2rem);
	transition: background 0.3s ease, transform 0.6s ease, opacity 0.6s ease;
	min-height: 120px;
}
@media (hover: hover) {
	.consult-block__item:hover {
		background: var(--gold);
	}
	.consult-block__item:hover .h5 {
		color: #FFF;
	}
	.consult-block__item:hover .btn {
		--btn-color: var(--gold);
		--btn-bg: #FFF;
		--btn-border: #FFF;
	}
}
.consult-block__item:active {
	background: var(--gold);
}
.consult-block__item:active .h5 {
	color: #FFF;
}
.consult-block__item:active .btn {
	--btn-color: var(--gold);
	--btn-bg: #FFF;
	--btn-border: #FFF;
}
.consult-block__item .h5 {
	color: var(--gold);
	transition: color 0.3s ease;
}
.consult-block__item img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}
@media (max-width: 1024px) {
	.consult-block__item img {
		width: 80%;
		align-self: center;
	}
}
.consult-block__item .btn {
	width: 100%;
	--btn-color-hover: var(--gold);
	--btn-bg-hover: #FFF;
	--btn-border-hover: #FFF;
}

.consult-block-alt {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: var(--gap);
}
@media (max-width: 680px) {
	.consult-block-alt {
		grid-template-columns: 1fr;
	}
}

.consult-block-alt__main {
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(15px, 3rem);
}
.consult-block-alt__main .sec-title__uptitle {
	display: flex;
	align-items: center;
	gap: max(5px, 1rem);
}
.consult-block-alt__main .sec-title__uptitle:before {
	content: "";
	width: 0.5em;
	height: 0.5em;
	background: var(--gold);
	border-radius: 50%;
	flex-shrink: 0;
}
.consult-block-alt__main .h2 {
	color: var(--gold);
	margin-bottom: 0.5em;
	max-width: 10em;
}

.consult-block-alt__items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: var(--gap);
}
@media (max-width: 1250px) {
	.consult-block-alt__items {
		gap: 5px;
	}
}
@media (max-width: 1024px) {
	.consult-block-alt__items {
		grid-template-columns: 1fr 1fr;
	}
}
.consult-block-alt__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	height: max(150px, 25rem);
	background: #EEEBE7;
	border-radius: var(--br-10);
	padding: max(10px, 2rem);
	transition: background 0.3s ease;
}
@media (max-width: 768px) {
	.consult-block-alt__item {
		height: 100px;
	}
}
@media (hover: hover) {
	.consult-block-alt__item:hover {
		background: var(--gold);
	}
	.consult-block-alt__item:hover .text-1 {
		color: #FFF;
	}
	.consult-block-alt__item:hover .btn {
		grid-template-columns: 1fr auto;
		gap: max(10px, 2rem);
		--btn-color: #FFF;
		--btn-bg: transparent;
		--btn-border: rgba(255, 255, 255, 0.4);
	}
}
.consult-block-alt__item:active {
	background: var(--gold);
}
.consult-block-alt__item:active .text-1 {
	color: #FFF;
}
.consult-block-alt__item:active .btn {
	grid-template-columns: 1fr auto;
	gap: max(10px, 2rem);
	--btn-color: #FFF;
	--btn-bg: transparent;
	--btn-border: rgba(255, 255, 255, 0.4);
}
.consult-block-alt__item .text-1 {
	color: var(--gold);
	transition: color 0.3s ease;
}
.consult-block-alt__item img {
	position: absolute;
	aspect-ratio: 1/1;
	bottom: max(10px, 2rem);
	right: max(10px, 2rem);
	width: max(60px, 16rem);
	height: auto;
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}
@media (max-width: 1024px) {
	.consult-block-alt__item img {
		width: 40px;
	}
}

.consult-block-alt__tg {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	background: var(--line);
	border-radius: var(--br-10);
	padding: max(15px, 2.5rem);
	min-height: 45rem;
}
.consult-block-alt__tg .h4 {
	color: #FFF;
}

.consult-block-alt__tg-stage {
	display: grid;
	align-items: end;
	position: relative;
	margin-top: min(-15px, -5rem);
}

.consult-block-alt__tg-stage-item {
	position: relative;
	background: #FFF;
	color: var(--black);
	border-radius: var(--br-10);
	padding: max(8px, 1.2rem);
	font-size: max(10px, 1.4rem);
	box-shadow: 0 max(2px, 0.4rem) max(25px, 5rem) 0 rgba(144, 125, 111, 0.5);
	width: max(200px, 30rem);
	grid-column: 1/1;
	grid-row: 1/1;
	opacity: 0;
	top: 0;
	transition: scale 0.6s ease, opacity 0.6s ease, translate 0.6s ease, top 0.3s ease;
	transform-origin: center bottom;
	scale: 1.2;
	translate: 0 min(-20px, -4rem);
}
.consult-block-alt__tg-stage-item p {
	margin-bottom: 0.5em;
}
.consult-block-alt__tg-stage-item p:last-child {
	margin-bottom: 0;
}
.consult-block-alt__tg-stage-item.active {
	opacity: 1;
	translate: 0 0;
	z-index: 10;
	scale: 1;
}
.consult-block-alt__tg-stage-item.prev--1 {
	opacity: 1;
	scale: 0.9;
	translate: 0 max(10px, 2rem);
	z-index: 9;
}
.consult-block-alt__tg-stage-item.prev--2 {
	opacity: 1;
	scale: 0.8;
	translate: 0 max(20px, 4rem);
	z-index: 8;
}
.consult-block-alt__tg-stage-item.prev--3 {
	opacity: 1;
	scale: 0.7;
	translate: 0 max(30px, 6rem);
	z-index: 7;
}
.consult-block-alt__tg-stage-item.enterAnimate {
	top: 100%;
}

.s-cases-slider {
	overflow: clip;
}

.cases-slider {
	overflow: visible;
}
.cases-slider .swiper-slide {
	width: max(300px, 56rem);
}

.cases-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: max(20px, 5rem) var(--gap);
}
@media (max-width: 1024px) {
	.cases-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 680px) {
	.cases-grid {
		grid-template-columns: 1fr;
	}
}

.case-preview {
	display: block;
	position: relative;
	background: #FFF;
	cursor: pointer;
	transition: scale 0.3s ease;
}
.case-preview .btn-play {
	position: absolute;
	bottom: 5px;
	right: 5px;
	z-index: 2;
}

.case-preview__img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--br-10);
}

.preims-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--gap);
}
@media (max-width: 1024px) {
	.preims-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 680px) {
	.preims-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

.preim {
	position: relative;
	border-radius: var(--br-10);
	overflow: clip;
	padding: max(15px, 3rem);
	background: var(--line);
	color: var(--black);
	min-height: max(300px, 44rem);
}
.preim__title {
	padding-bottom: 0.5em;
	max-width: 10em;
}
.preim__descr {
	max-width: 25em;
}
.preim__descr p {
	margin-bottom: 0.5em;
}
.preim__descr p:last-child {
	margin-bottom: 0;
}
.preim > *:not(.preim__img) {
	position: relative;
	z-index: 2;
}

.preim__img {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom center;
}

.preim:nth-child(2) .preim__descr {
	width: 75%;
}

.preim:nth-child(4) .preim__descr {
	max-width: 19em;
	width: 70%;
}

.preim:nth-child(5) .preim__descr {
	max-width: 19em;
	width: 65%;
}

.preim--dark {
	background: var(--gradient-1);
	color: #FFF;
}

.preim--big {
	display: flex;
	flex-direction: column;
	grid-row: span 2;
	padding: 0;
}
@media (max-width: 680px) {
	.preim--big {
		grid-row: span 1;
	}
}
.preim--big .preim__descr {
	max-width: 100%;
}

.preim--big__content {
	padding: max(15px, 3rem);
}
.preim--big__content .preim__descr {
	font-size: max(12px, 1.8rem);
}

.preim--big__img {
	display: block;
	width: 100%;
	height: auto;
	margin-top: auto;
}

.preim__yt {
	display: flex;
	align-items: center;
	gap: max(5px, 1rem);
	border-radius: var(--br-10);
	padding: max(4px, 0.8rem);
	background: rgba(38, 38, 38, 0.2);
	margin-top: max(20px, 4rem);
	margin-bottom: max(10px, 2rem);
	transition: background 0.3s ease;
}
@media (hover: hover) {
	.preim__yt:hover {
		background: rgba(38, 38, 38, 0.4);
	}
}
.preim__yt:active {
	background: rgba(38, 38, 38, 0.4);
}
.preim__yt img {
	width: max(40px, 7.6rem);
	height: auto;
}
.preim__yt .text-3 {
	padding-left: max(5px, 1rem);
}

.preim__yt__arrow {
	flex-shrink: 0;
	align-self: start;
}

.mini-cta {
	display: flex;
	align-items: center;
	gap: max(10px, 2rem);
}

.mini-cta__title {
	color: var(--black-light);
}

.round-socs {
	display: flex;
}

.round-socs--big .round-soc {
	--size: max(50px, 8rem);
	margin-right: min(-7px, -1rem);
}

.round-soc {
	--color-icon: var(--gold);
	--color-bg: #FFF;
	--color-border: var(--gold);
	--color-icon--hover: #FFF;
	--color-bg--hover: var(--gold);
	--color-border--hover: #FFF;
	--size: max(50px, 6rem);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	cursor: pointer;
	width: var(--size);
	height: var(--size);
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	color: var(--color-icon);
	border-radius: 50%;
	transition: all 0.3s ease, scale 0.1s ease;
	margin-right: min(-7px, -0.8rem);
	flex-shrink: 0;
}
@media (hover: hover) {
	.round-soc:hover {
		background: var(--color-bg--hover);
		border: 1px solid var(--color-border--hover);
		color: var(--color-icon--hover);
	}
}
.round-soc:active {
	scale: 0.9;
}
.round-soc svg {
	width: 100%;
	height: auto;
	fill: currentColor;
}
.round-soc:nth-child(1) {
	z-index: 5;
}
.round-soc:nth-child(2) {
	z-index: 4;
}
.round-soc:nth-child(3) {
	z-index: 3;
}
.round-soc:nth-child(4) {
	z-index: 2;
}
.round-soc:last-child {
	margin-right: initial;
}

.doctors-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2px;
}
@media (max-width: 768px) {
	.doctors-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 680px) {
	.doctors-grid {
		grid-template-columns: 1fr;
	}
}

.doctors-grid__fact {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 20px;
	aspect-ratio: 572/700;
}
@media (max-width: 680px) {
	.doctors-grid__fact {
		aspect-ratio: initial;
	}
}
.doctors-grid__fact strong {
	font-size: max(20px, 10rem);
	font-weight: normal;
	line-height: 1;
	margin-bottom: 0.2em;
}
.doctors-grid__fact .text-1 {
	color: var(--black-light);
	max-width: 17em;
}
@media (max-width: 680px) {
	.doctors-grid__fact:not(:has(strong)), .doctors-grid__fact:not(:has(.text-1)) {
		display: none;
	}
}

.doctor-preview {
	display: block;
	position: relative;
	background: var(--gradient-2);
	color: #FFF;
	aspect-ratio: 572/700;
	scale: 1;
	transition: scale 0.1s ease;
}
@media (hover: hover) {
	.doctor-preview:hover .doctor-preview__logo {
		opacity: 0.1;
		scale: 1;
	}
	.doctor-preview:hover:before {
		opacity: 1;
	}
	.doctor-preview:hover .btn--slide {
		--btn-color: var(--gold);
		--btn-bg: #FFF;
		--btn-border: #FFF;
		grid-template-columns: 1fr auto;
		gap: max(10px, 2rem);
	}
}
.doctor-preview:active {
	scale: 0.98;
}
.doctor-preview:active .doctor-preview__logo {
	opacity: 0.1;
	scale: 1;
}
.doctor-preview:active:before {
	opacity: 1;
}
.doctor-preview:active .btn--slide {
	--btn-color: var(--gold);
	--btn-bg: #FFF;
	--btn-border: #FFF;
	grid-template-columns: 1fr auto;
	gap: max(10px, 2rem);
}
.doctor-preview:before {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: opacity 0.3s ease;
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}
.doctor-preview:after {
	content: "";
	position: absolute;
	z-index: 2;
	inset: 0;
	background: radial-gradient(circle 40rem at 80% 100%, #FFF, rgba(255, 255, 255, 0));
	opacity: 0.6;
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}

.doctor-preview__img {
	position: absolute;
	z-index: 4;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}

.doctor-preview__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: absolute;
	z-index: 5;
	inset: 0;
	padding: max(15px, 3rem);
	padding-top: max(18px, 2.5rem);
}

.doctor-preview__top {
	display: flex;
	justify-content: space-between;
	position: relative;
	padding-top: max(10px, 2rem);
	border-top: 1px solid #FFF;
}
.doctor-preview__top:before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: max(10px, 2rem);
	border-right: 1px solid #FFF;
}

.doctor-preview__main .h4 {
	margin-bottom: 0.2em;
}
.doctor-preview__main .text-3 {
	text-transform: uppercase;
	max-width: 8em;
	--min-fz: 10px;
}

.doctor-preview__xp .text-3 {
	text-transform: uppercase;
	--min-fz: 10px;
}

.doctor-preview__logo {
	position: absolute;
	z-index: 3;
	top: 50%;
	translate: 0 -50%;
	width: 90%;
	left: 5%;
	aspect-ratio: 196/36;
	opacity: 0;
	scale: 1.1;
	transition: opacity 0.3s ease, scale 0.3s ease;
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}

.s-doctors-slider {
	overflow: hidden;
}

.doctors-slider {
	overflow: visible;
}
.doctors-slider .swiper-slide {
	width: max(300px, 57.2rem);
}

.blog-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: var(--gap);
}
@media (max-width: 768px) {
	.blog-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 680px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
}

.blog-preview {
	display: block;
	border-radius: var(--br-10);
	overflow: clip;
	position: relative;
	aspect-ratio: 560/440;
	background: var(--black-light);
	color: #FFF;
	transition: scale 0.1s ease, opacity 0.3s ease;
}
@media (hover: hover) {
	.blog-preview:hover .btn--slide {
		grid-template-columns: 1fr auto;
		gap: max(10px, 2rem);
	}
	.blog-preview:hover:after {
		opacity: 0.6;
	}
}
.blog-preview:active {
	scale: 0.98;
}
.blog-preview:active .btn--slide {
	grid-template-columns: 1fr auto;
	gap: max(10px, 2rem);
}
.blog-preview:active:after {
	opacity: 0.6;
}
.blog-preview:after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: #000;
	opacity: 0.4;
	transition: opacity 0.3s ease;
}

.blog-preview__img {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}

.blog-preview__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	position: absolute;
	inset: 0;
	z-index: 3;
	padding: max(12px, 2rem);
}

.blog-preview__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.blog-preview__top time {
	white-space: nowrap;
}

.blog-preview__cat {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	padding: 0.5em 1.2em;
	text-transform: uppercase;
}

.blog-preview__bottom .h5 {
	margin-bottom: 0.5em;
	max-width: 14em;
}

.contacts-text-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	padding-bottom: max(30px, 8rem);
}
@media (max-width: 680px) {
	.contacts-text-intro {
		grid-template-columns: 1fr;
	}
}
.contacts-text-intro .h2 {
	max-width: 10em;
}

.contacts-text-intro__descr p {
	margin-bottom: 0.5em;
}
.contacts-text-intro__descr p:last-child {
	margin-bottom: 0;
}

[data-cont] {
	display: none;
}
[data-cont].active {
	display: block;
}

.contacts-top {
	border-top: 1px solid var(--line);
	margin-bottom: max(40px, 8rem);
}

.contacts-top-items {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
}
@media (max-width: 1024px) {
	.contacts-top-items {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 15px 30px;
		padding-top: 20px;
	}
}
@media (max-width: 768px) {
	.contacts-top-items {
		grid-template-columns: 1fr 1fr;
	}
}

.contacts-top-item {
	padding: max(10px, 1.5rem) 10px 0 max(10px, 2rem);
	position: relative;
}
@media (max-width: 1024px) {
	.contacts-top-item {
		padding-left: 0;
		padding-right: 0;
		padding-top: 0;
	}
}
.contacts-top-item:first-child {
	padding-left: 0;
}
@media (max-width: 480px) {
	.contacts-top-item:first-child {
		grid-column: span 2;
	}
}
@media (max-width: 480px) {
	.contacts-top-item:nth-child(2) {
		grid-column: span 2;
	}
}
@media (max-width: 480px) {
	.contacts-top-item:nth-child(3) {
		grid-column: span 2;
	}
}
.contacts-top-item:last-child {
	padding-right: 0;
}
.contacts-top-item:last-child:after {
	display: none;
}
.contacts-top-item:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: max(20px, 3rem);
	width: 1px;
	border-right: 1px solid var(--line);
}
@media (max-width: 1024px) {
	.contacts-top-item:after {
		display: none;
	}
}
.contacts-top-item #contacts-top-select {
	position: absolute;
}
.contacts-top-item .style-select {
	width: 100%;
	max-width: 250px;
}

.contacts-top-item__label {
	text-transform: uppercase;
	color: var(--black-light);
	font-size: max(12px, 1.4rem);
	margin-bottom: 1em;
}
@media (max-width: 1024px) {
	.contacts-top-item__label {
		margin-bottom: 0.5em;
		display: none;
	}
}

.contacts-top-address address {
	font-style: normal;
	line-height: 1.2;
}
.contacts-top-address address small {
	font-size: 1em;
	color: var(--black-light);
}
.contacts-top-address .link {
	margin-top: 4px;
}

.contacts-sliders {
	overflow: hidden;
}

.contacts-map-wrap {
	margin-bottom: max(40px, 8rem);
}

.contacts-map {
	display: block;
	height: max(300px, 50rem);
	border-radius: var(--br-10);
	background: var(--gold95);
	overflow: clip;
	position: relative;
	z-index: 1;
}

.pin {
	display: block;
	width: 38px;
	height: 65px;
	translate: -50% -100%;
}

.subscribe-block {
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(10px, 4.5rem) 0;
}
@media (max-width: 480px) {
	.subscribe-block .container {
		padding-left: 10px;
		padding-right: 10px;
	}
}

.subscribe-block-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: var(--gap);
}
@media (max-width: 768px) {
	.subscribe-block-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}
@media (max-width: 680px) {
	.subscribe-block-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.subscribe-block-item {
	display: block;
}
@media (hover: hover) {
	.subscribe-block-item:hover .subscribe-block-item__img {
		scale: 1.02;
	}
}

.subscribe-block-item__img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 415/480;
	object-fit: cover;
	border-radius: var(--br-10);
	transition: scale 0.3s ease;
}

.subscribe-block-item__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: max(10px, 2rem);
}
@media (max-width: 1024px) {
	.subscribe-block-item__bottom {
		padding-left: 5px;
		padding-right: 5px;
	}
}
.subscribe-block-item__bottom .text-1 {
	text-transform: uppercase;
}
.subscribe-block-item__bottom .text-3 {
	color: var(--black-light);
}

@media (max-width: 1024px) {
	.subscribe-block-cta {
		padding: 0 10px;
	}
}
@media (max-width: 768px) {
	.subscribe-block-cta {
		order: -1;
		grid-column: span 3;
		padding: 0;
		margin-bottom: 10px;
	}
}
@media (max-width: 680px) {
	.subscribe-block-cta {
		padding-right: 10px;
	}
}
@media (max-width: 680px) {
	.subscribe-block-cta {
		grid-column: span 1;
	}
}
.subscribe-block-cta .h3 {
	--min-fz: 18px;
	margin-bottom: 0.5em;
}
.subscribe-block-cta .text-1 {
	--min-fz: 12px;
	max-width: 25em;
	color: var(--black-light);
}

.s-intro {
	background: var(--gradient-1);
	color: #FFF;
}

.intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	min-height: 80rem;
	position: relative;
	z-index: 3;
}
@media (max-width: 768px) {
	.intro {
		grid-template-columns: minmax(0, 1fr);
	}
}

.intro__left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-top: 25rem;
	padding-bottom: max(20px, 4rem);
}
@media (max-width: 1250px) {
	.intro__left {
		padding-top: max(70px, 15rem);
	}
}

.intro__title {
	margin-bottom: 0.3em;
	text-wrap: balance;
}
.intro__title--big {
	font-size: max(28px, 10rem);
}

.intro__descr {
	max-width: 25em;
	text-wrap: pretty;
}

.intro__bottom {
	margin-top: auto;
	padding-top: 30px;
}

.intro-connect {
	display: inline-flex;
	align-items: center;
	gap: max(10px, 2rem);
	background: var(--gold95);
	border-radius: 40px;
	padding: max(5px, 1rem);
	padding-left: max(20px, 3.5rem);
}
.intro-connect .text-3 {
	color: var(--gold);
	white-space: nowrap;
	line-height: 1.3;
}
.intro-connect .round-soc {
	--color-border: var(--gold95);
}

.intro__bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 768px) {
	.intro__bg {
		opacity: 0.4;
		object-position: center right;
	}
}

.s-filter {
	position: relative;
	border-bottom: 1px solid var(--line);
	padding: max(20px, 4rem) 0;
}

#filter {
	position: absolute;
	top: min(-60px, -8rem);
	left: 0;
}
@media (max-width: 1250px) {
	#filter {
		top: 0;
	}
}

.filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px max(15px, 4rem);
}

.filter-link {
	display: flex;
	align-items: center;
	white-space: nowrap;
	font-size: max(15px, 2rem);
	gap: max(5px, 1rem);
	cursor: pointer;
}
@media (hover: hover) {
	.filter-link:hover span {
		color: var(--gold);
		text-decoration-color: var(--gold);
	}
}
.filter-link:active span {
	color: var(--gold);
	text-decoration-color: var(--gold);
}
.filter-link span {
	text-decoration-line: underline;
	text-decoration-thickness: 1px;
	text-decoration-color: transparent;
	text-underline-offset: 0.3em;
	transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
.filter-link figure {
	background: var(--gold95);
	color: var(--gold);
	border-radius: 20px;
	font-size: max(12px, 1.4rem);
	padding: 0.5em 1em;
}
.filter-link.active span {
	color: var(--gold);
	text-decoration-color: var(--gold);
}

.s-simple-head {
	padding-top: max(100px, 24rem);
	padding-bottom: max(30px, 5rem);
}

.s-simple-head__title {
	max-width: 18em;
}

.faq-mini-grid {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 20px;
}
@media (max-width: 680px) {
	.faq-mini-grid {
		grid-template-columns: 1fr;
	}
}

.faq-mini-grid__left {
	position: relative;
}
.faq-mini-grid__left .h2 {
	margin-bottom: 0.3em;
}

.faq-mini-grid__sticky {
	position: sticky;
	top: max(70px, 9rem);
}
@media (max-width: 1250px) {
	.faq-mini-grid__sticky {
		top: 20px;
	}
}

.faq-mini-grid__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-mini {
	background: var(--gold95);
	border-radius: var(--br-10);
}
.faq-mini.active .faq-mini__answer {
	grid-template-rows: 1fr;
}
.faq-mini.active .btn-plus {
	rotate: 45deg;
	background: var(--line);
	color: var(--gold);
}

.faq-mini__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: max(10px, 2.5rem) max(15px, 3rem);
	cursor: pointer;
	-webkit-user-select: none;
	        user-select: none;
}
@media (hover: hover) {
	.faq-mini__header:hover .btn-plus {
		color: var(--btn-color-hover);
		background: var(--btn-bg-hover);
	}
}
.faq-mini__header .h5 {
	max-width: 25em;
	color: var(--gold);
}
.faq-mini__header .btn-plus {
	--btn-size: max(30px, 6rem);
}

.faq-mini__answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.faq-mini__content {
	overflow: hidden;
}
.faq-mini__content .user-content {
	padding: max(10px, 2.5rem) max(15px, 3rem);
	padding-top: 0;
	color: var(--black-light);
}

.s-home-intro {
	display: flex;
	position: relative;
	min-height: min(100svh, 108rem);
	padding-top: max(80px, 17rem);
	background: #a5958a;
	color: #FFF;
}
@media (max-width: 768px) {
	.s-home-intro {
		display: block;
	}
}

.home-intro {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 2;
	gap: max(25px, 5rem);
	padding-bottom: max(20px, 4.5rem);
	margin: 0 auto;
	width: 100%;
	max-width: calc(var(--container-width--wide) + 80px);
	position: relative;
	padding-left: 40px;
	padding-right: 40px;
}
@media (max-width: 1024px) {
	.home-intro {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (max-width: 768px) {
	.home-intro {
		padding-bottom: 0;
	}
}
.home-intro:after {
	content: "";
	position: absolute;
	left: 0;
	top: calc(100% - 1px);
	height: 10vw;
	width: 100%;
	background: linear-gradient(to bottom, #a5958a, rgba(165, 149, 138, 0));
	display: none;
}
@media (max-width: 768px) {
	.home-intro:after {
		display: block;
	}
}

.home-intro-bg {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}
@media (max-width: 768px) {
	.home-intro-bg {
		position: relative;
	}
}

.home-intro__title {
	max-width: 10em;
	text-wrap: balance;
	margin-bottom: 0.5em;
}

.home-intro__btns {
	display: flex;
	flex-wrap: wrap;
	gap: max(10px, 2rem);
}

.home-intro__bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px 20px;
}
@media (max-width: 768px) {
	.home-intro__bottom {
		align-items: center;
	}
}
@media (max-width: 480px) {
	.home-intro__bottom {
		gap: 10px;
	}
}

.home-intro__price {
	background: var(--gradient-2);
	min-width: 35rem;
	border-radius: var(--br-10);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-bottom: none;
	background: linear-gradient(42deg, #675A50 14.56%, #A6978C 96.33%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: max(15px, 3rem);
}
.home-intro__price .text-2 {
	--min-fz: 12px;
}
.home-intro__price .h2 {
	margin: 0.1em 0;
	--min-fz: 30px;
}
.home-intro__price .h2 small {
	font-size: 0.6em;
}
.home-intro__price ul {
	--ul-dots-color: currentColor;
	font-size: max(12px, 1.6rem);
}

.home-intro__video {
	display: flex;
	gap: max(10px, 1.5rem);
	background: rgba(103, 90, 80, 0.5);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	padding: max(5px, 1rem);
	border-radius: var(--br-10);
}

.home-intro__video__content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: space-between;
	width: max(180px, 22rem);
	padding-left: 5px;
}
@media (max-width: 768px) {
	.home-intro__video__content {
		display: none;
	}
}
.home-intro__video__content .text-1 {
	--min-fz: 14px;
}
.home-intro__video__content .text-3 {
	--min-fz: 11px;
}

.home-intro__video__stage {
	display: block;
	position: relative;
	width: max(100px, 20rem);
	height: auto;
	aspect-ratio: 1/1;
	border-radius: var(--br-10);
	overflow: clip;
	flex-shrink: 0;
	cursor: pointer;
	flex-shrink: 0;
}
@media (hover: hover) {
	.home-intro__video__stage:hover:after {
		opacity: 0.5;
	}
	.home-intro__video__stage:hover .btn-play {
		--btn-color: #FFF;
		--btn-bg: var(--gold);
	}
	.home-intro__video__stage:active:after {
		opacity: 0.5;
	}
	.home-intro__video__stage:active .btn-play {
		--btn-color: #FFF;
		--btn-bg: var(--gold);
	}
}
.home-intro__video__stage video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.home-intro__video__stage:after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgb(0, 0, 0);
	opacity: 0.2;
	transition: opacity 0.3s ease;
}
.home-intro__video__stage .btn-play {
	--btn-size: max(25px, 4rem);
	position: absolute;
	z-index: 3;
	bottom: 5px;
	right: 5px;
}

.s-home-stars {
	overflow: clip;
}

.home-stars {
	display: grid;
	grid-template-columns: max(440px, 62rem) minmax(0, 1fr);
	gap: 6rem;
}
@media (max-width: 1024px) {
	.home-stars {
		display: block;
	}
}
.home-stars .sec-title {
	margin-bottom: max(15px, 3rem);
}

.home-stars__left {
	display: flex;
	flex-direction: column;
	z-index: 2;
}
.home-stars__left .h2 .btn {
	vertical-align: middle;
}
@media (max-width: 1024px) {
	.home-stars__left .h2 .btn {
		display: flex;
		margin-top: 10px;
		max-width: 200px;
	}
}

.home-stars__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 30px;
}
@media (max-width: 1024px) {
	.home-stars__bottom {
		padding-top: 15px;
	}
}
@media (max-width: 480px) {
	.home-stars__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
@media (max-width: 480px) {
	.home-stars__bottom .slider-nav {
		display: none;
	}
}

@media (max-width: 1024px) {
	.home-stars__right {
		padding-top: 20px;
	}
}

.home-stars-slider {
	overflow: visible;
	width: max(300px, 52rem);
	margin: initial;
}
@media (max-width: 1024px) {
	.home-stars-slider {
		width: 100%;
	}
}
.home-stars-slider .swiper-slide {
	width: 100%;
}
@media (max-width: 1024px) {
	.home-stars-slider .swiper-slide {
		width: 300px;
	}
}
.home-stars-slider .swiper-slide.invisible .star-preview {
	opacity: 0;
	scale: 0.6;
}
@media (max-width: 1024px) {
	.home-stars-slider .swiper-slide.invisible .star-preview {
		opacity: 1;
		scale: 1;
	}
}
.home-stars-slider .star-preview {
	opacity: 1;
	scale: 1;
	transition: opacity 0.3s ease, scale 0.3s ease;
}

.star-preview {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	width: 100%;
	aspect-ratio: 520/688;
	background: var(--gold);
	border-radius: var(--br-10);
	overflow: clip;
	padding: max(15px, 3rem);
	color: #FFF;
	-webkit-user-select: none;
	        user-select: none;
}
@media (hover: hover) {
	.star-preview:hover:before {
		opacity: 1;
	}
	.star-preview:hover .star-preview__logo {
		opacity: 1;
	}
	.star-preview:hover .btn {
		opacity: 1;
	}
}
.star-preview:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20%;
	background: linear-gradient(180deg, rgba(31, 31, 31, 0) 0%, #1F1F1F 100%);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	z-index: 2;
	opacity: 0;
	transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
	.star-preview:before {
		opacity: 1;
	}
}

.star-preview__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.star-preview__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: max(10px, 2rem);
	z-index: 3;
}
.star-preview__top .h4 {
	margin-bottom: 0.2em;
}
.star-preview__top .text-3 {
	color: rgba(255, 255, 255, 0.7);
	--min-fz: 12px;
}

.star-preview__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	z-index: 3;
}
.star-preview__bottom .btn {
	opacity: 0;
}
@media (max-width: 1024px) {
	.star-preview__bottom .btn {
		opacity: 1;
	}
}

.star-preview__logo {
	width: max(20px, 4rem);
	opacity: 0.1;
	transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
	.star-preview__logo {
		opacity: 1;
	}
}

.home-about {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 40px var(--gap);
}

.home-about__left {
	grid-column: span 5;
}
@media (max-width: 768px) {
	.home-about__left {
		grid-column: span 12;
	}
}

.home-about__text {
	margin-bottom: max(30px, 10rem);
}
.home-about__text p {
	margin-bottom: 0.5em;
}
.home-about__text p:last-child {
	margin-bottom: 0;
}

.home-about__facts {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16rem 20px;
}
@media (max-width: 1250px) {
	.home-about__facts {
		gap: max(20px, 5rem) 20px;
	}
}

.home-about__fact {
	width: calc(50% - 10px);
}
.home-about__fact .h1 {
	--min-fz: 32px;
}
.home-about__fact .text-2 {
	max-width: 12em;
}

.home-about__right {
	grid-column: span 7;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}
@media (max-width: 768px) {
	.home-about__right {
		grid-column: span 12;
	}
}

.home-about__prize {
	display: block;
	width: 59.4rem;
	height: auto;
}
@media (max-width: 768px) {
	.home-about__prize {
		width: 100px;
	}
}

.home-about__last-col {
	width: 36rem;
}
@media (max-width: 768px) {
	.home-about__last-col {
		flex: 1;
		width: auto;
	}
}

.home-about__video {
	position: relative;
	border-radius: var(--br-10);
	overflow: clip;
	width: 100%;
	height: auto;
	aspect-ratio: 360/230;
	cursor: pointer;
	background: var(--gold95);
	margin-bottom: max(20px, 15rem);
}
@media (max-width: 1250px) {
	.home-about__video {
		margin-bottom: max(20px, 6rem);
	}
}
@media (hover: hover) {
	.home-about__video:hover .btn-play {
		--btn-color: #FFF;
		--btn-bg: var(--gold);
	}
	.home-about__video:hover:before {
		opacity: 0.5;
	}
}
.home-about__video:before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgb(0, 0, 0);
	opacity: 0.2;
	z-index: 2;
	transition: opacity 0.3s ease;
}
.home-about__video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.home-about__video .btn-play {
	position: absolute;
	bottom: 5px;
	right: 5px;
	z-index: 3;
}

.home-about__right-text {
	margin-bottom: max(20px, 5rem);
}
.home-about__right-text b {
	color: var(--gold);
	font-weight: inherit;
}

.home-about__prize-small {
	display: block;
	width: max(100px, 20rem);
	height: auto;
}

.s-home-services .sec-title .h2 {
	max-width: 14em;
}

.home-services-cite {
	display: flex;
	align-items: flex-start;
	gap: max(15px, 2.5rem);
}
.home-services-cite img {
	width: max(80px, 14.3rem);
	height: auto;
}
.home-services-cite .h5 {
	color: var(--black-light);
	max-width: 17em;
}

.services-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gap);
	counter-reset: cats;
}
@media (max-width: 768px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
}

.home-services-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: var(--gap);
	counter-reset: cats;
}
@media (max-width: 768px) {
	.home-services-grid {
		grid-template-columns: 1fr;
	}
}

.services-cat {
	counter-increment: cats;
	position: relative;
	background: var(--services);
	color: #FFF;
	border-radius: var(--br-10);
	overflow: clip;
	padding: max(15px, 4rem);
	padding-bottom: max(80px, 15rem);
	min-height: max(220px, 60rem);
}
@media (hover: hover) {
	.services-cat:hover .services-cat__canvas {
		opacity: 0.8;
	}
}

.services-cat__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 2;
	gap: 20px;
	margin-bottom: max(15px, 2rem);
}
.services-cat__head:after {
	content: "(" counter(cats, decimal-leading-zero) ")";
	font-size: max(15px, 2rem);
	white-space: nowrap;
}

@media (hover: hover) {
	.services-cat__title:hover svg {
		translate: 20% -20%;
	}
}
.services-cat__title svg {
	display: inline-block;
	vertical-align: middle;
	stroke: currentColor;
	width: 0.5em;
	height: auto;
	transition: translate 0.3s ease;
}

.services-cat__links {
	display: flex;
	flex-wrap: wrap;
	gap: max(5px, 1rem);
	position: relative;
	z-index: 3;
}
.services-cat__links .btn {
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.services-cat__bottom {
	position: absolute;
	z-index: 3;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	font-weight: 300;
	font-size: max(60px, 13rem);
	line-height: 1;
	color: #d6cdc7;
	padding-left: 0.1em;
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}
.services-cat__bottom:after {
	content: "";
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(164, 148, 138, 0), #B5A9A0 80%);
}

.services-cat__media {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}

.services-cat__canvas {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease;
}

.services-cat--big {
	grid-column: span 3;
	min-height: 80rem;
}
@media (max-width: 768px) {
	.services-cat--big {
		grid-column: span 1;
	}
}
.services-cat--big .services-cat__head .h3 {
	--min-fz: 24px;
}
.services-cat--big .services-cat__bottom {
	display: none;
}
.services-cat--big .services-cat__links {
	width: max(570px, 80rem);
}
@media (max-width: 768px) {
	.services-cat--big .services-cat__links {
		width: initial;
	}
}

.home-preims-block {
	border-radius: var(--br-10);
	background: var(--gold95);
	padding: max(40px, 7rem) 0;
}
.home-preims-block .consult-block {
	margin-top: max(50px, 10rem);
}
@media (max-width: 480px) {
	.home-preims-block .consult-block {
		padding: 0;
	}
}

.methods-grid {
	display: grid;
	grid-template-columns: 56rem 1fr;
	gap: 30px max(20px, 4rem);
}
@media (max-width: 1024px) {
	.methods-grid {
		grid-template-columns: 1fr;
	}
}

.methods-grid__left {
	display: flex;
	flex-direction: column;
}
.methods-grid__left .h2 {
	margin-bottom: 0.5em;
}
.methods-grid__left .text-2 {
	max-width: 22em;
	margin-bottom: 20px;
}
.methods-grid__left .mini-cta {
	margin-top: auto;
}

.methods-grid__right {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: var(--gap);
}
@media (max-width: 680px) {
	.methods-grid__right {
		grid-template-columns: 1fr;
	}
}

.method {
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(15px, 3rem) 0;
	border: 1px solid var(--gold95-hover);
}

.method__img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: max(30px, 5rem);
}
@media (max-width: 680px) {
	.method__img {
		width: 190px;
	}
}

.method__content {
	padding: 0 max(15px, 3rem);
}

.method__param {
	margin-bottom: max(10px, 2rem);
}
.method__param:last-child {
	margin-bottom: 0;
}

.method__param__title {
	color: var(--gold);
	margin-bottom: 0.2em;
}

.method__param__val {
	display: inline-block;
	color: #BA574F;
	background: #E2B9B6;
	border-radius: 50px;
	padding: 0.5em 1.5em;
}
.method__param__val.active {
	color: #56A352;
	background: #CBD6C2;
}

.home-prices-block {
	border-radius: var(--br-10);
	background: var(--gradient-1);
	overflow: clip;
	padding: max(40px, 12rem) 0 max(20px, 8rem);
}

.home-prices-slider {
	overflow: visible;
}
.home-prices-slider .swiper-slide:not(.home-prices-left) {
	width: max(200px, 43.5rem);
}
.home-prices-slider .swiper-scrollbar.swiper-scrollbar-horizontal {
	--swiper-scrollbar-bg-color: rgba(255, 255, 255, 0.5);
}

.home-price {
	display: flex;
	flex-direction: column;
	background: #FFF;
	color: var(--gold);
	border-radius: var(--br-10);
	padding: max(15px, 3rem);
	height: auto;
	aspect-ratio: 435/590;
}

.home-price__label {
	align-self: start;
	color: #FFF;
	background: var(--gold);
	border-radius: 20px;
	padding: 0.6em 1em;
	margin-top: 7px;
	line-height: 1.2;
}

.home-price__bottom {
	margin-top: auto;
	padding-top: 20px;
}
.home-price__bottom .h2 {
	white-space: nowrap;
	margin-bottom: 0.1em;
}
.home-price__bottom .h2 small {
	font-size: 0.6em;
}
.home-prices-left {
	display: flex;
	flex-direction: column;
	color: #FFF;
	height: auto;
	width: max(280px, 43.5rem);
	padding-right: 10px;
}
.home-prices-left .sec-title__uptitle {
	color: #FFF;
}
.home-prices-left .h2 {
	margin-bottom: 0.2em;
}

.home-prices-left__descr {
	margin-bottom: 15px;
	font-size: max(12px, 2rem);
}

.home-prices-left__cta {
	margin-top: auto;
	background: var(--gold);
	color: #FFF;
	border-radius: var(--br-10);
	padding: max(12px, 2.5rem);
}
.home-prices-left__cta .h5 {
	margin-bottom: 0.4em;
}
.home-prices-left__cta .mini-cta {
	margin-top: max(10px, 3.5rem);
}
.home-prices-left__cta .mini-cta__title {
	color: #FFF;
}
@media (max-width: 1024px) {
	.home-prices-left__cta > .text-3 {
		display: none;
	}
}

.s-blog-slider {
	overflow: hidden;
}

.blog-slider-grid {
	display: grid;
	grid-template-columns: max(300px, 56rem) minmax(0, 1fr);
	gap: max(20px, 4rem);
}
@media (max-width: 1024px) {
	.blog-slider-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

.blog-slider-grid__left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 2;
	gap: 20px;
}

.blog-slider-grid__bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 10px;
}

.blog-slider {
	overflow: visible;
}
.blog-slider .swiper-slide {
	width: max(260px, 56rem);
}
.blog-slider .swiper-slide.invisible .blog-preview {
	opacity: 0;
	scale: 0.8;
}
@media (max-width: 1024px) {
	.blog-slider .swiper-slide.invisible .blog-preview {
		opacity: 1;
		scale: 1;
	}
}

.s-intro--service {
	background: var(--services);
}
.s-intro--service .intro {
	min-height: min(100svh, 108rem);
}
.s-intro--service .intro__descr {
	max-width: 35em;
}

.intro__service-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 768px) {
	.intro__service-img {
		display: block;
		position: relative;
		height: auto;
		aspect-ratio: 1/1;
		object-position: center right;
	}
}

@media (max-width: 768px) {
	.intro__service-picture {
		display: block;
		position: relative;
		margin-top: -30rem;
	}
	.intro__service-picture:before {
		content: "";
		position: absolute;
		z-index: 2;
		top: -1px;
		left: 0;
		right: 0;
		height: 20%;
		background: linear-gradient(to bottom, var(--services), transparent);
	}
}

.intro__service-params {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: max(30px, 3.5rem);
	border-top: 1px solid #FFF;
}

.intro__service-param {
	position: relative;
	padding: max(10px, 1.5rem) max(15px, 4rem) 0 max(10px, 1.5rem);
}
.intro__service-param:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: max(20px, 3rem);
	width: 1px;
	border-right: 1px solid #FFF;
}
.intro__service-param:first-child {
	padding-left: 0;
}
.intro__service-param:first-child:after {
	display: none;
}
.intro__service-param:last-child {
	padding-right: 0;
}
.intro__service-param .text-4 {
	text-transform: uppercase;
	margin-bottom: 1em;
}
@media (max-width: 768px) {
	.intro__service-param .text-4 {
		margin-bottom: 0.5em;
	}
}
.intro__service-param .h4 {
	line-height: 1;
	white-space: nowrap;
	--min-fz: 15px;
}
.intro__service-param .h4 b {
	color: inherit;
	font-size: 1.7em;
}

.bottom-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-top: max(20px, 3rem);
}
.bottom-cta .h4 {
	color: var(--gold);
	margin-bottom: 0.5em;
	max-width: 22em;
}

.service-about-panel {
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(20px, 5rem) 0;
}

.service-about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
@media (max-width: 768px) {
	.service-about {
		grid-template-columns: 1fr;
	}
}

.service-about__left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-right: 30px;
}
@media (max-width: 768px) {
	.service-about__left {
		padding-right: 0;
	}
}

.service-about__uptitle {
	color: var(--black-lightest);
	text-transform: uppercase;
	margin-bottom: 1em;
}

.service-about__bottom {
	margin-top: auto;
	padding-top: max(20px, 4rem);
}

.service-about-video {
	display: inline-flex;
	align-items: flex-end;
	gap: max(10px, 2rem);
}
@media (hover: hover) {
	.service-about-video:hover .service-about-video__media:after {
		opacity: 0.3;
	}
	.service-about-video:hover .btn-play {
		--btn-color: #FFF;
		--btn-bg: var(--gold);
	}
}
.service-about-video:active .service-about-video__media:after {
	opacity: 0.3;
}
.service-about-video:active .btn-play {
	--btn-color: #FFF;
	--btn-bg: var(--gold);
}
.service-about-video.fancy-video {
	cursor: pointer;
}

.service-about-video__media {
	position: relative;
	border-radius: var(--br-10);
	overflow: clip;
	transform: translateZ(0px);
	width: max(120px, 25rem);
}
.service-about-video__media:after {
	content: "";
	position: absolute;
	inset: 0;
	background: #000;
	opacity: 0.2;
	z-index: 2;
	transition: opacity 0.3s ease;
}
.service-about-video__media img, .service-about-video__media video {
	display: block;
	aspect-ratio: 250/360;
	object-fit: cover;
	width: 100%;
	height: auto;
}

.service-about-video__right .btn-play {
	margin-bottom: max(10px, 2rem);
}
.service-about-video__right .text-2 {
	max-width: 15em;
	color: var(--gold);
}

.service-about__text {
	max-width: 700px;
}
.service-about__text p, .service-about__text ol, .service-about__text ul {
	margin-bottom: max(10px, 2rem);
}
.service-about__text p:last-child, .service-about__text ol:last-child, .service-about__text ul:last-child {
	margin-bottom: 0;
}
.service-about__text h1, .service-about__text .h1, .service-about__text h2, .service-about__text .h2, .service-about__text h3, .service-about__text .h3, .service-about__text h4, .service-about__text .h4, .service-about__text h5, .service-about__text .h5, .service-about__text h6, .service-about__text .h6 {
	margin-bottom: max(10px, 2rem);
	margin-top: max(30px, 6rem);
}
.service-about__text ul {
	list-style: none;
	--ul-dots-color: var(--gold);
	counter-reset: ol;
}
.service-about__text ul li {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: max(10px, 2rem);
	position: relative;
	padding-left: 1.2em;
	padding: 1em 0 1em 1.2em;
	border-bottom: 1px solid var(--line);
	counter-increment: ol;
}
.service-about__text ul li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 1.5em;
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	background: var(--ul-dots-color);
}
.service-about__text ul li:after {
	content: "(" counter(ol, decimal-leading-zero) ")";
	color: var(--gold);
	font-size: 0.8em;
}
.service-about__text ul li:last-child {
	border: none;
	padding-bottom: 0;
}

.service-preims {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--gap);
}
@media (max-width: 1024px) {
	.service-preims {
		display: flex;
		margin-left: -20px;
		margin-right: -20px;
		overflow: auto;
		padding-bottom: 10px;
		padding-left: 20px;
		padding-right: 20px;
	}
}

.service-preim {
	display: flex;
	flex-direction: column;
	position: relative;
	border-radius: var(--br-10);
	background: var(--services);
	color: #FFF;
	overflow: clip;
	aspect-ratio: 415/600;
	padding: max(15px, 3rem);
	padding-right: 10px;
}
@media (max-width: 1024px) {
	.service-preim {
		width: 260px;
		flex-shrink: 0;
		padding: 15px;
		padding-right: 10px;
		padding-bottom: 0;
		aspect-ratio: initial;
	}
}
@media (hover: hover) {
	.service-preim:hover .text-1 {
		opacity: 1;
		translate: 0 0em;
	}
	.service-preim:hover .service-preim__img {
		opacity: 0;
		scale: 1.1;
	}
}
.service-preim:active .text-1 {
	opacity: 1;
	translate: 0 0em;
}
.service-preim:active .service-preim__img {
	opacity: 0;
	scale: 1.1;
}
.service-preim .h4 {
	margin-bottom: 0.5em;
	position: relative;
	z-index: 3;
}
.service-preim .text-1 {
	--min-fz: 12px;
	position: relative;
	z-index: 3;
	opacity: 0;
	translate: 0 1em;
	transition: opacity 0.3s ease, translate 0.3s ease;
}
@media (max-width: 1024px) {
	.service-preim .text-1 {
		opacity: 1;
		translate: initial;
		margin-bottom: auto;
	}
}

@media (max-width: 1024px) {
	.service-preim__picture {
		display: block;
		position: relative;
		height: auto;
		margin-left: -15px;
		width: calc(100% + 30px);
		margin-top: -90px;
	}
	.service-preim__picture:before {
		content: "";
		position: absolute;
		z-index: 2;
		top: -1px;
		left: 0;
		right: 0;
		height: 20%;
		background: linear-gradient(to bottom, var(--services), transparent);
	}
}

.service-preim__img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
	transition: opacity 0.3s ease, scale 0.3s ease;
}
@media (max-width: 1024px) {
	.service-preim__img {
		display: block;
		position: relative;
		height: auto;
		scale: 1 !important;
		opacity: 1 !important;
		aspect-ratio: 415/600;
	}
}

.s-service-steps {
	overflow: clip;
}

.service-steps-nav {
	display: flex;
	gap: 10px;
	overflow: auto;
	margin-left: -40px;
	margin-right: -40px;
	padding: 0 40px;
}
.service-steps-nav::-webkit-scrollbar {
	height: 0;
}

.service-steps-nav__item {
	display: flex;
	align-items: center;
	gap: max(7px, 1rem);
	padding: max(3px, 0.5rem);
	background: #FFF;
	border-radius: 100px var(--br-10) var(--br-10) 100px;
	flex-shrink: 0;
	transition: background 0.3s ease;
	cursor: pointer;
}
@media (hover: hover) {
	.service-steps-nav__item:hover {
		background: var(--gold95);
	}
}
.service-steps-nav__item:active {
	background: var(--gold95);
}
.service-steps-nav__item.active {
	background: var(--gold95);
}
.service-steps-nav__item img {
	width: max(50px, 8rem);
	height: auto;
	aspect-ratio: 1/1;
	flex-shrink: 0;
	background: var(--gold95);
	border-radius: 50%;
}
.service-steps-nav__item .text-3 {
	word-break: keep-all;
	width: min-content;
	min-width: 8em;
}

.service-steps-slider {
	overflow: visible;
	margin-top: max(20px, 5rem);
	counter-reset: ss;
}
.service-steps-slider .swiper-slide {
	width: max(300px, 45rem);
}

.service-step {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	padding: max(15px, 3rem);
	background: var(--black);
	border-radius: var(--br-10);
	overflow: clip;
	aspect-ratio: 500/650;
	color: #FFF;
	counter-increment: ss;
}
.service-step > *:not(img) {
	position: relative;
	z-index: 3;
}
.service-step:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, #000, transparent 30%) rgba(0, 0, 0, 0.2);
	z-index: 2;
}
.service-step:before {
	content: "(" counter(ss, decimal-leading-zero) ")";
	display: block;
	font-size: max(15px, 2rem);
	z-index: 3;
	margin-bottom: auto;
}
.service-step .h5 {
	margin-bottom: 0.5em;
}
.service-step img {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-details-block {
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(20px, 5rem) 0;
}
.service-details-block .sec-title .h2 {
	max-width: 15em;
}

.service-details-list {
	margin-bottom: max(40px, 10rem);
}

.service-detail {
	border-bottom: 1px solid var(--line);
	padding: max(15px, 3.5rem) 0;
	display: grid;
	grid-template-columns: 5fr 6fr 1fr;
	gap: 0 20px;
}
@media (max-width: 1024px) {
	.service-detail {
		grid-template-columns: 4fr 7fr 1fr;
	}
}
@media (max-width: 768px) {
	.service-detail {
		grid-template-columns: 1fr 40px;
	}
}
.service-detail .btn-plus {
	margin-left: auto;
}
@media (max-width: 768px) {
	.service-detail .btn-plus {
		order: 2;
	}
}
.service-detail.active .service-detail__main {
	grid-template-rows: 1fr;
}
.service-detail.active .btn-plus {
	rotate: 45deg;
	background: var(--gold95-hover);
	color: var(--gold);
}
@media (max-width: 768px) {
	.service-detail.active .service-detail__content {
		padding-top: 20px;
	}
}
.service-detail:last-child {
	border-bottom: none;
}

.service-detail__left {
	padding-right: 10px;
}
@media (max-width: 768px) {
	.service-detail__left {
		padding-right: 0;
	}
}
@media (max-width: 768px) {
	.service-detail__left {
		order: 1;
	}
}
.service-detail__left .h3 {
	color: var(--gold);
	cursor: pointer;
}

.service-detail__main {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}
@media (max-width: 768px) {
	.service-detail__main {
		order: 3;
		grid-column: span 2;
	}
}

.service-detail__content {
	overflow: hidden;
	counter-reset: sd;
	transition: padding 0.3s ease;
}
@media (max-width: 768px) {
	.service-detail__content {
		padding-top: 0px;
	}
}

.service-detail__item {
	position: relative;
	counter-increment: sd;
	font-size: max(15px, 2rem);
	padding-left: max(30px, 15rem);
	margin-bottom: max(25px, 5rem);
}
.service-detail__item:before {
	content: "(" counter(sd, decimal-leading-zero) ")";
	color: var(--gold);
	position: absolute;
	top: 0.3em;
	left: 0;
	font-size: max(12px, 1.6rem);
}
@media (max-width: 768px) {
	.service-detail__item:before {
		top: 0.2em;
	}
}

.service-prices-block {
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(30px, 6rem) 0;
}

.service-prices__grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 20px;
}
@media (max-width: 768px) {
	.service-prices__grid {
		grid-template-columns: 1fr;
	}
}

.service-prices__left .h2 {
	margin-bottom: 0.5em;
}
.service-prices__left .text-1 {
	color: var(--black-light);
	margin-bottom: max(20px, 4rem);
	max-width: 25em;
}
.service-prices__left .home-prices-left__cta {
	max-width: 420px;
}

.service-prices__right .price-details {
	background: #FFF;
}

.plus-minus-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}
@media (max-width: 768px) {
	.plus-minus-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 480px) {
	.plus-minus-grid {
		grid-template-columns: 1fr;
	}
}

.plus-minus-left {
	display: flex;
	flex-direction: column;
	gap: max(20px, 3rem);
}
@media (max-width: 768px) {
	.plus-minus-left {
		grid-column: span 2;
	}
}
@media (max-width: 480px) {
	.plus-minus-left {
		grid-column: span 1;
	}
}
.plus-minus-left .mini-cta {
	margin-top: auto;
}

.plus-minus-left__descr {
	max-width: 23em;
}

.plus-minus {
	background: var(--gold95);
	border-radius: var(--br-10);
	border: 1px solid var(--gold95-hover);
	padding: max(20px, 6rem) max(15px, 3rem) max(15px, 3rem);
}
.plus-minus--negative .plus-minus__item {
	color: #BA574F;
	background: #E2B9B6;
}

.plus-minus__title {
	margin-bottom: 0.5em;
}

.plus-minus__list {
	display: flex;
	flex-direction: column;
	gap: max(6px, 1rem);
}

.plus-minus__item {
	background: #CBD6C2;
	color: #56A352;
	border-radius: max(10px, 2rem);
	padding: max(6px, 1rem) max(10px, 2rem);
}

.s-doctors-grid {
	padding-top: 20px;
}

.s-intro--doctor {
	background: var(--gradient-1);
	overflow: clip;
}
.s-intro--doctor .intro {
	min-height: min(100svh, 108rem);
}
.s-intro--doctor:before {
	content: "";
	position: absolute;
	left: 40%;
	bottom: 5rem;
	width: 130rem;
	height: 130rem;
	border-radius: 50%;
	opacity: 0.3;
	background: linear-gradient(41deg, #8F7D70 45%, #FFF);
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}
@media (max-width: 768px) {
	.s-intro--doctor:before {
		bottom: -10rem;
		width: 260rem;
		height: 260rem;
		left: 10%;
	}
}
.s-intro--doctor .intro__title .btn-play {
	display: inline-flex;
	vertical-align: middle;
}

.intro__doctor-right {
	align-self: end;
}

.intro__doctor-img {
	display: block;
	width: 100%;
	height: auto;
}

.intro__doctor-params {
	display: flex;
	margin-top: max(30px, 3.5rem);
}

.intro__doctor-param {
	padding: 0 max(15px, 2.5rem);
	border-right: 1px solid var(--line);
}
.intro__doctor-param:last-child {
	padding-right: 0;
	border: none;
}
.intro__doctor-param:first-child {
	padding-left: 0;
}
.intro__doctor-param .text-1 {
	color: var(--gold95);
	margin-bottom: 1em;
}
@media (max-width: 768px) {
	.intro__doctor-param .text-1 {
		margin-bottom: 0.5em;
	}
}
.intro__doctor-param .h5 {
	max-width: 10em;
}

.s-doctor-edu {
	overflow: clip;
}

.doctor-edu-slider {
	overflow: visible;
}
.doctor-edu-slider .swiper-slide {
	display: flex;
	width: max(300px, 85rem);
	height: auto;
}

.doctor-edu {
	display: flex;
	gap: max(20px, 6rem);
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(15px, 2.5rem);
}
@media (max-width: 680px) {
	.doctor-edu {
		flex-direction: column;
	}
}
.doctor-edu img {
	display: block;
	align-self: start;
	width: max(60px, 12.2rem);
	height: auto;
	flex-shrink: 0;
	border-radius: var(--br-10);
}

.doctor-edu__content {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.doctor-edu__content .text-2 {
	color: var(--black-light);
	text-transform: uppercase;
	margin-top: auto;
	padding-top: max(20px, 7rem);
	--min-fz: 12px;
}
.doctor-edu__content .h2 {
	color: var(--gold);
}

.doctor-spec-list {
	counter-reset: ds;
}

.doctor-spec {
	display: grid;
	grid-template-columns: 1fr 5fr 6fr;
	gap: 20px;
	background: var(--gold95);
	border-radius: var(--br-10);
	margin-bottom: max(10px, 1.5rem);
	counter-increment: ds;
	padding: max(20px, 4rem);
}
@media (max-width: 768px) {
	.doctor-spec {
		grid-template-columns: 20px 1fr;
	}
}
.doctor-spec:last-child {
	margin-bottom: 0;
}
.doctor-spec:before {
	content: "(" counter(ds, decimal-leading-zero) ")";
	font-size: max(14px, 1.8rem);
	padding-top: 0.1em;
}
.doctor-spec .user-content-simple {
	max-width: 30em;
}
@media (max-width: 768px) {
	.doctor-spec .user-content-simple {
		grid-column: 2/3;
	}
}

.doctor-spec__left .h3 {
	max-width: 12em;
}
@media (max-width: 768px) {
	.doctor-spec__left .h3 {
		max-width: initial;
	}
}
.doctor-spec__left .btn {
	margin-top: max(20px, 15rem);
}
@media (max-width: 768px) {
	.doctor-spec__left .btn {
		margin-top: 20px;
	}
}

.s-transplant-stars {
	overflow: hidden;
}

.transplant-stars-slider {
	overflow: visible;
}
.transplant-stars-slider .swiper-slide {
	width: max(300px, 52rem);
}

.transfer-steps {
	display: flex;
	gap: max(4px, 1rem);
	counter-reset: steps;
}
@media (max-width: 1024px) {
	.transfer-steps {
		overflow: auto;
		margin-left: -20px;
		margin-right: -20px;
		padding: 0 20px 5px 20px;
	}
}

.transfer-step {
	display: block;
	position: relative;
	flex: 1;
	transition: flex 0.6s ease;
	height: 66rem;
	background: var(--gold);
	color: #FFF;
	border-radius: var(--br-10);
	overflow: clip;
	counter-increment: steps;
}
@media (max-width: 1024px) {
	.transfer-step {
		width: 320px;
		height: 320px;
		flex: initial;
		flex-shrink: 0;
	}
}
.transfer-step:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, #000, transparent 50%) rgba(0, 0, 0, 0.2);
	z-index: 2;
}
.transfer-step.active {
	flex: 8;
	flex-shrink: 0;
}
@media (max-width: 1024px) {
	.transfer-step.active {
		flex: initial;
		flex-shrink: 0;
	}
}
.transfer-step.active .transfer-step__collapse-title {
	opacity: 0;
}
.transfer-step.active .transfer-step__content .h4 {
	opacity: 1;
}
.transfer-step.active .transfer-step__content .text-2 {
	opacity: 1;
}

.transfer-step__img {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.transfer-step__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	bottom: 0;
	width: auto;
	padding: max(15px, 3rem);
}
.transfer-step__content:before {
	content: counter(steps, decimal-leading-zero);
	margin-bottom: auto;
}
.transfer-step__content .h4 {
	width: 15em;
	margin-bottom: 0.5em;
	opacity: 0;
	transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
	.transfer-step__content .h4 {
		width: initial;
		opacity: 1;
	}
}
.transfer-step__content .text-2 {
	width: 33em;
	opacity: 0;
	transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
	.transfer-step__content .text-2 {
		width: initial;
		font-size: 11px;
		opacity: 1;
	}
}

.transfer-step__collapse-title {
	position: absolute;
	z-index: 3;
	bottom: max(15px, 3rem);
	left: 0;
	width: 100%;
	height: 15em;
	display: flex;
	align-items: center;
	writing-mode: sideways-lr;
	opacity: 1;
	transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
	.transfer-step__collapse-title {
		opacity: 0;
	}
}

.s-transplant-intro {
	position: relative;
	overflow: clip;
}

.transplant-intro-bg-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #eee;
	z-index: 1;
}

.transplant-intro-bg {
	height: 100lvh;
	background: var(--gradient-1);
	position: sticky;
	top: 0;
}

.transplant-intro-logo {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 172rem;
	height: auto;
	margin: 0 auto;
}

.transplant-intro-stages {
	position: relative;
	z-index: 10;
}

.transplant-intro-img {
	position: sticky;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100lvh;
	margin-bottom: 30rem;
	-webkit-user-select: none;
	        user-select: none;
}
.transplant-intro-img.active .transplant-intro-img__front {
	opacity: 1;
}
.transplant-intro-img--last {
	margin-bottom: 0;
}

.transplant-intro-img__media {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
}
@media (max-width: 768px) {
	.transplant-intro-img__media {
		width: 100%;
		height: auto;
		aspect-ratio: 1/1;
		object-fit: cover;
		object-position: 87% bottom;
	}
}

.transplant-intro-img__front {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
	opacity: 0;
	transition: opacity 0.6s ease;
}
@media (max-width: 768px) {
	.transplant-intro-img__front {
		width: 100%;
		height: auto;
		aspect-ratio: 1/1;
		object-fit: cover;
		object-position: 87% bottom;
	}
}

.transplant-intro-stages-wrap {
	position: absolute;
	inset: 0;
	z-index: 5;
}

.transplant-intro-stages {
	position: sticky;
	top: 0;
	height: 100svh;
}

.transplant-intro-stage {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #FFF;
	pointer-events: none;
}
.transplant-intro-stage .intro {
	height: 100svh;
}
@media (max-width: 768px) {
	.transplant-intro-stage .intro {
		height: initial;
	}
}
.transplant-intro-stage .intro__descr {
	max-width: 30em;
}
.transplant-intro-stage .intro__left {
	translate: -20% 0;
	opacity: 0;
	transition: translate 0.9s ease, opacity 0.9s ease;
}
.transplant-intro-stage.active {
	opacity: 1;
	pointer-events: all;
}
.transplant-intro-stage.active .intro__left {
	translate: 0 0;
	opacity: 1;
}
.transplant-intro-stage.active .intro-transplant-method {
	opacity: 1;
	translate: 0 0;
}

.transplant-intro-stage--2 .intro__left {
	padding-top: 30rem;
}
@media (max-width: 768px) {
	.transplant-intro-stage--2 .intro__left {
		padding-top: 70px;
	}
}
.transplant-intro-stage--2 .intro__trans2-right {
	padding-top: 30rem;
}
@media (max-width: 768px) {
	.transplant-intro-stage--2 .intro__trans2-right {
		padding-top: initial;
	}
}

.intro__trans2-right {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}
@media (max-width: 768px) {
	.intro__trans2-right {
		justify-content: flex-start;
	}
}

.intro-transplant-methods {
	display: flex;
	gap: max(6px, 1.2rem);
}

.intro-transplant-method {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color: #FFF;
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--br-10);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-bottom: none;
	padding: max(15px, 2.5rem);
	width: max(180px, 27rem);
	min-height: 33rem;
	opacity: 0;
	translate: 0 10%;
	transition: opacity 0.9s ease, translate 0.9s ease;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}
@media (max-width: 768px) {
	.intro-transplant-method {
		width: 150px;
	}
}
.intro-transplant-method:nth-child(2) {
	transition-delay: 0.4s;
}

.intro-transplant-method__label {
	background: var(--gold);
	border-radius: 50px;
	white-space: nowrap;
	padding: 0.4em 1em;
	--min-fz: 10px;
}

.intro-transplant-method__price-title {
	margin-top: auto;
	padding-top: 10px;
}

.intro-transplant-method__price {
	white-space: nowrap;
}
.intro-transplant-method__price small {
	font-size: 0.7em;
}

.transplant-intro-stage--3 .intro__title {
	max-width: 12em;
	text-wrap: pretty;
	margin-bottom: 0.5em;
}
@media (max-width: 768px) {
	.transplant-intro-stage--3 .intro__title {
		margin-bottom: 0.8em;
	}
}

.scroll-icon-wrap {
	position: absolute;
	z-index: 5;
	inset: 0;
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}
@media (max-width: 768px) {
	.scroll-icon-wrap {
		display: none;
	}
}

.scroll-icon {
	position: sticky;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	gap: 0.2em;
	margin: 0 auto;
	color: #FFF;
	text-align: center;
	overflow: clip;
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
	height: 70px;
	top: calc(100% - 70px);
}
.scroll-icon:after {
	content: "";
	display: block;
	width: 1px;
	height: max(20px, 3rem);
	flex-shrink: 0;
	border-right: 1px solid #FFF;
	animation: scrollIconAnim 2s infinite ease;
	transform-origin: center top;
}

@keyframes scrollIconAnim {
	from {
		scale: 1 0;
		transform-origin: center top;
	}
	50% {
		scale: 1 1;
		transform-origin: center top;
	}
	51% {
		scale: 1 1;
		transform-origin: center bottom;
	}
	to {
		scale: 1 0;
		transform-origin: center bottom;
	}
}
.s-intro--blog {
	background: var(--gradient-1);
	overflow: clip;
}
.s-intro--blog:before {
	content: "";
	position: absolute;
	left: 40%;
	bottom: 5rem;
	width: 130rem;
	height: 130rem;
	border-radius: 50%;
	opacity: 0.3;
	background: linear-gradient(41deg, #8F7D70 45%, #FFF);
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}
@media (max-width: 768px) {
	.s-intro--blog:before {
		bottom: -10rem;
		width: 260rem;
		height: 260rem;
		left: 10%;
	}
}

.intro__blog-right {
	position: relative;
	align-self: end;
}

.intro__blog-img {
	display: block;
	width: 70rem;
	height: auto;
}
@media (max-width: 768px) {
	.intro__blog-img {
		width: 160px;
	}
}

.intro__blog-img-descr {
	position: absolute;
	right: 0;
	top: 50%;
}
@media (max-width: 768px) {
	.intro__blog-img-descr {
		top: 25%;
		right: initial;
		left: 120px;
	}
}
.intro__blog-img-descr .h5 {
	max-width: 10em;
	margin-bottom: 0.2em;
}
@media (max-width: 480px) {
	.intro__blog-img-descr .text-2 {
		font-size: 12px;
	}
}

.s-blog {
	padding-top: max(20px, 8rem);
}

.catalog-subtitle {
	margin-bottom: 0.8em;
}
.catalog-subtitle figure {
	display: inline-block;
	vertical-align: top;
	background: var(--gold);
	color: #FFF;
	border-radius: 100px;
	padding: 0.5em 1em;
	font-size: max(10px, 2rem);
	font-weight: 500;
}

.s-blog-params {
	border-top: 1px solid var(--line);
	margin-bottom: max(40px, 5rem);
}

.blog-params {
	display: flex;
}
@media (max-width: 680px) {
	.blog-params {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.blog-param {
	position: relative;
	padding: max(10px, 1.5rem) max(20px, 10rem) 0 max(20px, 4rem);
}
@media (max-width: 680px) {
	.blog-param {
		padding: 0;
		padding-top: 10px;
	}
}
.blog-param:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 5rem;
	width: 1px;
	border-right: 1px solid var(--line);
}
@media (max-width: 680px) {
	.blog-param:before {
		display: none;
	}
}
.blog-param:first-child {
	padding-left: 0;
}
.blog-param:first-child:before {
	border: none;
}

@media (max-width: 680px) {
	.blog-param--authors {
		grid-column: span 3;
	}
}

.blog-param__title {
	color: var(--black-light);
	margin-bottom: 1em;
	line-height: 1.2;
}
@media (max-width: 680px) {
	.blog-param__title {
		margin-bottom: 0.3em;
	}
}

.blog-authors {
	display: flex;
	gap: max(10px, 2rem);
	flex-wrap: wrap;
}

.blog-author {
	display: flex;
	align-items: center;
	gap: max(5px, 1rem);
	line-height: 1.3;
}
.blog-author img {
	width: max(50px, 8rem);
	height: auto;
	aspect-ratio: 8/6;
	object-fit: cover;
	border-radius: 100px;
	flex-shrink: 0;
}
.blog-author .text-3 {
	color: var(--black-light);
}

.s-article-head-img {
	margin-bottom: max(30px, 7rem);
}

.article-head-img {
	position: relative;
	border-radius: var(--br-10);
	overflow: clip;
}
.article-head-img img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--br-10);
}
.article-head-img:after {
	content: "";
	position: absolute;
	z-index: 2;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
}

.s-article {
	overflow: clip;
}

.article-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
	gap: 20px;
}
@media (max-width: 768px) {
	.article-grid {
		display: block;
	}
}

.article-grid__aside {
	position: relative;
	z-index: 2;
	width: max(200px, 30rem);
}
@media (max-width: 768px) {
	.article-grid__aside {
		width: 100%;
		margin-bottom: 30px;
	}
}

.article-menu {
	position: sticky;
	top: 100px;
}
@media (max-width: 1550px) {
	.article-menu {
		top: 70px;
	}
}
@media (max-width: 1250px) {
	.article-menu {
		top: 20px;
	}
}
.article-menu .h5 {
	color: var(--black-lightest);
	margin-bottom: 0.5em;
}
.article-menu ul {
	list-style: none;
	font-size: max(12px, 1.6rem);
}
.article-menu ul li {
	position: relative;
	line-height: 1.2;
	padding: 0.5em 0;
	padding-left: 1.2em;
	border-bottom: 1px solid var(--line);
}
.article-menu ul li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.8em;
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	background: var(--line);
}
.article-menu ul li:last-child {
	border: none;
	padding-bottom: 0;
}
.article-menu ul a {
	color: var(--gold);
	transition: opacity 0.3s ease;
}
@media (hover: hover) {
	.article-menu ul a:hover {
		opacity: 0.7;
	}
}
.article-menu ul a:active {
	opacity: 0.7;
}
.article-menu ul ul {
	padding-left: 1em;
	padding-top: 1em;
}
.article-menu ul ul li {
	border: none;
	padding: 0;
	margin-bottom: 0.5em;
}
.article-menu ul ul li:before {
	display: none;
}

.article-grid__main {
	grid-column: 2/3;
}
.article-grid__main .user-content {
	width: max(600px, 99rem);
}
@media (max-width: 1024px) {
	.article-grid__main .user-content {
		width: 100%;
	}
}
.article-grid__main h2, .article-grid__main h3 {
	scroll-margin-top: 100px;
}
@media (max-width: 1250px) {
	.article-grid__main h2, .article-grid__main h3 {
		scroll-margin-top: 20px;
	}
}

.article-block {
	margin: max(30px, 5rem) 0;
}
.article-block--big-pad {
	margin: max(50px, 10rem) 0;
}
.article-block:first-child {
	margin-top: 0;
}
.article-block:last-child {
	margin-bottom: 0;
}

.article-block--marked {
	width: 100%;
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(15px, 3rem);
}

.article-panels {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gap);
}
@media (max-width: 768px) {
	.article-panels {
		grid-template-columns: 1fr;
	}
}

.article-panel {
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(15px, 3rem);
}
.article-panel--red {
	background: #E9E2E2;
}
.article-panel--red .article-panel__title {
	color: #BA574F;
}

.article-panel__top {
	margin-bottom: 1.6em;
	text-transform: uppercase;
	color: var(--gold);
}

.article-panel__title {
	margin-bottom: 1em;
}

.article-panel__descr {
	color: var(--black-light);
}
.article-panel__descr.user-content {
	width: 100%;
}

.article-img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	background: var(--gold95);
	border-radius: var(--br-10);
}

.article-text-img {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 35px;
}
@media (max-width: 680px) {
	.article-text-img {
		grid-template-columns: 1fr;
	}
}
.article-text-img .user-content {
	width: auto;
}
.article-text-img img {
	display: block;
	width: 100%;
	height: auto;
	background: var(--gold95);
}
@media (max-width: 680px) {
	.article-text-img img {
		order: -1;
	}
}
.article-text-img--left img {
	order: -1;
}

.article-consult {
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(15px, 3rem);
}

.article-consult__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 20px;
	margin-bottom: max(20px, 7rem);
}
@media (max-width: 480px) {
	.article-consult__top {
		grid-template-columns: 1fr;
	}
}
.article-consult__top .text-3 {
	color: var(--black-light);
}

.article-video-iframe {
	position: relative;
	aspect-ratio: 16/9;
	border-radius: var(--br-10);
	overflow: clip;
	background: var(--gold95);
}
.article-video-iframe iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.article-slider .swiper-slide {
	transition: opacity 0.3s ease;
}
.article-slider .swiper-slide.invisible {
	opacity: 0;
}
@media (max-width: 768px) {
	.article-slider .swiper-slide.invisible {
		opacity: 1;
	}
}

.article-note {
	--note-text-color: var(--black-light);
	--note-titles-color: var(--black);
	position: relative;
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(15px, 3rem);
	color: var(--note-text-color);
	overflow: clip;
}
.article-note :is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) {
	color: var(--note-titles-color);
	margin-top: max(30px, 4rem);
}
.article-note .user-content {
	max-width: calc(100% - 20rem);
	position: relative;
	z-index: 2;
}
@media (max-width: 768px) {
	.article-note .user-content {
		max-width: initial;
	}
}
.article-note--green {
	--note-text-color: #56A352;
	--note-titles-color: #56A352;
	background: #E5EAE0;
}
.article-note--green ul, .article-note--green ol {
	--ul-dots-color: #56A352;
}
.article-note--red {
	--note-text-color: #BA574F;
	--note-titles-color: #BA574F;
	background: #E9E2E2;
}
.article-note--red ul, .article-note--red ol {
	--ul-dots-color: #BA574F;
}

.article-note__top {
	margin-bottom: 1.6em;
	text-transform: uppercase;
	color: var(--gold);
}

.article-note__icon {
	position: absolute;
	width: 24.4rem;
	height: auto;
	aspect-ratio: 1/1;
	top: max(20px, 4rem);
	right: min(-30px, -6rem);
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}
@media (max-width: 768px) {
	.article-note__icon {
		top: -20px;
		right: -10px;
		width: 70px;
	}
}

.article-cite {
	position: relative;
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(15px, 3rem);
	color: var(--note-text-color);
	overflow: clip;
}
.article-cite :is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) {
	color: var(--note-titles-color);
	margin-top: max(30px, 4rem);
}
.article-cite .user-content {
	max-width: calc(100% - 20rem);
	position: relative;
	z-index: 2;
}
@media (max-width: 768px) {
	.article-cite .user-content {
		max-width: initial;
	}
}
.article-cite .blog-author {
	margin-top: max(20px, 4rem);
}

.article-cite__top {
	margin-bottom: 1.6em;
	text-transform: uppercase;
	color: var(--gold);
}

.article-cite__icon {
	position: absolute;
	width: 24.4rem;
	height: auto;
	aspect-ratio: 1/1;
	top: max(20px, 4rem);
	right: 0;
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}
@media (max-width: 768px) {
	.article-cite__icon {
		top: -8px;
		right: -8px;
		width: 70px;
	}
}

.intro__cases-right {
	padding-top: 25rem;
	padding-bottom: max(20px, 4rem);
}
@media (max-width: 1250px) {
	.intro__cases-right {
		padding-top: max(70px, 15rem);
	}
}
@media (max-width: 768px) {
	.intro__cases-right {
		padding-top: 0;
	}
}

.intro__cases-facts {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: max(5px, 2rem);
}
@media (max-width: 480px) {
	.intro__cases-facts {
		grid-template-columns: 1fr 1fr;
	}
}
.intro__cases-facts--reviews {
	padding-left: 8rem;
}
@media (max-width: 1550px) {
	.intro__cases-facts--reviews {
		padding-left: 12rem;
	}
}
@media (max-width: 1250px) {
	.intro__cases-facts--reviews {
		padding-left: initial;
	}
}

.intro__cases-fact {
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-bottom: none;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: var(--br-10);
	padding: max(10px, 2rem);
	min-height: 33rem;
}
@media (max-width: 480px) {
	.intro__cases-fact:last-child {
		grid-column: span 2;
	}
}
.intro__cases-fact .h1 {
	white-space: nowrap;
	line-height: 1;
	--min-fz: 22px;
}
.intro__cases-fact .h5 {
	--min-fz: 13px;
}
.intro__cases-fact .text-2 {
	margin-top: auto;
	padding-top: 20px;
	color: var(--black-light);
	max-width: 12em;
	--min-fz: 12px;
}

@media (max-width: 768px) {
	.intro__cases-fact--reviews {
		grid-column: span 2;
	}
}
.intro__cases-fact--reviews .text-2 {
	color: #FFF;
	max-width: initial;
}

.s-cases-grid {
	padding-top: max(20px, 8rem);
}

.s-intro--case {
	background: #FFF;
	color: var(--black);
	overflow: clip;
}
.s-intro--case .intro__left {
	padding-right: 30px;
}
.s-intro--case .intro__descr {
	max-width: 35em;
}

.intro__case-img {
	display: block;
	width: 50vw;
	aspect-ratio: 960/1080;
	max-height: 100vh;
	object-fit: cover;
	border-radius: var(--br-10) 0 0 var(--br-10);
	background: var(--gold95);
}
@media (max-width: 768px) {
	.intro__case-img {
		border-radius: var(--br-10);
	}
}
@media (max-width: 480px) {
	.intro__case-img {
		width: calc(100% + 30px);
		margin-left: -15px;
		margin-right: -15px;
	}
}

.intro__case-params {
	display: flex;
	border-top: 1px solid var(--line);
	margin-top: max(30px, 5rem);
}

.intro__case-param {
	position: relative;
	padding: max(5px, 1.5rem) max(10px, 3rem) 0 max(10px, 2rem);
}
.intro__case-param .text-4 {
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 0.3em;
	--min-fz: 10px;
}
.intro__case-param .h4 {
	--min-fz: 16px;
}
.intro__case-param:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 1;
	height: max(10px, 2rem);
	border-right: 1px solid var(--line);
}
.intro__case-param:first-child {
	padding-left: 0;
}
.intro__case-param:first-child:before {
	display: none;
}
.intro__case-param:last-child {
	padding-right: 0;
}

.case-about-block {
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(25px, 6rem) 0;
}

.case-about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
@media (max-width: 768px) {
	.case-about {
		grid-template-columns: 1fr;
	}
}

.case-about--5-7 {
	grid-template-columns: 5fr 7fr;
}
@media (max-width: 768px) {
	.case-about--5-7 {
		grid-template-columns: 1fr;
	}
}

.case-about__left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}
.case-about__left .case-media {
	margin-top: auto;
}
.case-about__left .intro-connect {
	margin-top: auto;
	background: var(--gold95-hover);
}

.case-about__title {
	margin-bottom: 0.5em;
	max-width: 16em;
}

.case-media {
	display: flex;
	align-items: flex-end;
	gap: max(10px, 2rem);
}
.case-media .btn-play + .case-media__descr {
	padding-top: 0.5em;
}

.case-media__preview {
	border-radius: var(--br-10);
	width: max(160px, 35rem);
	height: auto;
	aspect-ratio: 16/9;
	object-fit: cover;
	background: var(--gold95);
	transition: scale 0.3s ease;
}
.case-media__preview--vertical {
	aspect-ratio: 2/3;
	width: max(120px, 25rem);
}

.case-media__descr {
	max-width: 15em;
	--min-fz: 12px;
}

.case-media.fancy-video {
	cursor: pointer;
}
@media (hover: hover) {
	.case-media.fancy-video:hover .case-media__preview {
		scale: 1.02;
	}
}
.case-media.fancy-video:active .case-media__preview {
	scale: 1.02;
}

.case-about__right .user-content {
	max-width: 38em;
}

.case-about__num-list {
	counter-reset: ca;
	font-size: max(var(--min-fz, 15px), 2rem);
}

.case-about__num-item {
	display: flex;
	gap: 6rem;
	position: relative;
	padding: max(20px, 4rem) 0;
	border-bottom: 1px solid var(--line);
	counter-increment: ca;
	padding-right: 10rem;
}
@media (max-width: 768px) {
	.case-about__num-item {
		padding-right: 0;
	}
}
.case-about__num-item:first-child {
	margin-top: calc(max(20px, 4rem) * -1);
}
.case-about__num-item:last-child {
	padding-bottom: 0;
	border: none;
}
.case-about__num-item:before {
	content: "(" counter(ca, decimal-leading-zero) ")";
	font-size: max(var(--min-fz, 12px), 1.6rem);
	color: var(--gold);
}

.s-case-photo-slider {
	overflow: clip;
}

.s-case-targets {
	overflow: clip;
}

.case-targets-slider {
	overflow: visible;
	counter-reset: case-t;
}
.case-targets-slider .swiper-slide {
	width: max(240px, 46rem);
}

.case-target {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	counter-increment: case-t;
	border-radius: var(--br-10);
	background: var(--gradient-1);
	color: #FFF;
	padding: max(15px, 3rem);
	min-height: max(200px, 38rem);
}
.case-target:before {
	content: counter(case-t, decimal-leading-zero);
	font-size: max(50px, 10rem);
	font-weight: 300;
	line-height: 1;
	background: radial-gradient(circle 1em at 100% 0, #E1DCD9, var(--services));
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	align-self: start;
}

.s-reviews-grid {
	padding-top: max(20px, 8rem);
}

.reviews-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: max(5px, 4rem);
}
@media (max-width: 768px) {
	.reviews-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}
@media (max-width: 480px) {
	.reviews-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.review {
	display: block;
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	        user-select: none;
	border-radius: var(--br-10);
	overflow: clip;
	box-shadow: 0 0 0 2px var(--gold95);
}
@media (hover: hover) {
	.review:hover:after {
		opacity: 0.1;
	}
}
.review:active:after {
	opacity: 0.2;
}
.review .btn-play {
	position: absolute;
	z-index: 3;
	bottom: max(8px, 1.5rem);
	right: max(8px, 1.5rem);
}
.review:after {
	content: "";
	position: absolute;
	z-index: 2;
	inset: 0;
	opacity: 0;
	background: rgb(0, 0, 0);
	transition: opacity 0.3s ease;
}
.review.fancy-video .review__img {
	object-fit: cover;
}

.review__img {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	aspect-ratio: 400/540;
	object-fit: contain;
}

.s-reviews-slider {
	overflow: clip;
}

.reviews-slider {
	overflow: visible;
}
@media (max-width: 1024px) {
	.reviews-slider .swiper-slide {
		width: 240px;
	}
}

.s-intro--stars {
	background: var(--gradient-2);
	overflow: clip;
}
.s-intro--stars .intro {
	min-height: min(100svh, 108rem);
}
.s-intro--stars .intro__left {
	z-index: 2;
}

.intro__stars-right {
	align-self: end;
}

.intro__stars-img {
	display: block;
	width: 142rem;
	height: auto;
	margin-left: -30rem;
	-webkit-user-select: none;
	        user-select: none;
	pointer-events: none;
}
@media (max-width: 768px) {
	.intro__stars-img {
		margin-left: initial;
		width: 100%;
		margin-left: -20rem;
		width: calc(100% + 40rem);
	}
}

.stars-previews-wide-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: max(30px, 8rem) var(--gap);
}
@media (max-width: 680px) {
	.stars-previews-wide-grid {
		grid-template-columns: 1fr;
	}
}

.star-preview-wide {
	display: block;
}
@media (hover: hover) {
	.star-preview-wide:hover .star-preview-wide__media:after {
		opacity: 0.3;
	}
	.star-preview-wide:hover .star-preview-wide__title {
		color: var(--gold);
	}
}
.star-preview-wide:active .star-preview-wide__media:after {
	opacity: 0.3;
}
.star-preview-wide:active .star-preview-wide__title {
	color: var(--gold);
}

.star-preview-wide__media {
	position: relative;
	border-radius: var(--br-10);
	overflow: clip;
	aspect-ratio: 850/455;
}
.star-preview-wide__media:after {
	content: "";
	position: absolute;
	inset: 0;
	background: #000;
	opacity: 0.1;
	transition: opacity 0.3s ease;
	z-index: 2;
}

.star-preview-wide__img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 850/455;
	object-fit: cover;
}

.star-preview-wide__bottom {
	display: flex;
	align-items: flex-start;
	gap: max(15px, 5rem);
	margin: max(5px, 1.8rem);
	margin-bottom: 0;
}
.star-preview-wide__bottom .btn-play {
	margin-left: auto;
}

.star-preview-wide__title {
	transition: color 0.3s ease;
}

.star-preview-wide__descr {
	max-width: 20em;
	color: var(--black-light);
}

.s-stories {
	overflow: hidden;
}

.stories-slider {
	overflow: visible;
}
.stories-slider .swiper-slide {
	width: max(300px, 40rem);
}

.story {
	display: block;
	position: relative;
	border-radius: var(--br-10);
	overflow: clip;
	transform: translateZ(0px);
	color: #FFF;
	background: var(--black);
	cursor: pointer;
}
@media (hover: hover) {
	.story:hover:after {
		opacity: 0.1;
	}
}
.story:before {
	content: "";
	position: absolute;
	z-index: 4;
	bottom: 0;
	left: 0;
	right: 0;
	height: 30%;
	background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
}
.story:after {
	content: "";
	position: absolute;
	z-index: 10;
	inset: 0;
	background: #000;
	opacity: 0.2;
	transition: opacity 0.3s ease;
}
.story.is-play .story__cover {
	opacity: 0;
}
.story.is-play:after {
	opacity: 0;
	pointer-events: none;
}
.story.is-disabled:after {
	opacity: 0.5;
}

.story__cover {
	position: relative;
	z-index: 2;
	opacity: 1;
	aspect-ratio: 400/650;
	transition: opacity 0.6s ease;
}

.story__cover__img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 400/650;
	object-fit: cover;
}

.story__top {
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	right: 0;
	padding: max(15px, 2rem);
}

.story__timeline {
	display: block;
	position: relative;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background: rgba(0, 0, 0, 0.3);
	margin-bottom: max(7px, 1rem);
}

.story__progress {
	position: absolute;
	left: 0;
	top: 0;
	background: #FFF;
	height: 2px;
	border-radius: 2px;
	width: var(--progress);
	transition: width 0.3s linear;
}

.story__logo {
	display: flex;
	align-items: center;
	gap: max(12px, 1.5rem);
}

.story__logo__img {
	width: max(35px, 5rem);
	border-radius: 50%;
	flex-shrink: 0;
}

.story__bottom {
	position: absolute;
	z-index: 5;
	bottom: 0;
	left: 0;
	right: 0;
	padding: max(15px, 2rem);
}

.story__bottom__name {
	margin-bottom: 0.3em;
}

.story__bottom__descr {
	color: #B9B0A8;
}

.story__video {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story__volume {
	position: absolute;
	top: max(20px, 3.8rem);
	right: max(10px, 2rem);
	z-index: 5;
	width: 35px;
	height: 35px;
}
.story__volume--muted .story__vol--muted {
	opacity: 1;
}
.story__volume--muted .story__vol--not-muted {
	opacity: 0;
}

.story__vol {
	position: absolute;
	width: 100%;
	height: auto;
}

.story__vol--muted {
	opacity: 0;
}

.story__vol--not-muted {
	opacity: 1;
}

.faq-cat {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 20px;
	padding: max(50px, 12rem) 0;
}
@media (max-width: 680px) {
	.faq-cat {
		grid-template-columns: 1fr;
	}
}

.faq-cat__left {
	position: relative;
}

.faq-cat__title {
	position: sticky;
	top: 100px;
}

.faq-items {
	counter-reset: faq;
}

.faq-item {
	display: grid;
	grid-template-columns: 28rem 1fr max(45px, 8rem);
	gap: 20px;
	padding: max(15px, 6rem) 0;
	border-bottom: 1px solid var(--line);
	counter-increment: faq;
}
@media (max-width: 680px) {
	.faq-item {
		grid-template-columns: 25px 1fr max(45px, 8rem);
		gap: 15px;
	}
}
@media (hover: hover) {
	.faq-item:hover .btn {
		--btn-color: #FFF;
		--btn-bg: var(--gold);
		--btn-border: var(--gold);
	}
}
.faq-item:active .btn {
	--btn-color: #FFF;
	--btn-bg: var(--gold);
	--btn-border: var(--gold);
}
.faq-item:first-child {
	padding-top: 0;
}
.faq-item:last-child {
	padding-bottom: 0;
	border: none;
}
.faq-item:before {
	content: counter(faq, decimal-leading-zero) "/";
	color: var(--black-lightest);
	font-size: max(var(--min-fz, 12px), 1.8rem);
}
.faq-item .h4 {
	color: var(--gold);
	--min-fz: 16px;
}
.faq-cta {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	border-radius: var(--br-10);
	background: var(--gradient-1);
	color: #FFF;
	padding: max(35px, 7rem) max(15px, 3rem);
}
@media (max-width: 768px) {
	.faq-cta {
		flex-direction: column;
		align-items: center;
		text-align: center;
		justify-content: center;
		gap: 10px;
	}
}
.faq-cta .h2 {
	width: 9em;
	flex-shrink: 0;
}
@media (max-width: 768px) {
	.faq-cta .h2 {
		width: 100%;
	}
}
.faq-cta .text-1 {
	max-width: 21em;
}
@media (max-width: 768px) {
	.faq-cta .text-1 {
		max-width: 30em;
	}
}

.faq-cta__socs {
	display: flex;
	align-items: center;
	gap: max(5px, 2rem);
	margin-left: auto;
}
@media (max-width: 768px) {
	.faq-cta__socs {
		margin-left: initial;
	}
}
.faq-cta__socs .round-soc {
	--color-icon: #FFF;
	--color-bg: transparent;
	--color-border: #FFF;
	--color-icon--hover: var(--gold);
	--color-bg--hover: #FFF;
	--color-border--hover: #FFF;
	--size: max(50px, 15rem);
	margin-right: initial;
}

.blog-params--faq {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 20px;
}
@media (max-width: 680px) {
	.blog-params--faq {
		display: flex;
		flex-direction: column;
	}
}
.faq-related__title {
	margin-bottom: 1em;
}

.s-about-intro {
	display: flex;
	min-height: min(100svh, 108rem);
	background: var(--gradient-1);
	padding-bottom: max(30px, 6rem);
	padding-top: max(100px, 20rem);
	color: #FFF;
}
@media (max-width: 680px) {
	.s-about-intro {
		min-height: 80svh;
	}
}
.s-about-intro .container {
	z-index: 2;
	display: grid;
	place-items: end start;
}

.s-about-intro__img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.s-about-intro__title {
	max-width: 13em;
}

.about-dir {
	position: relative;
	background: var(--services);
	border-radius: var(--br-10);
	overflow: clip;
	color: #FFF;
}

.about-dir__img {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
@media (max-width: 1250px) {
	.about-dir__img {
		width: 90%;
	}
}
@media (max-width: 768px) {
	.about-dir__img {
		position: relative;
		width: 150%;
		left: -25%;
	}
}

.about-dir__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	position: relative;
	z-index: 2;
	padding: max(30px, 8rem) 0 max(25px, 5rem);
	min-height: 103rem;
}
@media (max-width: 768px) {
	.about-dir__grid {
		grid-template-columns: 1fr;
	}
}

.about-dir__left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.about-dir__top .h2 {
	margin-bottom: 0.5em;
}

@media (max-width: 768px) {
	.about-dir__name {
		display: none;
	}
}
.about-dir__name .h5 {
	max-width: 10em;
	margin-bottom: 0.3em;
}

.about-dir__video {
	display: flex;
	align-items: flex-end;
	gap: max(10px, 2rem);
}

.about-dir__video__stage {
	position: relative;
	border-radius: var(--br-10);
	overflow: clip;
	width: max(100px, 20rem);
	cursor: pointer;
}
@media (hover: hover) {
	.about-dir__video__stage:hover:after {
		opacity: 0.3;
	}
}
.about-dir__video__stage:active:after {
	opacity: 0.4;
}
.about-dir__video__stage:after {
	content: "";
	position: absolute;
	inset: 0;
	background: #000;
	opacity: 0.2;
	transition: opacity 0.3s ease;
}
.about-dir__video__stage .btn-play {
	position: absolute;
	z-index: 3;
	bottom: 10px;
	right: 10px;
}

.about-dir__video__cover {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 200/280;
	object-fit: cover;
}

.about-dir__video__title {
	margin-bottom: 0.5em;
	max-width: 10em;
}

.about-dir__video__dur {
	color: var(--line);
}

.about-dir__right {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-end;
	grid-column: 3/4;
}
@media (max-width: 768px) {
	.about-dir__right {
		grid-column: initial;
		align-items: flex-start;
	}
}
@media (max-width: 768px) {
	.about-dir__right .about-dir__top .h2 {
		display: none;
	}
}

.about-dir__write {
	margin-top: auto;
}
.about-dir__write .text-2 {
	margin-bottom: 1em;
	max-width: 22em;
}

.about-mission {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	background: var(--gradient-1);
	border-radius: var(--br-10);
	color: #FFF;
	padding: max(30px, 6rem);
	min-height: 59rem;
	overflow: clip;
}
.about-mission .text-1 {
	text-transform: uppercase;
	margin-bottom: 2em;
	position: relative;
	z-index: 2;
}
.about-mission .h1 {
	max-width: 15em;
	position: relative;
	z-index: 2;
	--min-fz: 23px;
}
.about-mission img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-mission__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
}

.about-mission__canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
}

.about-facts__grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 40px 20px;
}
@media (max-width: 768px) {
	.about-facts__grid {
		grid-template-columns: 1fr;
	}
}

.about-facts__left {
	display: flex;
	flex-direction: column;
	padding-right: 10px;
}
.about-facts__left .h2 {
	margin-bottom: 0.3em;
}

.about-facts__prizes {
	display: flex;
	gap: max(20px, 4rem);
	padding-top: 40px;
	margin-top: auto;
}

.about-facts__prizes__big {
	display: block;
	width: max(100px, 20rem);
	height: auto;
	aspect-ratio: 200/387;
}

.about-facts__prizes__small {
	width: max(100px, 17.2rem);
	height: auto;
	display: block;
	aspect-ratio: 172/168;
	margin-bottom: max(15px, 3rem);
}

.about-facts__prizes__right .text-3 {
	max-width: 18em;
}
.about-facts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: max(40px, 10rem) 20px;
	align-self: start;
}
.about-fact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 36rem;
}
@media (hover: hover) {
	.about-fact:hover strong {
		color: var(--gold);
	}
	.about-fact:hover .btn {
		grid-template-columns: 1fr auto;
		gap: max(10px, 2rem);
	}
}
.about-fact strong {
	font-weight: normal;
	font-size: max(30px, 12rem);
	line-height: 1;
	transition: color 0.3s ease;
	margin-bottom: 0.1em;
}
.about-fact .btn {
	margin-top: auto;
}

.about-fact__head {
	position: relative;
	border-bottom: 1px solid var(--line);
	text-transform: uppercase;
	color: var(--black-light);
	padding-bottom: max(10px, 3rem);
	padding-left: 1.5em;
	margin-bottom: 1em;
	width: 100%;
}
.about-fact__head:before {
	content: "";
	position: absolute;
	top: 0.5em;
	left: 0;
	width: 0.4em;
	height: 0.4em;
	border-radius: 50%;
	background: var(--gold);
}

.about-fact__descr {
	max-width: 30em;
	margin-bottom: 1em;
}

.about-docs-panel {
	overflow: clip;
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(30px, 6rem) 0;
}

.about-docs-slider {
	overflow: visible;
}
.about-docs-slider .swiper-slide {
	width: max(200px, 35rem);
}

.about-doc {
	cursor: pointer;
}
@media (hover: hover) {
	.about-doc:hover img {
		opacity: 0.9;
	}
	.about-doc:hover .text-3 {
		color: var(--gold);
	}
}
.about-doc img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 700/1000;
	object-fit: cover;
	background: #FFF;
	border-radius: var(--br-10);
	margin-bottom: max(10px, 2rem);
	transition: opacity 0.3s ease;
}
.about-doc .text-3 {
	color: var(--black-light);
	transition: color 0.3s ease;
	--min-fz: 10px;
}

.patients-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: var(--gap);
	grid-auto-flow: dense;
	counter-reset: pat;
}

.pat {
	display: flex;
	position: relative;
	grid-column: span 4;
	border-radius: var(--br-10);
	overflow: clip;
	background: var(--gradient-1);
	color: #FFF;
	border: 1px solid var(--gold95-hover);
	counter-increment: pat;
	min-height: max(300px, 45rem);
	cursor: pointer;
}
@media (max-width: 768px) {
	.pat {
		grid-column: span 6;
	}
}
@media (max-width: 480px) {
	.pat {
		grid-column: span 12;
	}
}
@media (hover: hover) {
	.pat:hover .btn {
		grid-template-columns: 1fr auto;
		gap: max(10px, 2rem);
	}
}
.pat img {
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	width: 100%;
	height: auto;
	aspect-ratio: 560/450;
}
@media (max-width: 768px) {
	.pat img {
		height: 150px;
		width: auto;
	}
}
.pat:nth-child(4) .text-2 {
	max-width: 15em;
}
.pat .consult-block-alt__tg-stage {
	margin: initial;
	align-self: center;
	margin-top: auto;
}
@media (max-width: 480px) {
	.pat .consult-block-alt__tg-stage {
		margin-top: 10px;
	}
}
.pat .consult-block-alt__tg-stage .consult-block-alt__tg-stage-item {
	font-size: max(10px, 1.8rem);
	width: max(200px, 40rem);
	max-width: 100%;
}
.pat .consult-block-alt__tg-stage .consult-block-alt__tg-stage-item.prev {
	opacity: 1;
	scale: 0.9;
	translate: 0 max(10px, 2rem);
	z-index: 9;
}
.pat .consult-block-alt__tg-stage .consult-block-alt__tg-stage-item.prev + .prev {
	opacity: 1;
	scale: 0.8;
	translate: 0 max(20px, 4rem);
	z-index: 8;
}
.pat .consult-block-alt__tg-stage .consult-block-alt__tg-stage-item.prev + .prev + .prev {
	opacity: 1;
	scale: 0.7;
	translate: 0 max(30px, 6rem);
	z-index: 7;
}

.pat--wide {
	grid-column: span 6;
	min-height: max(300px, 50rem);
}
@media (max-width: 480px) {
	.pat--wide {
		grid-column: span 12;
	}
}
.pat--wide img {
	aspect-ratio: 850/500;
}

.pat--tall {
	grid-row: span 2;
}
@media (max-width: 480px) {
	.pat--tall {
		grid-row: span 1;
		min-height: 350px;
	}
}

.pat--white {
	color: var(--black);
	background: var(--gold95);
}
.pat--white .pat-content:before, .pat--white .pat-content .text-2 {
	color: var(--black-light);
}

.pat--gray {
	background: var(--line);
	color: var(--black);
}
.pat--gray .pat-content:before {
	color: var(--black-light);
}

.pat-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	z-index: 2;
	gap: max(10px, 3rem);
	padding: max(15px, 3rem);
	width: 100%;
}
.pat-content:before {
	content: "(" counter(pat, decimal-leading-zero) ")";
	font-size: max(var(--min-fz, 12px), 1.8rem);
}
.pat-content .btn {
	margin-top: auto;
}
.pat-content .h4 {
	max-width: 11em;
	--min-fz: 16px;
}
.pat-content .text-2 {
	max-width: 21em;
	--min-fz: 12px;
}

.credit-why-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--gap);
	counter-reset: cw;
}
@media (max-width: 1024px) {
	.credit-why-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 480px) {
	.credit-why-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

.credit-why {
	display: flex;
	flex-direction: column;
	position: relative;
	background: var(--services);
	color: #FFF;
	border-radius: var(--br-10);
	overflow: clip;
	counter-increment: cw;
	padding: max(15px, 3rem);
}
.credit-why:before {
	content: counter(cw);
	font-size: max(100px, 20rem);
	line-height: 0.8;
	font-weight: 300;
	margin-bottom: 0.2em;
	align-self: start;
	background: radial-gradient(circle 1em at 100% 0, #E1DCD9, var(--services));
	color: transparent;
	-webkit-background-clip: text;
	        background-clip: text;
	position: relative;
	z-index: 2;
}
.credit-why:after {
	content: "";
	position: absolute;
	width: max(300px, 50rem);
	height: max(300px, 50rem);
	border-radius: 50%;
	opacity: 0.3;
	background: linear-gradient(41deg, #8F7D70 50%, #FFF);
	pointer-events: none;
	-webkit-user-select: none;
	        user-select: none;
}
.credit-why .h4 {
	margin-bottom: 0.5em;
	position: relative;
	z-index: 2;
}
.credit-why .text-2 {
	position: relative;
	z-index: 2;
}
.credit-why:nth-child(4n+1):after {
	left: -40%;
	bottom: -15%;
}
.credit-why:nth-child(4n+2):after {
	left: 20%;
	bottom: -10%;
}
.credit-why:nth-child(4n+3):after {
	left: -13%;
	top: -40%;
}
.credit-why:nth-child(4n+4):after {
	left: -10%;
	bottom: -41%;
}

.credit-blocks {
	display: flex;
	flex-direction: column;
	align-items: center;
	counter-reset: cred;
}
@media (max-width: 480px) {
	.credit-blocks {
		margin-left: -15px;
		margin-right: -15px;
	}
}

.credit-block {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 20px;
	position: relative;
	padding: max(15px, 5rem);
	padding-bottom: max(50px, 10rem);
	background: var(--gold95);
	border-radius: var(--br-10);
	box-shadow: 0 max(7px, 1.5rem) max(25px, 5rem) 0 rgba(144, 125, 111, 0.5);
	width: 100%;
	margin-bottom: -10px;
	counter-increment: cred;
	overflow: clip;
}
@media (max-width: 1024px) {
	.credit-block {
		grid-template-columns: 1fr 3fr;
	}
}
@media (max-width: 768px) {
	.credit-block {
		grid-template-columns: 1fr;
	}
}
.credit-block:nth-child(1) {
	width: calc(100% - 6rem);
}
@media (max-width: 480px) {
	.credit-block:nth-child(1) {
		width: 100%;
	}
}
.credit-block:nth-child(2) {
	width: calc(100% - 3rem);
}
@media (max-width: 480px) {
	.credit-block:nth-child(2) {
		width: 100%;
	}
}
.credit-block:after {
	content: "(" counter(cred, decimal-leading-zero) ")";
	position: absolute;
	top: max(20px, 5rem);
	right: max(20px, 4rem);
	font-size: max(var(--min-fz, 16px), 2.8rem);
	color: var(--gold);
}

.credit-block__title {
	padding-right: 50px;
}

.credit-block__services {
	display: flex;
	flex-wrap: wrap;
	gap: max(5px, 1rem);
	padding-right: 60px;
}
@media (max-width: 768px) {
	.credit-block__services {
		padding-right: 0;
	}
}
.credit-block__services .btn {
	--btn-border: rgba(38, 38, 38, 0.50);
}
.credit-block__services .btn.active {
	--btn-color: #FFF;
	--btn-bg: var(--gold);
	--btn-border: var(--gold);
}

.credit-block__results {
	display: grid;
	grid-template-columns: 2fr 1.2fr 5fr;
	margin-top: max(40px, 7rem);
	border-top: 1px solid var(--gold);
}
@media (max-width: 1250px) {
	.credit-block__results {
		grid-template-columns: 2fr 1fr 220px;
	}
}
@media (max-width: 768px) {
	.credit-block__results {
		grid-template-columns: 2fr 1fr;
		gap: 20px;
	}
}
@media (max-width: 768px) {
	.credit-block__results {
		margin-top: 0;
		border: none;
	}
}

.credit-block__result {
	position: relative;
	padding: max(10px, 1.2rem) 10px 0 max(10px, 3rem);
}
@media (max-width: 768px) {
	.credit-block__result {
		padding: 0;
	}
}
.credit-block__result:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 30px;
	width: 1px;
	border-right: 1px solid var(--gold);
}
@media (max-width: 768px) {
	.credit-block__result:before {
		display: none;
	}
}
.credit-block__result:first-child {
	padding-left: 0;
}
.credit-block__result:first-child:before {
	display: none;
}
.credit-block__result:last-child {
	padding-right: 0;
}
@media (max-width: 768px) {
	.credit-block__result:last-child {
		grid-column: span 2;
	}
}

.credit-block__result__title {
	color: var(--black-light);
	margin-bottom: 1em;
	white-space: nowrap;
	--min-fz: 12px;
}
@media (max-width: 768px) {
	.credit-block__result__title {
		margin-bottom: 0.3em;
	}
}

.credit-block__result__service {
	color: var(--gold);
}

.credit-block__result__dur {
	color: var(--gold);
	line-height: 1;
}

.credit-block__result-send {
	display: flex;
	align-items: center;
	gap: 7px max(10px, 2rem);
	padding-top: 4.2rem;
}
@media (max-width: 1250px) {
	.credit-block__result-send {
		flex-direction: column;
		align-items: flex-start;
		padding-top: 0;
	}
}
@media (max-width: 768px) {
	.credit-block__result-send {
		align-items: stretch;
	}
}
.credit-block__result-send .text-3 {
	color: var(--black-light);
	max-width: 25em;
}

.credit-block__dur {
	position: relative;
	margin-top: max(90px, 13rem);
	z-index: 2;
	padding-right: 40px;
}
@media (max-width: 768px) {
	.credit-block__dur {
		padding: 0 25px;
		margin-top: 50px;
	}
}
.credit-block__dur .rs-bg {
	height: 6px;
	background: var(--line);
	border-radius: 5px;
}
.credit-block__dur .rs-selected {
	background: var(--gold);
	border: none;
	border-radius: 5px;
	height: 6px;
	z-index: 2;
}
.credit-block__dur .rs-scale {
	display: flex;
}
.credit-block__dur .rs-scale span {
	cursor: pointer;
}
.credit-block__dur .rs-scale span:before {
	width: 6px;
	height: 6px;
	background: var(--gold95);
	border-radius: 50%;
	top: 0;
}
.credit-block__dur .rs-scale span ins {
	font-size: 15px;
	color: var(--gold);
	font-weight: 500;
}
.credit-block__dur .rs-scale span ins:after {
	content: " мес";
}
.credit-block__dur .rs-pointer {
	width: 26px;
	height: 26px;
	box-shadow: none;
	background: var(--gold);
	border: none;
	border-radius: 50%;
	top: -5px;
	z-index: 2;
}
@media (hover: hover) {
	.credit-block__dur .rs-pointer:hover {
		background: #7c6b5f;
	}
}
.credit-block__dur .rs-pointer:before, .credit-block__dur .rs-pointer:after {
	display: none;
}
.credit-block__dur .rs-tooltip {
	display: flex;
	gap: 0.2em;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--gold);
	border-radius: 100px;
	font-size: max(15px, 2rem);
	font-weight: 500;
	height: max(40px, 3em);
	padding: 0;
	width: 5em;
	white-space: nowrap;
	transform: translate(-50%, calc(-100% - 10px));
	background: var(--gold95);
	border: 1px solid rgba(38, 38, 38, 0.3);
}
.credit-block__dur .rs-tooltip:after {
	content: " мес";
}

.s-intro--about-transplant .intro-connect .text-3 {
	white-space: initial;
}

.intro__about-transplant-right {
	display: grid;
	place-items: center;
	padding-top: 10rem;
}
@media (max-width: 768px) {
	.intro__about-transplant-right {
		padding-top: 0;
	}
}

.intro__about-transplant-img {
	display: block;
	width: max(300px, 52rem);
	height: auto;
}

.s-about-transplant {
	overflow: clip;
}

.about-transplant-slider {
	overflow: visible;
	counter-reset: at;
}
.about-transplant-slider .swiper-slide {
	width: max(600px, 90rem);
}
@media (max-width: 680px) {
	.about-transplant-slider .swiper-slide {
		width: 300px;
	}
}

.about-transplant {
	display: flex;
	align-items: flex-start;
	gap: max(20px, 3rem);
	counter-increment: at;
	position: relative;
}
@media (max-width: 680px) {
	.about-transplant {
		flex-direction: column;
	}
}

.about-transplant__img {
	display: block;
	width: max(260px, 40rem);
	height: auto;
	aspect-ratio: 4/6;
	object-fit: cover;
	border-radius: var(--br-10);
	background: var(--gold95);
	flex-shrink: 0;
}
@media (max-width: 680px) {
	.about-transplant__img {
		width: 100px;
	}
}

.about-transplant__content:before {
	content: counter(at, decimal-leading-zero) "/";
	display: block;
	font-size: max(var(--min-fz, 12px), 1.8rem);
	color: var(--black-light);
	margin-bottom: 1em;
}
@media (max-width: 680px) {
	.about-transplant__content:before {
		position: absolute;
		top: 0;
		left: 110px;
	}
}

.about-transplan__title {
	margin-bottom: 0.8em;
}
@media (max-width: 680px) {
	.about-transplan__title {
		position: absolute;
		left: 110px;
		top: 30px;
	}
}

.about-transplant__item {
	margin-bottom: max(15px, 3rem);
	max-width: 27em;
	color: var(--black-light);
}
.about-transplant__item:last-child {
	margin-bottom: 0;
}
.about-transplant__item mark {
	display: inline-block;
	background: var(--line);
	color: var(--black);
	border-radius: 50px;
	padding: 0.2em 1em;
	margin-bottom: 0.6em;
}

.s-404 {
	background: var(--gradient-1);
	color: #FFF;
	padding-top: max(100px, 20rem);
	padding-bottom: max(50px, 10rem);
}
.s-404 .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.s-404 h1 {
	font-size: 50rem;
	line-height: 0.9;
}
.s-404 .h1 {
	max-width: 10em;
	margin-bottom: 0.2em;
}
.s-404 .text-1 {
	max-width: 25em;
	margin-bottom: 2em;
}

.s-search {
	padding-top: max(100px, 25rem);
	padding-bottom: max(50px, 10rem);
}

.search-grid {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 20px;
}
@media (max-width: 680px) {
	.search-grid {
		grid-template-columns: 1fr;
	}
}
.search-grid h1 {
	color: var(--gold);
}

.search-form {
	display: block;
	width: max(450px, 85rem);
	position: relative;
}
@media (max-width: 680px) {
	.search-form {
		width: 100%;
	}
}
.search-form .input-text {
	display: block;
	width: 100%;
	min-height: max(60px, 8rem);
}
.search-form .btn {
	position: absolute;
	z-index: 2;
	right: 10px;
	top: 10px;
}

.search-last {
	color: var(--black-light);
	padding-top: max(20px, 4rem);
}

.search-results {
	padding-top: max(50px, 10rem);
}

.search-result {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	position: relative;
	padding: max(15px, 3rem) 0;
	border-top: 1px solid var(--line);
}
@media (hover: hover) {
	.search-result:hover .btn {
		--btn-color: #FFF;
		--btn-bg: var(--gold);
		--btn-border: var(--gold);
	}
}
.search-result .text-1 {
	max-width: 45em;
	--min-fz: 12px;
}
.search-result .text-1 b {
	color: var(--gold);
}

.search-result__title {
	display: flex;
	align-items: center;
	gap: max(7px, 1.5rem);
	margin-bottom: 0.6em;
}
@media (max-width: 480px) {
	.search-result__title {
		flex-direction: column;
		align-items: flex-start;
	}
}
.search-result__title .home-price__label {
	margin: initial;
	align-self: initial;
}
.search-result__title .h4 {
	color: var(--gold);
}

.intro__price-right {
	padding-top: 25rem;
	padding-bottom: max(20px, 4rem);
}
@media (max-width: 768px) {
	.intro__price-right {
		padding-top: 0;
	}
}

.intro__price-facts {
	gap: max(5px, 1rem);
	display: flex;
	justify-content: flex-end;
}
@media (max-width: 768px) {
	.intro__price-facts {
		justify-content: flex-start;
	}
}

.intro__price-fact {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-bottom: none;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: var(--br-10);
	padding: max(10px, 2rem);
	padding-top: max(30px, 5rem);
	min-height: 33rem;
	width: max(200px, 27rem);
}
.intro__price-fact .h5 {
	margin-bottom: 0.5em;
}
.intro__price-fact .text-2 {
	--min-fz: 12px;
}

.s-price-filer {
	border-bottom: 1px solid var(--line);
	padding-bottom: max(10px, 2rem);
}

.price-filer-grid {
	display: grid;
	grid-template-columns: auto 1fr;
}
@media (max-width: 680px) {
	.price-filer-grid {
		grid-template-columns: 1fr;
		padding-top: 10px;
		gap: 15px;
	}
}

.price-filer {
	position: relative;
	padding: max(10px, 1.5rem) max(10px, 3rem) 0;
}
@media (max-width: 680px) {
	.price-filer {
		padding: 0;
	}
}
.price-filer:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: max(25px, 3rem);
	border-right: 1px solid var(--line);
}
@media (max-width: 680px) {
	.price-filer:before {
		display: none;
	}
}
.price-filer:first-child {
	padding-left: 0;
}
.price-filer:first-child:before {
	display: none;
}
.price-filer .nice-select {
	width: max(210px, 30rem);
}

.price-filer__title {
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 0.5em;
}

.price-filer__services {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em 1em;
	padding-top: max(5px, 1.5rem);
}
@media (max-width: 680px) {
	.price-filer__services {
		padding-top: 0;
	}
}

.price-filer__service {
	cursor: pointer;
}
@media (hover: hover) {
	.price-filer__service:hover {
		color: var(--gold);
	}
}
.price-filer__service:active {
	color: var(--gold);
}

.price-section {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 20px;
	position: relative;
	padding: max(40px, 8rem) 0;
	border-bottom: 1px solid var(--line);
}
@media (max-width: 768px) {
	.price-section {
		grid-template-columns: 1fr;
	}
}
.price-section:last-child {
	border: none;
}
.price-section .faq-cta {
	grid-column: span 2;
	margin-top: max(20px, 6rem);
}
@media (max-width: 768px) {
	.price-section .faq-cta {
		grid-column: initial;
	}
}

.price-section__anchor {
	position: absolute;
	top: min(-70px, -9rem);
}
@media (max-width: 1250px) {
	.price-section__anchor {
		top: -20px;
	}
}

.price-section__left {
	position: relative;
}

.price-section__title {
	color: var(--gold);
	width: min-content;
	position: sticky;
	top: max(70px, 9rem);
}
@media (max-width: 1250px) {
	.price-section__title {
		top: 20px;
	}
}
@media (max-width: 768px) {
	.price-section__title {
		width: initial;
	}
}

.price-list {
	counter-reset: section;
}

.price-item {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 20px;
	position: relative;
	border-bottom: 1px solid var(--line);
	counter-increment: section;
	padding: max(15px, 4rem) 0;
}
@media (max-width: 1024px) {
	.price-item {
		grid-template-columns: 30px 1fr;
		gap: 5px 10px;
	}
}
@media (max-width: 480px) {
	.price-item {
		grid-template-columns: 1fr;
	}
}
.price-item:before {
	content: "(" counter(section, decimal-leading-zero) ")";
	font-size: max(var(--min-fz, 10px), 1.8rem);
	color: var(--line);
	padding-top: 0.3em;
}
@media (max-width: 1024px) {
	.price-item:before {
		padding-top: 0;
	}
}
.price-item:first-child {
	padding-top: 0;
}
.price-item:last-child {
	padding-bottom: 0;
	border: none;
}

.price-item__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: max(15px, 3rem);
}

.price-item__title {
	max-width: 20em;
}

a.price-item__title {
	color: var(--gold);
	text-decoration-line: underline;
	text-decoration-thickness: 1px;
	text-decoration-color: rgba(0, 0, 0, 0);
	text-underline-offset: 0.3em;
	transition: text-decoration-color 0.3s ease;
}
@media (hover: hover) {
	a.price-item__title:hover {
		text-decoration-color: var(--gold);
	}
}
a.price-item__title:active {
	text-decoration-color: var(--gold);
}

.price-item__descr {
	color: var(--black-light);
	max-width: 30em;
}

.price-item__val {
	white-space: nowrap;
}
.price-item__val small {
	font-size: 0.6em;
}

.price-details {
	width: 100%;
	background: var(--gold95);
	border-radius: var(--br-10);
	overflow: clip;
}
.price-details.active .price-details__roller {
	grid-template-rows: 1fr;
}
.price-details.active .price-details__content {
	padding: max(15px, 3rem) max(15px, 3rem);
	border-bottom: 1px solid var(--line);
}
.price-details.active .price-details__toggler:before {
	content: "Свернуть";
}

.price-details__toggler {
	display: grid;
	place-items: center;
	color: var(--gold);
	font-size: max(var(--min-fz, 14px), 1.8rem);
	height: max(40px, 6rem);
	cursor: pointer;
	transition: background 0.3s ease;
}
@media (hover: hover) {
	.price-details__toggler:hover {
		background: var(--gold95-hover);
	}
}
.price-details__toggler:active {
	background: var(--gold95-hover);
}
.price-details__toggler:before {
	content: "Подробнее";
}

.price-details__roller {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.price-details__content {
	display: flex;
	flex-direction: column;
	gap: max(8px, 1.5rem);
	overflow: hidden;
	padding: 0 max(15px, 3rem);
	border-bottom: 0px solid transparent;
	transition: padding 0.3s ease, border-color 0.3s ease;
}

.price-detail {
	display: flex;
	justify-content: space-between;
	gap: 5px 20px;
	--min-fz: 12px;
}

.price-detail__title {
	color: var(--black-light);
	line-height: 1.3;
}

a.price-detail__title {
	color: var(--gold);
	text-decoration-line: underline;
	text-decoration-thickness: 1px;
	text-decoration-color: rgba(0, 0, 0, 0);
	text-underline-offset: 0.3em;
}
@media (hover: hover) {
	a.price-detail__title:hover {
		text-decoration-color: var(--gold);
	}
}
a.price-detail__title:active {
	text-decoration-color: var(--gold);
}

.price-detail__val {
	white-space: nowrap;
}

.s-intro--after-transplant .intro__left {
	grid-column: span 2;
	padding-bottom: 40px;
}
@media (max-width: 768px) {
	.s-intro--after-transplant .intro__left {
		grid-column: initial;
	}
}
.s-intro--after-transplant .intro__descr {
	max-width: 30em;
}

.at-zapret-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--gap);
}
@media (max-width: 680px) {
	.at-zapret-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

.at-zapret {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: max(20px, 4rem);
	background: var(--gradient-1);
	border-radius: var(--br-10);
	overflow: clip;
	color: #FFF;
	padding: max(20px, 4rem);
	min-height: 45rem;
	padding-bottom: 0;
}

.at-zapret__title {
	max-width: 25em;
}

.at-zapret__days {
	font-size: 16rem;
	font-weight: 300;
	line-height: 110%;
	white-space: nowrap;
	background: radial-gradient(circle 1em at 0 100%, #c8bfba, #cbc3bd);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
}
@media (max-width: 680px) {
	.at-zapret__days {
		font-size: 60px;
	}
}

.at-medicines-block {
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(40px, 7rem) 0;
}

.at-medicines-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px 20px;
}
@media (max-width: 680px) {
	.at-medicines-grid {
		grid-template-columns: 1fr;
	}
}

.at-medicines-grid__left {
	position: relative;
}

.at-medicines__title {
	position: sticky;
	top: max(70px, 9rem);
	max-width: 13em;
}
@media (max-width: 1250px) {
	.at-medicines__title {
		top: 20px;
	}
}
@media (max-width: 680px) {
	.at-medicines__title {
		max-width: 20em;
	}
}

.at-medicine-item {
	margin-bottom: max(40px, 6rem);
}
.at-medicine-item:last-child {
	margin-bottom: 0;
}
.at-medicine-item .user-content {
	font-size: max(var(--min-fz, 14px), 1.8rem);
	max-width: 35em;
}

.at-medicine-item__images {
	display: flex;
	align-items: flex-end;
	margin-top: max(20px, 3rem);
	gap: max(20px, 4rem);
}

.at-medicine-item__image {
	display: block;
	max-height: max(140px, 24.2rem);
	width: auto;
}

.s-at-shedule .sec-title .h2 {
	max-width: 20em;
}

.at-shedule-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding-bottom: max(15px, 2.5rem);
}
@media (max-width: 1250px) {
	.at-shedule-top .mini-cta {
		display: none;
	}
}
.at-shedule-top .mini-cta .text-3 {
	color: var(--black-light);
}

.at-shedule-nav {
	display: flex;
	gap: 0.5em;
	white-space: nowrap;
	font-size: max(var(--min-fz, 15px), 2rem);
}
@media (max-width: 1024px) {
	.at-shedule-nav {
		margin-left: -20px;
		width: calc(100% + 40px);
		padding: 0 20px 15px;
		overflow: auto;
		flex-shrink: 0;
	}
}

.at-shedule-nav__link {
	display: flex;
	align-items: center;
	gap: 0.5em;
	position: relative;
	text-decoration-line: underline;
	text-decoration-thickness: 1px;
	text-decoration-color: rgba(0, 0, 0, 0);
	text-underline-offset: 0.3em;
	transition: color 0.3s ease, text-decoration-color 0.3s ease;
	cursor: pointer;
}
@media (hover: hover) {
	.at-shedule-nav__link:hover {
		color: var(--gold);
		text-decoration-color: var(--gold);
	}
}
.at-shedule-nav__link:active {
	color: var(--gold);
	text-decoration-color: var(--gold);
}
.at-shedule-nav__link:after {
	content: "";
	display: block;
	width: max(15px, 3rem);
	height: 1px;
	background: var(--line);
	pointer-events: none;
}
.at-shedule-nav__link:last-child:after {
	display: none;
}

.at-shedule-main {
	border-top: 1px solid var(--line);
	padding-top: max(20px, 5rem);
}

.at-shedule {
	position: relative;
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(25px, 5rem) 0;
	margin-bottom: max(10px, 2rem);
}
.at-shedule:last-child {
	margin-bottom: 0;
}
.at-shedule .article-block--marked {
	background: #FFF;
}

.at-shedule__anchor {
	position: absolute;
	top: min(-70px, -9rem);
}
@media (max-width: 1250px) {
	.at-shedule__anchor {
		top: -10px;
	}
}

.at-shedule__grid {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 20px;
}
@media (max-width: 768px) {
	.at-shedule__grid {
		display: block;
	}
}

.at-shedule__left {
	position: relative;
}
@media (max-width: 768px) {
	.at-shedule__left {
		margin-bottom: 20px;
	}
}

.at-shedule__title {
	position: sticky;
	top: max(70px, 9rem);
}
@media (max-width: 1250px) {
	.at-shedule__title {
		top: 20px;
	}
}

.s-at-speed {
	overflow: clip;
}

.at-speed-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: max(40px, 10rem);
}
@media (max-width: 680px) {
	.at-speed-top {
		grid-template-columns: 1fr;
	}
}
.at-speed-top .user-content {
	max-width: 35em;
}

.at-speed {
	display: flex;
	overflow: auto;
}

.at-speed__item {
	width: 9.0909090909%;
	flex-shrink: 0;
	display: grid;
	grid-template-rows: 1fr auto 1fr;
	white-space: nowrap;
	text-align: center;
}
@media (max-width: 768px) {
	.at-speed__item {
		width: 80px;
	}
}
.at-speed__item:nth-child(even) .at-speed__item__val {
	height: max(60px, 14rem);
	grid-row: 3/4;
}
.at-speed__item:nth-child(even) .at-speed__item__time:before {
	bottom: initial;
	top: 0;
}
.at-speed__item:first-child .at-speed__item__val span {
	translate: -25% -50%;
}
.at-speed__item:last-child .at-speed__item__val span {
	translate: -75% -50%;
}

.at-speed__item__time {
	grid-row: 2/3;
	color: var(--black-light);
	position: relative;
	border-top: 1px solid var(--gold);
	padding-top: max(20px, 3.5rem);
}
.at-speed__item__time:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: max(15px, 3rem);
	margin: 0 auto;
	width: 1px;
	border-right: 1px solid var(--gold);
}

.at-speed__item__val {
	position: relative;
	grid-row: 1/2;
	line-height: 1;
	height: max(80px, 16rem);
	color: var(--gold);
}
.at-speed__item__val span {
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
}

.at-half-block {
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(40px, 10rem) 0;
	overflow: clip;
}

.at-half-block--red {
	background: #E9E2E2;
}

.at-half {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 30px 20px;
}
@media (max-width: 680px) {
	.at-half {
		grid-template-columns: 1fr;
	}
}

.at-half__left .user-content {
	max-width: 30em;
}

.at-mak {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	position: relative;
}
.at-mak:after {
	content: "";
	position: absolute;
	bottom: 0;
	border-top: 1px solid var(--gold);
	left: 100px;
	width: calc(100% - 200px);
}
@media (max-width: 680px) {
	.at-mak:after {
		left: 55px;
		width: calc(100% - 110px);
	}
}

.at-mak__item {
	position: relative;
	text-align: center;
	padding-bottom: max(40px, 6rem);
	width: 200px;
}
@media (max-width: 680px) {
	.at-mak__item {
		width: 110px;
	}
}
.at-mak__item .h1 {
	white-space: nowrap;
	line-height: 1;
	color: var(--gold);
}
.at-mak__item .h4 {
	color: var(--gold);
	margin-bottom: 0.5em;
}
.at-mak__item .text-2 {
	color: var(--black-light);
}
.at-mak__item:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: max(20px, 3rem);
	width: 1px;
	border-right: 1px solid var(--gold);
}

.at-times {
	--at-time-text-color: var(--gold);
	--at-time-bc: var(--gold);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: max(20px, 5rem);
	position: relative;
}
.at-times:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	border-top: 1px solid var(--at-time-bc);
}

.at-times--red {
	--at-time-text-color: #BA574F;
	--at-time-bc: #c2b2b2;
}

.at-time {
	position: relative;
	padding-top: max(40px, 6rem);
}
.at-time .h1 {
	line-height: 1;
	color: var(--at-time-text-color);
}
.at-time .h4 {
	margin-bottom: 1em;
	color: var(--at-time-text-color);
}
.at-time .text-2 {
	color: var(--black-light);
	--min-fz: 12px;
	max-width: 20em;
}
.at-time:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: max(20px, 3rem);
	width: 0;
	border-right: 1px solid var(--at-time-bc);
}

.at-simple-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: var(--gap);
	counter-reset: sg;
}
@media (max-width: 768px) {
	.at-simple-grid {
		grid-template-columns: 1fr;
	}
}

.at-simple-panel {
	background: var(--gold95);
	border-radius: var(--br-10);
	padding: max(20px, 3rem);
	padding-bottom: max(30px, 5rem);
	counter-increment: sg;
}
.at-simple-panel:before {
	content: "(" counter(sg, decimal-leading-zero) ")";
	display: block;
	font-size: max(var(--min-fz, 14px), 1.8rem);
	margin-bottom: 1em;
	color: var(--black-light);
}

.at-simple-panel__uptitle {
	margin-bottom: 1em;
	color: var(--black-light);
}

.at-simple-panel__title {
	margin-bottom: 0.6em;
}

.at-simple-panel__descr {
	color: var(--black-light);
}
.at-simple-panel__descr p {
	margin-bottom: 0.5em;
}
.at-simple-panel__descr p:last-child {
	margin-bottom: 0;
}

.s-at-methods {
	counter-reset: atMet;
}
.s-at-methods .s-filter {
	padding-top: 0;
}

.at-method {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 20px;
	padding: max(40px, 8rem) 0;
	counter-increment: atMet;
	border-bottom: 1px solid var(--line);
}
@media (max-width: 768px) {
	.at-method {
		display: block;
	}
}

.at-method__left {
	position: relative;
}
@media (max-width: 768px) {
	.at-method__left {
		margin-bottom: 10px;
	}
}
.at-method__left:before {
	content: "(" counter(atMet, decimal-leading-zero) ")";
	display: block;
	font-size: max(var(--min-fz, 14px), 1.8rem);
	color: var(--gold);
	position: sticky;
	top: max(80px, 10rem);
}
@media (max-width: 1250px) {
	.at-method__left:before {
		top: 20px;
	}
}
/* End */
/* /local/templates/ggmed/css/main.css?1772706995238630 */
