﻿/* Green theme */
.theme-green {
	--body-bg: #f0d4bc;
	--accent-color: #f0d4bc;
	--btn-bg: linear-gradient(90deg, #32cea9 0%, #00bcc3 100%);
	--btn-hover-bg: linear-gradient(90deg, #04b8a3 0%, #008da6 100%);
	--f-carousel-dot-color: #f5f0ea;
	--ava-border-color: #f0d4bc;
}

.theme-green .hero-section,
.theme-green .how-works-section,
.theme-green .consultation-section,
.theme-green .before-after-section,
.theme-green .promo-section {
	--section-text-color: #fff;
	--section-bg: linear-gradient(180deg, #08323b 0%, #35505b 100%);
}

.theme-green .doctor-section {
	--section-bg: #f5f0ea;
}

.theme-green .procedure-steps-section,
.theme-green .about-clinic-section {
	--section-bg: #fff;
}

.theme-green .before-after-section {
	--carousel-dot-current-color: #f0d4bc;
}

.theme-green .map-section {
	--section-text-color: #fff;
	--section-bg: #344750;
}

/* Blue theme */
.theme-blue {
	--body-color: #314d66;
	--link-color: #314D66;
	--btn-bg: linear-gradient(90deg, #ff9add 0%, #ffb3a6 100%);
	--btn-hover-bg: linear-gradient(90deg, #ed76c5 0%, #e5a47b 100%);
	--carousel-dot-current-color: #314d66;
    --ava-border-color: #f0d4bc;
}

.theme-blue .hero-section {
	--section-bg: linear-gradient(94deg, #eef7ff 0%, #d8f0ff 100%);
	--cloud-opacity: .8;
}

.theme-blue .benefits-section {
	--f-carousel-dot-color: #ffe4e3;
	--slide-bg: #FFF4F7;
}

.theme-blue .how-works-section,
.theme-blue .contraindications-section {
	--section-bg: #faf4e8;
}

.theme-blue .consultation-section {
	--section-bg: linear-gradient(200deg, #fdf3d1 0%, #e6d7fc 100%);
	--cloud-opacity: .4;
}

.theme-blue .procedure-steps-section {	
	--f-carousel-dot-color: #e6e6e6;
}

.theme-blue .results-section {
	--section-bg: #e5fffe;
	--f-carousel-dot-color: #cbeae9;
}

.theme-blue .before-after-section {
	--section-bg: linear-gradient(107deg, #eef7ff 0%, #d8f0ff 100%);
	--cloud-opacity: .8;
	--f-carousel-dot-color: #cbeae9;
}

.theme-blue .promo-section {
	--section-bg: linear-gradient(94deg, #eef7ff 0%, #d8f0ff 100%);
}

@media (min-width: 992px) {
	.theme-blue .promo-section {
		--section-bg: linear-gradient(94deg, #fdf3d1 0%, #e6d7fc 100%);
		--cloud-opacity-1: .8;
		--cloud-opacity-2: 1;
	}
}

.theme-blue .map-section {
	--accent-color: #fbf6eb;
	--section-text-color: #fff;
	--section-bg: #314d66;
}

/* Pink theme */
.theme-pink {
	--body-color: #705269;
	--link-color: #705269;
	--body-bg: #f5f0ea;
	--btn-bg: linear-gradient(90deg, #80aff5 0%, #8bc5e9 100%);
	--btn-hover-bg: linear-gradient(90deg, #6793d4 0%, #73b1d8 100%);
	--f-carousel-dot-color: #efd0c4;
	--carousel-dot-current-color: #81b1f3;
	--ava-border-color: #81b1f3;
}

.theme-pink .hero-section {
	--section-bg: linear-gradient(180deg, #edc2b3 0%, #eeded6 100%);
	--cloud-opacity: .4;
}

.theme-pink .how-works-section,
.theme-pink .before-after-section {
	--section-bg: #eeded6;
	--cloud-opacity: .3;
}

.theme-pink .results-section,
.theme-pink .contraindications-section {
	--section-bg: #efd0c4;
}
	
.theme-pink .consultation-section {
	--section-bg: linear-gradient(180deg, #bbe3fc 0%, #ddf0fc 100%);
	--cloud-opacity: .3;
	--btn-bg: linear-gradient(90deg, #32cea9 0%, #00bcc3 100%);
	--btn-hover-bg: linear-gradient(90deg, #04b8a3 0%, #008da6 100%);
}

.theme-pink .procedure-steps-section,
.theme-pink .about-clinic-section {
	--section-bg: #fff;
}

.theme-pink .contraindications-section {
	--li-marker-color: #81b1f3;
}

.theme-pink .promo-section {
	--section-bg: linear-gradient(180deg, #edc2b3 0%, #eeded6 100%);
}

.theme-pink .map-section {
	--accent-color: #eeded6;
	--section-text-color: #fff;
	--section-bg: #463852;
}
/* ------ */

section {
	color: var(--section-text-color);
	background: var(--section-bg);
}

html {
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

html:focus-within {
	scroll-behavior: smooth;
}
/*	Если делать фикс шапку через pos: sticky, то нужно задавать min-height 100vh.
	Высота нужна, если нам нужно на ПК прибить книзу footer с помощью flex для коротких стр. */
html, body {
	min-height: 100vh;
	-webkit-overflow-scrolling: touch;
}

main {
	flex: 1;
	overflow-x: hidden;
}

:lang(en) {
	quotes: "“" "”";
}

:lang(ru) {
	quotes: "«" "»";
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #e5e5e5;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: auto;
	display: none;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
body, input, textarea {
	-webkit-text-size-adjust: none;
			text-size-adjust: none;
}

body {
	color: var(--body-color, #344750);
	background-color: var(--body-bg, #fff);
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 300;
	overscroll-behavior-y: contain;
	-webkit-tap-highlight-color: transparent;
}

button, input, textarea {
	border: 0;
	border-radius: 0;
	background-color: transparent;
}

button:not(:disabled),
label,
[role="button"],
[role="link"],
[class*="btn"] {
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

input,
textarea,
button,
button:focus {
	font-family: inherit;
-webkit-appearance: none;
   -moz-appearance: none;
	    appearance: none;
	       outline: none;
}
	
@media screen and (-webkit-min-device-pixel-ratio:0) and (max-width:576px) { 
	select,
	textarea,
	input {
		font-size: 16px !important;
	}
}

:invalid {
	box-shadow: none;
}

select {outline: none;}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
	--bs-gutter-x: 2.5rem;
}

h1,
.h1 {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 2rem;
	line-height: 1.2;
}

h2,
.h2 {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 2rem;
	line-height: 1.2;
}

h3,
.h3 {
	font-size: 1.375rem;
}

@media (min-width: 576px) {
	h1,
	.h1	{
		font-size: 3rem;
	}
	h2,
	.h2 {
		font-size: 2.625rem;
	}
}

@media (min-width: 992px) {
	h1,
	.h1 {
		font-size: 2.625rem;
	}
	h2,
	.h2 {
		font-size: 3rem;
	}
	h3,
	.h3 {
		font-size: 1.5rem;
	}
}

.small, small {
	font-size: 80%;
}

a, img, button, input, textarea, svg, [class*="btn"], [role="link"], .p-link, .o-hover {
 -webkit-transition: all .15s ease;
		 transition: all .15s ease;
}

a {
	color: var(--link-color, #f0d4bc);
	text-decoration: none;
}

.scroller {
	overflow-x: scroll;
	overflow-y: hidden;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	user-select: none;
}

@media (min-width: 576px) {
	.scroller-sm {
		overflow-x: scroll;
		overflow-y: hidden;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		user-select: none;
	}
}

@media (min-width: 768px) {
	.scroller-md {
		overflow-x: scroll;
		overflow-y: hidden;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		user-select: none;
	}
}

.scroller::-webkit-scrollbar,
.scroller-sm::-webkit-scrollbar,
.scroller-md::-webkit-scrollbar {
	display: none;
}

.sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
}

.p-link {
	color: inherit;
	cursor: pointer;
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: .14em;
	text-decoration-thickness: 1px;
}

.u-line {
	text-decoration: underline;
	text-underline-offset: .14em;
	text-decoration-thickness: 1px;
}

.no-u-line {
	text-decoration: none;
}

.stretched-link:before {
	content:'';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.hr-dashed {
	border-top: 1px dashed #d1d1d1;
}

[class*="border"] {
	--border-color: #e5e5e5;
}

.border,
.border-y,
.border-top {
	border-top: 1px solid var(--border-color);
}

.border,
.border-y,
.border-bottom {
	border-bottom: 1px solid var(--border-color);
}

.border,
.border-x,
.border-left {
	border-left: 1px solid var(--border-color);
}

.border,
.border-x,
.border-right {
	border-right: 1px solid var(--border-color);
}

.radius-1 {
	border-radius: 8px;
}

.radius-2 {
	border-radius: 16px;
}

.object-fit {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.gap-5 {
	gap: 3rem;
}

.c-black {
	color: inherit;
}

.c-white {
	color: #fff;
}

.c-gray {
	color: #717171;
}

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

.bg-white {
	background-color: #fff;
}

.font-2 {
	font-family: "Source Serif 4", serif;
}

.fs-12 {
	font-size: 12px;
}

.fs-13 {
	font-size: 13px;
}

.fs-14 {
	font-size: 14px;
}

.fs-16 {
	font-size: 16px;
}

.fs-18 {
	font-size: 18px;
}

.fs-20 {
	font-size: 20px;
}

.fs-22 {
	font-size: 22px;
}

.fs-24 {
	font-size: 24px;
}

.fs-26 {
	font-size: 26px;
}

.fs-28 {
	font-size: 28px;
}

.fs-30 {
	font-size: 30px;
}

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

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

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

b,
strong,
.fw-700 {
	font-weight: 700;
}

.lh-1 {
	line-height: 1;
}

.lh-1_2 {
	line-height: 1.2;
}

.lh-1_4 {
	line-height: 1.4;
}

.lh-1_75 {
	line-height: 1.75;
}

.o-10 {
	opacity: .1;
}

.o-15 {
	opacity: .15;
}

.o-25 {
	opacity: .25;
}

.o-5 {
	opacity: .5;
}

.o-75 {
	opacity: .75;
}

.o-8 {
	opacity: .8;
}

@media (max-width: 575px) {
	.mx-n20 {
		margin-left: calc(-.5 * var(--bs-gutter-x));
		margin-right: calc(-.5 * var(--bs-gutter-x));
	}
	.tac-sm {
		text-align: center;
	}
}

@media (max-width: 768px) {
	.mx-md-n20 {
		margin-left: calc(-.5 * var(--bs-gutter-x));
		margin-right: calc(-.5 * var(--bs-gutter-x));
	}
	.tac-md {
		text-align: center;
	}
}

@media (max-width: 992px) {
	.tac-lg {
		text-align: center;
	}
}

.mh-360 {
	min-height: 360px;
}

.mw-360 {
	max-width: 360px;
}

.mw-400 {
	max-width: 400px;
}

.mw-440 {
	max-width: 440px;
}

.mw-540 {
	max-width: 540px;
}

.mw-600 {
	max-width: 600px;
}

.mw-800 {
	max-width: 800px;
}

/* кнопки */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 700;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	    touch-action: manipulation;
	background-image: none;
	background-color: transparent;
	white-space: nowrap;
	z-index: 5;
	line-height: normal;
	transition: color .15s ease-in-out,
				background-color .15s ease-in-out,
				border-color .15s ease-in-out,
				box-shadow .15s ease-in-out,
				opacity .15s ease-in-out;
}

.btn-disabled,
.btn:disabled {
	cursor: default;
	opacity: .5;
	pointer-events: none;
}

.btn-primary {
	color: #fff;
	background: var(--btn-bg);
	font-size: 18px;
	padding: 15px 40px;
	border-radius: 8px;
	min-height: 60px;
}

.btn-100,
.btn-m100 {
	width: 100%;
}

@media (min-width: 576px) {
	.btn-m100 {
		width: auto;
	}
}

@media (min-width: 768px) {
	.btn-primary {
		font-size: 22px;
	}
}

/* hovers */
@media (any-hover: hover) {	
	.o-hover:hover {
		opacity: .6;
	}

	.btn-primary:hover {
		background: var(--btn-hover-bg);
	}
}

/* форма */
::placeholder {
	color: #374151;
}

:focus::placeholder {
	opacity: 0;
}

.form-check {
	position: relative;
	display: block;
	padding-left: 1.25rem;
}

.form-check-inline {
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 0;
	margin-right: .75rem;
}

.form-check-input {
	padding: 0;
	margin: 0;
	opacity: 0;
	position: absolute;
	z-index: 100;
	width: 16px;
	height: 16px;
	border: none;
	left: 0;
	top: 7px;
-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
		transform: translateY(-50%);
}

.form-check-label .radio {
	display: inline-block;
	border: 1px solid #222;
	width: 16px;
	height: 16px;
	margin-right: 10px;
	border-radius: 50%;
-webkit-transform: translateY(15%);
	-ms-transform: translateY(15%);
		transform: translateY(15%);
}

.form-check-label [type='radio']:checked + span {
	-webkit-box-shadow: inset 0 0 0 4px #fff,inset 0 0 0 10px #222;
            box-shadow: inset 0 0 0 4px #fff,inset 0 0 0 10px #222;
}

.block-radio {
	border: 1px solid transparent;
}

.block-radio.selected {
	border-color: #222;
}

.block-radio:not(.selected) {
	opacity: .5;
}

.block-radio .radio-group {
	top: 0;
	left: -7px;
	bottom: 0;
	height: 14px;
	margin: auto;
}

.block-radio .radio {
	transform: none;
}

.form-check-label .checkbox {
	display: inline-block;
	border: 1px solid #222;
	width: 14px;
	height: 14px;
	margin-right: 10px;
-webkit-transform: translateY(15%);
	-ms-transform: translateY(15%);
		transform: translateY(15%);
}

.form-check-label [type='checkbox']:checked + span:after {
	content: "";
	position: absolute;
	display: block;
	width: 5px;
	height: 10px;
	border-bottom: 2px solid #222;
	border-right: 2px solid #222;
	top: 0;
	left: 4px;
-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
		transform: rotate(45deg);
}

.form-row {
	display: -ms-flexbox;
	display: flex;
-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -5px;
	margin-left: -5px;
}

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

.form-group {
	margin-bottom: 1.5rem;
}

.form-control {
	display: block;
	background-color: #fff;
	width: 100%;
	padding: .625rem 15px;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.5;
	border-bottom: 4px solid #f0d4bc;
	
-webkit-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
		transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-control:focus,
.form-group:focus-within .form-control,
.form-control.input-filled {
	background-color: #fff;
	box-shadow: 0 0 0 2px var(--input-focus);
}

textarea.form-control {
    height: auto;
}

.form-inline {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-ms-flex-align: center;
	align-items: center;
}

.form-inline .form-group {
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 0;
}

.form-inline label {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 0;
}

.form-inline .form-control {
	display: inline-block;
	width: auto;
	vertical-align: middle;
}

.input-error,
.input-error:focus,
.form-error .form-control:invalid{
	border-color: #ff3f28;
}

.error-msg {
	color: #ff3f28;
	font-size: 12px;
	font-weight: 500;
	margin-top: 4px;
	animation: Hint_show .15s ease-in forwards;
}

@keyframes Hint_show {
	0% {
		opacity: 0;
		transform: translateY(-6px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ul-columns {
	margin: -5px 0;
}

.ul-columns li {
	padding: 5px 0;
}
	
@media (min-width: 576px) {
	.ul-columns {
		columns: 2
	}
}

@media (min-width: 768px) {
	.ul-columns {
		columns: 3
	}
}

@media (min-width: 992px) {
	.ul-columns {
		columns: 4
	}
}
/* ------------------------------------------------ */

/* Первый экран */
.hero-section {
	padding-top: 50px;
}

.hero-section .offer-promotion {
	position: relative;
	z-index: 2;
}

.hero-section .offer-promotion .title {
	font-size: 62px;
	line-height: 1;
}

.theme-green .hero-section .offer-promotion .title,
.theme-green .hero-section .offer-promotion .subtitle {
	text-shadow: 4px 2px 16px rgba(11,26,32, .6);
}

.hero-section .offer-promotion .price {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 64px;
}

.hero-section .offer-promotion .price-old {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 18px;
}

.hero-section .offer-promotion .expires {
	font-size: 20px;
}

.hero-section .badge {
	color: #344750;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: url("../img/badge.png") no-repeat 0 0 /contain;
	width: 305px;
	height: 135px;
}

.hero-section .badge div:first-child {
	font-size: 32px;
}

@media (min-width: 576px) {
	.hero-section .offer-promotion .title {
		font-size: 48px;
	}
}

@media (min-width: 768px) {
	.hero-section .offer-promotion .title {
		font-size: 62px;
	}
	
	.hero-section .offer-promotion .text {
		font-size: 18px;
	}
	
	.hero-section .offer-promotion .btn-primary {
		height: 70px;
	}
	
	.hero-section .offer-promotion .price-old {
		font-size: 32px;
	}
	
	.hero-section .offer-promotion .expires {
		font-size: 18px;
	}
}

@media (min-width: 992px) {
	.hero-section {
		border-radius: 0 0 95% 95% / 0 0 35% 35%;
		padding-top: 100px;
	}
	
	.hero-section > div {
		position: relative;
		z-index: 3;
	}
	
	.hero-section::before,
	.hero-section::after {
		content: "";
		position: absolute;
		background: url("../img/cloud-2.png") no-repeat 0 0 /cover;
		mix-blend-mode: overlay;
		width: 1610px;
		height: 1160px;
		bottom: -39%;
		filter: blur(4px);
		opacity: var(--cloud-opacity, .2);
	}

	.hero-section::before {
		left: calc(50% - 2115px);		
	}
	
	.hero-section::after {
		right: calc(50% - 1155px);
	}

	.hero-section .inner {
		padding-bottom: 100px;
	}

	.hero-section .hero-image {
		position: absolute;
		bottom: 0;
		right: -230px;
		z-index: 1;
		user-select: none;
	}
	
	.hero-section .offer-promotion .title {
		max-width: 600px;
	}
	
	.hero-section .badge div:first-child {
		font-size: 48px;
	}

	.hero-section .badge {
		position: absolute;
		width: 360px;
		height: 162px;
		right: 5%;
		bottom: 0;
		transform: rotate(-5deg);
	}
}

@media (min-width: 1024px) {
	.hero-section .offer-promotion .title {
		font-size: 96px;
	}
}
/* /Слайдер на главной */

.section-py-1,
.section-py-2,
.section-py-3 {
	padding-top: 50px;
	padding-bottom: 50px;
}
	
@media (min-width: 768px) {
	.section-py-1 {
		padding-top: 40px;
		padding-bottom: 60px;
	}
	
	.section-py-2 {
		padding-top: 60px;
		padding-bottom: 80px;
	}
	
	.section-py-3 {
		padding-top: 80px;
		padding-bottom: 100px;
	}
}

/* 6 причин сказать «Да» */
/* [слайдер] */
.benefits-section .f-carousel__viewport {
	overflow: visible;
}

.benefits-section .f-carousel__dots {
	justify-content: normal;
}

.benefits-section .benefits-slider .f-carousel__slide {
	--f-carousel-slide-width: 95%;
	--f-carousel-spacing: 20px;
	background-color: var(--slide-bg, #fff);
}

.benefits-section .benefits-item .title {
	font-size: 1.375rem;
}

@media (min-width: 576px) {
	.benefits-section .benefits-slider .f-carousel__slide {
		--f-carousel-slide-width: 70%;
	}
}

@media (min-width: 768px) {
	.benefits-section .benefits-slider .f-carousel__slide {
		--f-carousel-slides-per-page: 2.1;
		--f-carousel-slide-width: calc((100% - ((var(--f-carousel-slides-per-page) - 1) * var(--f-carousel-spacing))) / var(--f-carousel-slides-per-page));
	}
	
	.benefits-section .benefits-item .title {
		font-size: 1.5rem;
	}
}

@media (min-width: 1400px) {
	.benefits-section .benefits-slider .f-carousel__slide {
		--f-carousel-spacing: 40px;
		--f-carousel-slides-per-page: 2.6;
	}
}

/* Как работает */
.how-works-section > div {
	position: relative;
	z-index: 3;
}
	
.how-works-section::after {
	content: "";
	position: absolute;
	mix-blend-mode: overlay;
	background: url("../img/cloud-2.png") no-repeat 0 0 /cover;
	width: 716px;
	height: 523px;
	right: calc(50% - 358px);
	bottom: -200px;
	opacity: var(--cloud-opacity, var(--cloud-opacity-2, .1));
}
	
@media (min-width: 576px) {
	.how-works-section img {
		border-radius: 16px;
	}
}

@media (min-width: 992px) {
	.how-works-section::before {
		content: "";
		position: absolute;
		mix-blend-mode: overlay;
		background: url("../img/cloud-1.png") no-repeat 0 0;
		width: 1800px;
		height: 400px;
		left: calc(50% - 1825px);
		bottom: -140px;
		opacity: var(--cloud-opacity, var(--cloud-opacity-1, .2));
	}
	
	.how-works-section::after {
		background: url("../img/cloud-2.png") no-repeat 0 0;
		width: 1460px;
		height: 1060px;
		right: calc(50% - 1485px);
		bottom: -52%;
		opacity: var(--cloud-opacity, var(--cloud-opacity-2, .1));
	}
}

/* Что вы получите */
/* [слайдер] */
.results-section .f-carousel__viewport {
	overflow: visible;
}

.results-section .results-slider .f-carousel__slide {
	--f-carousel-slide-width: 95%;
	--f-carousel-spacing: 20px;
}

.results-section .results-item .title {
	font-size: 1.375rem;
}

@media (min-width: 576px) {
	.results-section .results-slider .f-carousel__slide {
		--f-carousel-slides-per-page: 2;
		--f-carousel-slide-width: calc((100% - ((var(--f-carousel-slides-per-page) - 1) * var(--f-carousel-spacing))) / var(--f-carousel-slides-per-page));
	}
}

@media (min-width: 768px) {
	.results-section .results-slider .f-carousel__slide {
		--f-carousel-slides-per-page: 2.1;
	}
	
	.results-section .results-item .title {
		font-size: 1.5rem;
	}
}

/* времянка (перебивка фанси классов, класс нужно вырезать из dom при смене ширины экрана) */
@media (min-width: 992px) {
	.results-section .results-slider .f-carousel__slide {
		--f-carousel-slides-per-page: 0;
		--f-carousel-spacing: 0;
		--f-carousel-slide-width: 33.33333333%;
		--f-carousel-slide-padding: 0 calc(var(--bs-gutter-x) * .833);
		margin-top: var(--bs-gutter-y);
	}
}

/* -- Доктор -- */
.doctor-section .ava {
	border: 3px solid var(--ava-border-color, #fff);
	border-radius: 50%;
}

.doctor-section .description::before,
.doctor-section .description::after {
	font-size: 46px;
}

.doctor-section .description::before {
	content: "“";
	position: absolute;
	top: -12px;
	left: -20px;
}

.doctor-section .description::after {
	content: "„";
	line-height: 0;
}

/* -- Консультация -- */
.consultation-section > div {
	position: relative;
	z-index: 3;
}

.consultation-section::after {
	content: "";
	position: absolute;
	mix-blend-mode: overlay;
	background: url("../img/cloud-2.png") no-repeat 0 0 /cover;
	width: 820px;
	height: 597px;
	right: calc(50% - 410px);
	bottom: -50px;
	opacity: var(--cloud-opacity, .3);
}

.consultation-section form {
	background-color: #f5f0ea;
}

@media (min-width: 992px) {
	.consultation-section::before {
		content: "";
		position: absolute;
		mix-blend-mode: overlay;
		background: url("../img/cloud-1.png") no-repeat 0 0;
		width: 1800px;
		height: 400px;
		left: calc(50% - 1825px);
		bottom: -140px;
		opacity: var(--cloud-opacity, .1);
	}
	
	.consultation-section::after {
		background: url("../img/cloud-2.png") no-repeat 0 0;
		width: 1460px;
		height: 1060px;
		right: calc(50% - 1485px);
		bottom: -52%;
		opacity: var(--cloud-opacity, .1);
	}
}

/* -- Этапы -- */
/* [слайдер] */
.procedure-steps-section .f-carousel__viewport {
	overflow: visible;
}

.procedure-steps-section .procedure-steps-slider .f-carousel__slide {
	--f-carousel-slide-width: 95%;
	--f-carousel-spacing: 20px;
}

@media (min-width: 768px) {
	.procedure-steps-section .procedure-steps-slider .f-carousel__slide {
		--f-carousel-slides-per-page: 2.1;
		--f-carousel-slide-width: calc((100% - ((var(--f-carousel-slides-per-page) - 1) * var(--f-carousel-spacing))) / var(--f-carousel-slides-per-page));
	}
}

@media (min-width: 992px) {
	.procedure-steps-section .procedure-steps-slider .f-carousel__slide {
		--f-carousel-slides-per-page: 0;
		--f-carousel-spacing: 0;
		--f-carousel-slide-width: 100%;
	}
	
	.procedure-steps-section .procedure-steps-slider .f-carousel__slide + .f-carousel__slide {
		margin-top: var(--bs-gutter-y);
	}
	
	.procedure-steps-slider {
		columns: 2;
	}
	
	.procedure-steps-slider > div {
		break-inside: avoid-column;
	}
}

/* -- До-После -- */
.before-after-section > div {
	position: relative;
	z-index: 3;
}

.before-after-section::after {
	content: "";
	position: absolute;
	mix-blend-mode: overlay;
	background: url("../img/cloud-2.png") no-repeat 0 0 /cover;
	width: 730px;
	height: 532px;
	right: calc(50% - 365px);
	bottom: -120px;
	opacity: var(--cloud-opacity, var(--cloud-opacity-2, .15));
}
	
@media (min-width: 992px) {
	.before-after-section::before {
		content: "";
		position: absolute;
		mix-blend-mode: overlay;
		background: url("../img/cloud-1.png") no-repeat 0 0 /cover;
		width: 2365px;
		height: 525px;
		left: calc(50% - 2265px);
		bottom: -140px;
		opacity: var(--cloud-opacity, var(--cloud-opacity-1, .2));
	}
	
	.before-after-section::after {
		width: 1610px;
		height: 1160px;
		right: calc(50% - 1425px);
		bottom: -18%;
		opacity: var(--cloud-opacity, var(--cloud-opacity-2, .1));
	}
}

/* -- Противопоказания -- */
.contraindications-list {
	gap: 10px;
}

.contraindications-list li {
	display: flex;
	gap: 5px;
}

.contraindications-list li:before {
	content: "";
	background-color: var(--li-marker-color, #587b88);
	border-radius: 50%;
	width: var(--li-marker-size, 5px);
	height: var(--li-marker-size, 5px);
	flex-shrink: 0;
	transform: translateY(9px);
}

@media (min-width: 768px) {
	.contraindications-section .title {
		text-align: center;
	}
	
	.contraindications-list li {
		--li-marker-size: 10px;
		align-items: center;
		flex-direction: column;
		font-size: 1.125rem;
		text-align: center;
		gap: 10px;
		width: 100%;
		max-width: 260px;
	}
	
	.contraindications-list li:before {
		transform: none;
	}
	
	.contraindications-list li:first-child,
	.contraindications-list li:nth-child(2)	{
		max-width: 160px;
	}
}

/* -- О клинике -- */

/* -- Забронируйте акцию -- */
.promo-section {
	padding-top: 50px;
}

.promo-section > div {
	position: relative;
	z-index: 3;
}

.promo-section::after {
	content: "";
	position: absolute;
	mix-blend-mode: overlay;
	background: url("../img/cloud-2.png") no-repeat 0 0 /cover;
	width: 466px;
	height: 340px;
	right: calc(50% - 233px);
	bottom: -10px;
	opacity: var(--cloud-opacity, var(--cloud-opacity-2, .1));
}

.promo-section .section-img {
	position: relative;
	z-index: 2;
}

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

	.promo-section::before {
		content: "";
		position: absolute;
		mix-blend-mode: overlay;
		background: url("../img/cloud-1.png") no-repeat 0 0 /cover;
		width: 2365px;
		height: 525px;
		left: calc(50% - 2335px);
		bottom: -55%;
		opacity: var(--cloud-opacity, var(--cloud-opacity-1, .2));
	}
	
	.promo-section::after {
		background: url("../img/cloud-2.png") no-repeat 0 0 /cover;
		width: 1235px;
		height: 900px;
		right: calc(50% - 1180px);
		bottom: -70%;
		opacity: var(--cloud-opacity, var(--cloud-opacity-2, .4));
	}
	
	.promo-section .section-img {
		position: absolute;
		top: 0;
		right: calc(50% - 960px);
	}	
}

@media (min-width: 1920px) {
	.promo-section .section-img {
		right: 0;
	}
}

/* -- Карта -- */
@media (min-width: 992px) {
	.map-section .map-header::after {
		content: "";
		border-left: 1px solid var(--accent-color, #f0d4bc);
		height: 70px;
	}
}

/* -- Fancybox -- */
/* слайдер без границ */
.f-carousel__dots {
	--f-carousel-dot-opacity: 1;
	--f-carousel-dot-hover-opacity: .65;
	--f-carousel-dot-width: 100%;
	--f-carousel-dot-height: 6px;
	--f-carousel-dots-width: 30px;
	--f-carousel-dots-height: 6px;
	--f-carousel-dot-radius: 12px;
	gap: 15px;
	bottom: -40px;
}

.f-carousel__dots li.is-current .f-carousel__dot {
	background-color: var(--carousel-dot-current-color, #587b88);
}