@charset 'UTF-8';

@font-face {
	font-display: swap;
	font-family: "Cocon";
	src: url("fonts/Cocon_Regular.eot");
	src: local("Cocon_Regular"), url("fonts/Cocon_Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Cocon_Regular.woff") format("woff"), url("fonts/Cocon_Regular.woff2") format("woff2"),
		url("fonts/Cocon_Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

html {
	min-height: 100%;
	font-size: 9px;
	scroll-behavior: smooth;
	height: 100%;
}

:root {
	--orange: #e54e25;
	--purple: #5b3390;
	--red: #b3274c;
	--text: #333;
	--bg: #f7f5fa;
	--peach: rgb(251, 227, 221);

	--font: "Manrope", sans-serif;
	--cocon: "Cocon", sans-serif;

	--transition: 0.5s all ease;

	--l: 9rem;
	--m: 5rem;
	--s: 3.5rem;

	--animation-delay: 0.6s;
	--animation-duration: 0.4s;

	--animation-distance: 25%;
	--animation-distance-big: 50%;
}

/* ::selection {
	background-color: var(--light);
} */

body {
	position: relative;
	min-height: 100%;
	/* height: 100%; */
	margin: 0;
	padding: 0;
	font-size: 2rem;
	line-height: 1.25;
	font-family: var(--font);
	font-weight: 500;
	color: var(--text);
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	overflow-x: hidden;
	background: url(../_img/main__bg.jpg) no-repeat top center / cover;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
h5,
h6 {
	position: relative;
	padding: 0;
	margin: 0;
	line-height: 1.25;
	font-weight: 500;
}

h1,
.h1 {
	font-size: 4.8rem;
	line-height: 1.16;
}

h2,
.h2 {
	font-size: 4.2rem;
	font-weight: 600;
}

h3,
.h3 {
	font-size: 3rem;
	font-weight: 700;
}

.lead {
	font-size: 2.4rem;
}

sup {
	font-size: 50%;
}

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

h2 + p,
h3 + p {
	margin-top: 30px;
}

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

section > h2 {
	max-width: 50%;
}

p:only-child {
	margin-bottom: 0;
}

img {
	max-width: 100%;
	display: block;
}

a[href^="tel:"],
a[href^="mailto:"],
.logo a {
	white-space: nowrap;
	text-decoration: none;
	color: currentColor;
	border-bottom: none;
}

a[data-animation] {
	display: inline-block;
}

.button {
	display: inline-block;
	padding: 0;
	border: none;
	outline: 0;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	position: relative;
	z-index: 1;
	font-size: 1.6rem;
	transition: var(--transition);
	white-space: nowrap;
	padding: 20px 30px;
	background-color: var(--main);
	border-radius: 30px 30px 0 30px;
	text-align: center;
}

.button:hover {
	transform: translateY(-4px);
	color: var(--text);
}

section {
	margin-top: var(--l);
}

a {
	color: currentColor;
	transition: var(--transition);
	text-decoration: none;
}

a:hover {
	color: var(--main);
}

a.boss {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	left: 0;
	z-index: 100;
}

.rel {
	position: relative;
}

ul {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
	margin-top: var(--s);
}

ul li {
	position: relative;
	padding-left: 55px;
	margin-top: 25px;
}

ul li:before {
	content: "";
	width: 20px;
	height: 7px;
	background: var(--orange);
	position: absolute;
	left: 0;
	top: 14px;
	border-radius: 0 5px 0 5px;
}

.muted {
	opacity: 0.4;
}

.container {
	max-width: 1360px;
	padding: 0 1.5rem;
	margin: 0 auto;
	width: 100%;
}

[class*="__wrap"] {
	display: flex;
	margin: 0 -1.5rem;
	justify-content: space-between;
	/* flex-wrap: wrap; */
}

[class*="col-"] {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	flex: 0 0 auto;
}

.col-0 {
	flex: 1 0 0%;
}

.col-1 {
	width: 25%;
}

.offset-1 {
	margin-left: 25%;
}

.col-2 {
	width: 50%;
}

.offset-2 {
	margin-left: 50%;
}

.col-3 {
	width: 75%;
}

.offset-3 {
	margin-left: 75%;
}

.col-4 {
	width: 100%;
}

/* user styles */

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.fullscreen {
	min-height: 100vh;
	background: url() no-repeat center center / cover;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	position: relative;
}

header {
	position: relative;
	z-index: 1;
}

.header__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 30px;
}

.hero__text {
	margin-top: 130px;
}

.hero__text h1 {
	color: var(--purple);
	font-family: var(--cocon);
}

.header__top .button {
	background-color: var(--purple);
	display: flex;
	color: #fff;
	padding: 15px 30px 15px 15px;
}

.header__place {
	display: flex;
	align-items: center;
}

.header__top .button img,
.header__place img {
	margin-right: 10px;
}

.header__contact {
	font-weight: 700;
}

nav {
	background: #ffffff;
	box-shadow: 0 22px 34px -30px rgba(88, 47, 142, 0.53);
	border-radius: 0 40px 40px 40px;
	display: flex;
	padding: 10px 10px 10px 60px;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
}

nav .button {
	/* margin-left: auto; */
	background: var(--peach);
	color: var(--orange);
	border-radius: 30px;
}

.hero-cta {
	display: flex;
	align-items: center;
	color: var(--purple);
	margin-top: 100px;
}

.hero-cta img {
	margin-right: 20px;

	animation: swing 2s ease;
	animation-iteration-count: infinite;
	transform-origin: top center;
}

@keyframes swing {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-30px);
	}
	100% {
		transform: translateY(0px);
	}
}

.hero__wrap {
	align-items: center;
}

.features__wrap h2 {
	color: var(--purple);
}

.feature__box {
	background-color: var(--red);
	border-radius: 70px 70px 0 70px;
	color: #fff;
	padding: 60px 40px;
}

.features__wrap img {
	margin: 50px 0;
}

.why_we h2,
.doctors h2,
.clinic h2,
.motto h2 {
	font-family: var(--cocon);
	font-size: 6.4rem;
	line-height: 7rem;

	background: linear-gradient(165deg, #e54e25 18%, #b3274c 98%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	color: var(--orange);
}

.col-33 {
	width: 33.333333%;
}

.why_we__wrap {
	flex-wrap: wrap;
	align-items: stretch;
}

.why_we__wrap .col-33 {
	counter-increment: col33;
	margin-top: 50px;
}

.why_we-item {
	border-radius: 0 30px 0 30px;
	color: #fff;
	position: relative;
	padding: 25px;
	height: 100%;
}

.why_we-item .lead {
	margin-bottom: 30px;
}

.why_we-item:after {
	position: absolute;
	content: counter(col33);
	opacity: 0.2;
	font-size: 140px;
	bottom: 0;
	right: 60px;
	line-height: 1;
	font-family: var(--cocon);
}

.col-33:nth-child(1) .why_we-item {
	background-color: var(--red);
}

.col-33:nth-child(2) .why_we-item {
	background-color: var(--purple);
}

.col-33:nth-child(3) .why_we-item {
	background-color: var(--orange);
}

.col-33:nth-child(4) .why_we-item {
	background-color: #ffc825;
}

.col-33:nth-child(5) .why_we-item {
	background-color: #fd9a7f;
}

.col-33:nth-child(6) .why_we-item {
	background-color: #714aa7;
}

.video__title h3 {
	color: #fff;
	background-color: var(--orange);
	padding: 30px;
	border-radius: 0 0 30px 0;
	margin-left: -30px;
	margin-top: 100px;
}

.monitor_video .video {
	border-radius: 50px;
	overflow: hidden;
}

.services h3 {
	color: var(--purple);
}

.services .button {
	background: var(--orange);
	color: #fff;
	display: inline-flex;
}

.services .button img {
	margin-right: 10px;
}

.bonus__wrap {
	align-items: flex-start;
}

.bonus h2 {
	color: var(--purple);
}

.question h2 {
	color: var(--orange);
}

.bonus-box .button {
	display: inline-flex;
	background-color: var(--purple);
	color: #fff;
}

.bonus-box .button img {
	margin-right: 10px;
}

.bonus-box {
	background: #ffffff;
	box-shadow: 0 0 32px 0 rgba(88, 47, 142, 0.12);
	border-radius: 40px;
	padding: 40px 50px;
	height: 100%;
}

.bonus-box.bonus {
	background: #fff url(../_img/gift_icon-2.svg) 100% bottom no-repeat;
}

.question {
	background: #fff url(../_img/brochure_icon.svg) 105% 120px no-repeat;
}

.spoiler {
	color: var(--red);
	font-size: 3rem;
	font-weight: 600;
	position: relative;
	display: flex;
	margin-top: 20px;
	align-items: center;
}

.spoiler:after {
	content: "";
	display: inline-block;
	width: 40px;
	height: 40px;
	display: flex;
	background: var(--red) url(../_img/spoiler__arrow.svg) no-repeat center center;
	border-radius: 50%;
	margin-left: 10px;
	transition: var(--transition);
}

.spoilers .spoiler-text {
	padding: 30px 0 50px 0;
}

.spoiler.active:after {
	transform: rotate(180deg);
}

.doctors__wrap {
	flex-wrap: wrap;
	justify-content: flex-start;
}

.doctor-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 40px;
	width: calc(33% - 50px);
	margin-right: 50px;
}

.doc-name {
	color: var(--purple);
	font-weight: 600;
	margin-top: 20px;
}

.doc-img {
	border-radius: 50% 50% 50% 0;
	overflow: hidden;
	height: 250px;
	width: 250px;
	background-color: #fff;

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

.doc-category {
	border-radius: 20px;
	font-size: 70%;

	background-color: var(--peach);
	color: var(--red);
	text-align: center;
	margin-top: -10px;
	padding: 5px 10px;
}

.doctor-item .button {
	background-color: var(--orange);
	color: #fff;
	display: inline-flex;
}

.doctor-item .button img {
	margin-right: 10px;
}

.reviews h2 {
	color: var(--purple);
}

.review-slider {
	margin-top: 30px;
}

.reviews-item {
	background-image: linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
	border-radius: 0 90px 90px 90px;
	padding: 80px 100px;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.reviews-item:after {
	content: "";
	position: absolute;
	top: 60px;
	left: 40px;
	width: 143px;
	height: 114px;
	background: url(../_img/quote.svg) no-repeat;
	z-index: 0;
}

.review-text {
	flex: 0 0 auto;
	width: 58%;
	z-index: 1;
}

.review-text h3 {
	color: var(--purple);
}

.review-doc {
	flex: 0 0 auto;
	width: 38%;

	display: flex;
	margin-top: 0px;
	align-items: center;
}

.review-doc img {
	width: 150px;
	height: 150px;
	background: #ffffff;
	box-shadow: 0 10px 15px -5px #fff1fa;
	border-radius: 50% 50% 50% 0;
}

.review-doc-name {
	color: var(--purple);
	font-weight: 600;
}

.clinic {
	background: url(../_img/logo_big.svg) center top no-repeat;
	padding-top: 100px;
}

.clinic_text {
	font-size: 3rem;
	color: var(--purple);
	font-weight: 600;
}

.clinic__head {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.advantages__wrap {
	margin-top: 60px;
}

.big-text {
	font-family: var(--cocon);
	font-size: 20rem;
	line-height: 45rem;

	background: linear-gradient(165deg, #e54e25 18%, #b3274c 98%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	color: var(--orange);
	opacity: 0.2;

	transform: rotate(360deg);
	writing-mode: tb-rl;

	white-space: nowrap;
}

.spoiler-title {
	background: var(--bg);
	border-radius: 0 30px 0 30px;
	height: 95px;
	padding: 30px;
	color: var(--purple);
	font-weight: 600;
	font-size: 2.4rem;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	padding-right: 30px;
	cursor: pointer;
	position: relative;
	justify-content: space-between;
	transition: var(--transition);
}

.spoiler-title:hover {
	transform: translateY(-5px);
}

.spoiler-title:after {
	content: "";
	width: 24px;
	height: 12px;
	display: block;
	background: url(../_img/spoiler-arrow__orange.svg) no-repeat;
	flex: 0 0 auto;
	margin-left: 40px;
	transition: var(--transition);
}

.spoiler-title.active:after {
	transform: rotate(-180deg);
}

.spoiler-text {
	padding: 30px;
	display: none;
	padding-top: 10px;
}

.advantage-item {
	margin-bottom: 60px;
}

.motto {
	text-align: center;
}

.contacts__wrap {
	margin-top: 40px;
}

.contacts h2,
.contacts h3 {
	color: var(--purple);
}

.worktime-item {
	display: flex;
	justify-content: space-between;
}

.contact-button .button {
	background: var(--purple);
	color: #fff;
	display: inline-flex;
}

.contact-button .button img {
	margin-right: 10px;
}

.contact__map {
	margin-top: 60px;
	border-radius: 60px;
	overflow: hidden;
}

#contact-map {
	height: 600px;
}

footer {
	text-align: center;
	margin-top: 40px;
	margin-bottom: 60px;
}

section {
	position: relative;
	overflow: visible;
}

.background {
	position: absolute !important;
	z-index: -1;
	border-radius: 50%;
}

.header__mobile {
	display: none;
}

.programs-content {
	background: #ffffff;
	box-shadow: 0 0 32px 0 rgba(88, 47, 142, 0.12);
	border-radius: 30px;
	margin-top: var(--l);
	overflow: hidden;
}

.tr {
	display: flex;
	align-items: stretch;
}

.tr > .td {
	flex: 0 0 auto;
	width: 22%;
	text-align: center;
	padding: 10px 20px;
}

.tr > .td:not(:last-child) {
	border-right: 1px solid #ebe5ef;
}

.tr.left-align {
	/* align-items: flex-start; */
}

.tr.left-align > .td {
	text-align: left;
}

.tr:nth-of-type(odd) {
	background: var(--bg);
}

.tr.table-header {
	font-size: 3rem;
	font-weight: 700;
	background-color: #fff;
	border-bottom: 1px solid #ebe5ef;
}

.td.row-title {
	font-weight: 600;
	color: var(--purple);
	width: 34%;
	text-align: left;
	padding: 10px 45px;
}

.tr.theader {
	background-color: var(--purple);
	color: #fff;
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	padding: 10px 0;
	justify-content: center;
	border-bottom: 1px solid var(--bg);
	position: relative;
	cursor: pointer;
}

.tr.theader:after {
	content: "\2193";
	display: inline;
	margin-left: 20px;
	font-size: 2rem;
	font-weight: normal;
	line-height: 50px;
	transition: var(--transition);
}

.tr.theader.active:after {
	transform: rotate(180deg);
}

.table-header .td {
	color: var(--orange);
}

.table-header .td.row-title {
	color: var(--purple);
}

.tr.prices {
	font-size: 4.2rem;
	background: var(--orange);
	color: #fff;
	font-weight: 600;
}

.table-wrapper {
	display: none;
}

.doc-text span {
	font-size: 80%;
	opacity: 0.7;
}

/* user styles */

@media screen and (max-width: 768px) {
	:root {
		--l: 4rem;
		--m: 3rem;
		--s: 2rem;
	}

	html {
		font-size: 7px;
		overflow-x: hidden;
	}

	body {
		min-width: 320px;
		overflow-x: hidden;
		font-size: 2rem;
	}

	header {
		position: relative;
		padding: 0;
	}

	header nav {
		display: none;
	}

	.container {
		padding: 1px 15px;
	}

	[class*="__wrap"] {
		flex-direction: column;
		margin: 0;
	}

	[class*="col-"] {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		margin-top: 20px;
	}

	[class*="offset-"] {
		margin-left: 0;
	}

	.header__top {
		display: none;
	}

	.header__mobile {
		display: block;
		text-align: center;
	}

	.logo {
		display: flex;
		justify-content: center;
		margin-top: 20px;
		margin-bottom: 10px;
	}

	.header__contact-mobile {
		font-size: 3.2rem;
		font-weight: 800;
		margin-top: 10px;
	}

	.header__mobile .button {
		display: inline-flex;
		background-color: var(--purple);
		color: #fff;
		margin-top: 10px;
	}

	.button {
		font-size: 2rem;
	}

	.header__mobile .button img {
		margin-right: 10px;
	}

	.video__title h3 {
		margin-top: -60px;
		margin-left: 0;
	}

	.reviews-item {
		display: block;
	}

	.review-text,
	.review-doc {
		width: 100%;
	}

	.big-text,
	.clinic_text,
	.hero-cta {
		display: none;
	}

	.td {
		font-size: 14px;
	}

	.td.row-title {
		padding: 10px 15px;
		font-size: 12px;
	}

	.doctors__wrap {
		flex-direction: row;
		gap: 20px;
	}

	.doctor-item {
		width: calc(50% - 20px);
		margin-right: 0;
	}

	/* .doctor-item {
		width: calc(50% - 30px);
		margin-right: 30px;
	}

	.doctors__wrap {
			flex-direction: row;
	} */

	.button {
		padding: 10px 15px;

		display: flex;
		align-items: center;
		font-size: 1.6rem !important;
	}

	.doc-text {
		margin-top: 20px;
	}

	.doc-img {
		width: 70%;
		aspect-ratio: 1 / 1;
		height: auto;
	}

	.why_we__wrap .col-33 {
		margin-top: 20px;
	}
}

form#sendmail {
	padding: 40px;
}

input,
textarea {
	border: none;
	border-bottom: 1px solid var(--purple);
	padding: 1rem;
	width: 100%;
	background: transparent;
	margin-top: 2rem;
	color: var(--text);
	border-radius: 0;
}

textarea {
	border: 1px solid rgba(255, 255, 255, 0.6);
}

form .button {
	margin-top: 5rem;
	background-color: var(--orange);
	color: #fff;
}

form .button:hover {
	background-color: var(--purple);
	color: #fff;
}

form *::placeholder {
	color: var(--purple);
}

.required-text {
	margin-top: 20px;
	color: var(--purple);
	font-size: 1.2rem;
}

.checkbox {
	position: relative;
	padding-left: 40px;
	cursor: pointer;
	font-size: 1.6rem;
	margin-top: 2rem;
	color: var(--purple);
}

.checkbox a {
	text-decoration: underline;
}

.checkbox:before {
	content: "";
	width: 24px;
	height: 24px;
	border: 2px solid var(--purple);
	background: transparent;
	display: block;
	position: absolute;
	left: 0;
	text-align: center;
}

.checkbox.active:before {
	content: "\2713";
	color: var(--orange);
}

.form__success {
	border-radius: 30px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: -1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-direction: column;
	text-align: center;
	padding: 80px 40px;
	opacity: 0;
	transition: var(--transition);
	transform: scale(0.5);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.form__success p {
	text-align: center;
}

.form__success p:first-child {
	border-top: 1px solid var(--orange);
	padding-top: 30px;
	margin-bottom: 20px;
}

.form__success p:last-child {
	padding-bottom: 30px;
	border-bottom: 1px solid var(--orange);
}

.form__success.active {
	opacity: 1;
	transform: scale(1);
	z-index: 1000;
}

.input__error {
	color: red;
	font-size: 12px;
}

html.overflow {
	overflow: hidden;
}

.modal {
	position: fixed;
	/* фиксированное положение */
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(247, 27, 141, 0.256);
	/* цвет фона */
	z-index: 1050;
	opacity: 0;
	/* по умолчанию модальное окно прозрачно */
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	/* анимация перехода */
	pointer-events: none;
	/* элемент невидим для событий мыши */
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

/* при отображении модального окно */
.modal.open {
	opacity: 1;
	pointer-events: auto;
	overflow-y: auto;
}

/* ширина модального окна и его отступы от экрана */
.modal-dialog {
	position: relative;
	width: auto;
	margin: 10px;
	transform: translateY(-100%);
	opacity: 0;
	transition: all 0.3s ease-in;
	display: none;
}

.modal.open .modal-dialog {
	opacity: 1;
	transform: translateY(100px);
}

/* свойства для кнопки "Закрыть" */
.modal-form__close {
	font-family: sans-serif;
	font-size: 40px;
	font-weight: normal;
	line-height: 1;
	color: var(--purple);
	/* text-shadow: 0 1px 0 #fff; */
	text-decoration: none;
	position: absolute;
	right: 20px;
	top: 10px;
	z-index: 10;
}

@media screen and (max-width: 480px) {
	.modal-form__close {
		color: var(--purple);
		top: 20px;
		right: 20px;
	}

	.modal__content h4 {
		width: calc(100% - 60px);
	}
}

/* свойства для кнопки "Закрыть" при нахождении её в фокусе или наведении */
.modal-form__close:focus,
.modal-form__close:hover {
	color: #000;
}

.modal__content {
	/* padding: 60px; */
	background: #fff;
	margin: 0 auto;
	position: relative;
	max-width: 600px;
	border-radius: 30px 30px 0 30px;
}

/* программы */
.price-list {
	display: grid;
	gap: 4px;
	width: 100%;
	line-height: 1.25;
}

.price-list__total {
	color: var(--purple);
	margin-top: 10px;

	font-size: 3.6rem;
	font-weight: 600;
}

/* Заголовок */
.price-list__header {
	display: grid;
	grid-template-columns: 50px 1fr 80px;
	font-weight: bold;
	background-color: var(--bg);
	padding: 10px 4px;
	border-radius: 6px;
	align-items: center;
	color: var(--purple);
}

/* Элементы списка */
.price-list__item {
	display: grid;
	grid-template-columns: 50px 1fr 80px;
	padding: 10px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	background-color: #fff;
	align-items: center;
}

/* Ячейки */
.price-list__cell {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.price-list__cell--service {
	justify-content: flex-start;
	text-align: left;
	padding-left: 8px;
	word-break: break-word;
}

.price-list__cell--price,
.price-list__cell--qty {
	font-weight: bold;
}

.price-list__cell--number {
	opacity: 0.5;
	font-size: 0.8em;
}

.price-list .title {
	display: none;
}

/* Адаптивность на мобильных */
@media (max-width: 600px) {
	.program-icon {
		display: none;
	}

	.price-list .title {
		display: block;
		font-size: 24px;
		font-weight: bold;
		margin-bottom: 12px;
		color: var(--purple);
	}

	.price-list__header {
		grid-template-columns: 1fr 30px;
		gap: 10px;
		padding: 12px;
	}

	.price-list__item {
		grid-template-columns: 1fr 30px;
		gap: 10px;
		padding: 12px;
	}

	.price-list__cell {
		justify-content: flex-start;
		text-align: left;
		font-weight: normal;
		position: relative;
	}

	.price-list__cell--number {
		display: none;
	}

	.price-list__cell--qty {
		font-weight: bold;
	}

	.price-list__cell--service {
		padding-left: 0;
	}
}

.programms-tabs {
	margin-top: var(--m);
	display: flex;
	padding: 0 var(--s);
}

.programms-tabs__item {
	cursor: pointer;
	border: 1px solid #e0e0e0;
	background-color: #fff;
	border-radius: 2rem 2rem 0 0;
	padding: 2rem 4rem;
	border-bottom: 0;
	position: relative;
	transition: 0.3s all ease;

	transform: translateY(2rem);
	z-index: 0;
	opacity: 0.5;

	&.active {
		border: 1px solid var(--purple);
		border-bottom: 0;
		opacity: 1;
		transform: translateY(1px);
		z-index: 2;

		box-shadow: 0 10px 15px -10px inset rgba(91, 51, 144, 0.1);
	}

	&:hover {
		opacity: 1;
		transform: translateY(1px);
	}
}

.programms-tabs__content {
	background-color: #fff;
	position: relative;
	z-index: 1;
	border: 1px solid var(--purple);
	border-radius: 2rem;
	padding: 3rem;
}

.programms-tabs__item-title {
	display: flex;
	align-items: flex-start;
	gap: 6rem;
}

@media (max-width: 1024px) {
	.programms-tabs__content {
		padding: 2rem;
	}

	.programms-tabs__item-title {
		gap: 3rem;
	}
}

.programms-tabs__item-header {
	/* flex: 0 0 auto; */

	.title {
		font-size: 2.4rem;
		font-weight: 600;
		color: var(--purple);

		position: relative;
		display: flex;
		align-items: center;

		&::after {
			content: attr(data-num);
			font-size: 50%;
			right: 0;
			background-color: var(--peach);
			color: var(--red);
			margin-top: -10px;
			margin-left: 5px;
			border-radius: 2rem;
			padding: 0.5rem 1rem;
			white-space: nowrap;
		}
	}

	.text {
		opacity: 0.7;
		font-size: 80%;
		margin-top: 1rem;
	}
}

.programms-tabs__item-price {
	flex: 0 0 auto;

	display: flex;
	flex-direction: column;

	.small {
		font-size: 80%;
	}

	.price {
		font-size: 2.4rem;
	}
}

@media (max-width: 600px) {
	.programms-tabs__item {
		padding: 1rem 2rem 1rem 2rem;
		transform: translateY(2.5rem);
	}

	.programms-tabs__item-title {
		flex-direction: column;
		gap: 1rem;

		.text {
			display: none;
		}
	}

	.programms-tabs__item-price {
		gap: 0rem;
		line-height: 1;
	}
}

[data-tab-content] {
	display: none;
}

[data-tab-content].active {
	display: block;
}

.programm__detail-tabs {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
	overflow: auto;
}

.programm__detail-tabs-item {
	cursor: pointer;
	background-color: var(--bg);
	border-radius: 2rem;
	padding: 1rem 2rem;
	border-bottom: 0;
	position: relative;
	transition: 0.3s all ease;
	z-index: 0;
	color: var(--purple);
	font-size: 80%;
	font-weight: 600;
	white-space: nowrap;

	&.active,
	&:hover {
		background: var(--purple);
		color: #fff;
	}
}

.bonus__wrap {
	align-items: stretch;
	margin-top: 2rem;
}

.bonus-item {
	padding: 3rem;
	border-radius: 0 3rem 0 3rem;

	background-color: rgba(251, 227, 221, 0.3);

	backdrop-filter: blur(5px);
	height: 100%;
}

.bonus-title {
	font-size: 2.4rem;
	margin-bottom: 2rem;
	font-weight: 600;
	color: var(--red);
}

.gift {
	position: absolute;
	bottom: 0;
	left: calc(50% - 133px);
	z-index: -1;
}

.contacts {
	z-index: 0;
}

.cta {
	position: relative;
	z-index: 1;
	background-image: linear-gradient(108deg, #effcff 18%, #f6f4fb 52%, #fff8f1 67%, #fae2e7 100%);
	border-radius: 0 3rem 0 3rem;
	padding: 3rem;
	margin-top: 6rem;

	display: flex;
	justify-content: center;
	gap: 40px;
	overflow: hidden;
	align-items: stretch;

	img {
		position: absolute;
		z-index: -1;

		&.cta-1 {
			left: calc(50% - 130px);
		}

		&.cta-2 {
			left: 0%;
		}
	}
}

.cta__text,
.cta__form {
	flex: 0 0 42%;
}

.cta__text {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 40px 0;
}

@media screen and (max-width: 600px) {
	.cta {
		flex-direction: column;
		gap: 2rem;

		img {
			display: none;
		}

		.cta__text {
			padding: 0;
			gap: 2rem;

			h2 {
				font-size: 3.2rem;
			}
		}

		form {
			padding: 0;

			.button {
				width: 100%;
				text-align: center;
				justify-content: center;
			}
		}
	}
}
