:root {
	--black: #000;
	--white: #fff;
	--light: #FCFCFC;
	--accent: #6E00D8;
	--hover: #8300FA;
	--pink: #CE3AFF;
	--purple: #D1BAFF;
	--gray: #fafafa;
	--purple-bright: #B78DFF;
	--purple-light: #F0E9FF;
	--text-purple: #3A006F;
	--font: "Cygre";
	--transition: .3s;
}
.row { --bs-gutter-x: 2rem; }
* {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font);
	min-height: 100vh;
	display: grid;
	grid-template-rows: auto 1fr auto;
	grid-template-columns: 100%;
	color: var(--text-purple);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	transition: var(--transition);
	color: var(--accent);
}

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

a img.alignright {
	display: block;
	margin: 0 1em 1em 0;
}

a img.alignleft {
	float: left;
	margin: 0 1em 1em 0;
}

a img.aligncenter {
	display: block;
	margin: 1em auto;
}

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

img.alignright {
	float: right;
	margin: 0 0 1em 1em;
}

img.alignleft {
	float: left;
	margin: 0 1em 1em 0;
}

img.aligncenter {
	display: block;
	margin: 1em auto;
}

input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([class*=ymaps]),
textarea,
select {
	margin-bottom: 2rem;
	outline: none;
	width: 100%;
	border: none;
	padding: 1.25rem 2.5rem;
	transition: var(--transition);
	border: 2px solid var(--purple-bright);
	border-radius: 1.5rem;
}

input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([class*=ymaps]).wpcf7-not-valid,
textarea.wpcf7-not-valid,
select.wpcf7-not-valid {
	border-color: red;
}

textarea {
	height: 130px;
}

input[type=checkbox] {
	border: 2px solid var(--text-purple);
	width: 24px;
	height: 24px;
	background-color: transparent;
	transition: var(--transition);
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	margin-right: 0.75rem;
	flex: 0 0 auto;
	position: relative;
	border-radius: 0.5rem;
}

input[type=checkbox]:checked:before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	left: calc(50% - 5px);
	top: calc(50% - 5px);
	background-color: var(--text-purple);
}

.sprite-icon {
	width: 1.25rem;
	height: 1.25rem;
	flex: 0 0 auto;
	fill: var(--text-purple);
}

blockquote {
	background-color: var(--purple-light);
	padding: 1.5rem;
	line-height: 1.33;
	border-radius: 1.5rem;
	font-weight: 500;
}

blockquote p:last-child {
	margin-bottom: 0;
}

@media (min-width: 1400px) {

	.container-xxl,
	.container-xl,
	.container-lg,
	.container-md,
	.container-sm,
	.container {
		max-width: 1296px;
	}
}

.wpcf7-acceptance {
	font-size: .875rem;
	display: block;
}

.wpcf7-acceptance a {
	color: var(--text-purple);
}

.wpcf7-acceptance .wpcf7-list-item-label {
	margin-bottom: 0;
}

.wpcf7-list-item {
	margin: 0;
}

.wpcf7-list-item>label {
	display: flex;
	align-items: center;
}

.wpcf7-not-valid-tip {
	display: none;
}

.wpcf7-spinner {
	display: none;
}

.modal-content {
	border: none;
	padding: 40px 50px 45px;
}

.modal-header {
	display: block;
	border: unset;
	padding: 0;
	text-align: center;
}

.modal-title {
	font-weight: 700;
	font-size: 32px;
	text-align: center;
	margin-bottom: 30px;
	font-family: var(--font);
	text-transform: uppercase;
	color: var(--black);
}

.modal-close {
	position: absolute;
	right: 25px;
	top: 25px;
	cursor: pointer;
}

.modal-body {
	padding: 0;
}

.btn {
	padding: 1.125rem 4rem;
	font-weight: 700;
	border: none;
	outline: none;
	cursor: pointer;
	transition: var(--transition);
	font-size: 1rem;
	color: var(--white);
	line-height: 1.3;
	border-radius: 6.25rem;
	display: inline-block;
	background-color: var(--accent);
	text-decoration: none;
	text-align: center;
}

.btn:hover {
	background-color: var(--hover);
	color: var(--white);
}

.btn-sm {
	padding: 1.125rem 1.75rem;
}

.slick-slide {
	margin-right: 1rem;
}

.slick-list {
	margin-right: -1rem;
}

.slick-dots {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	font-size: 0;
	margin-top: 2rem;
}

.slick-dots li button {
	padding: 0;
	outline: none;
	width: 1rem;
	height: 1rem;
	transition: var(--transition);
	cursor: pointer;
	background-color: var(--purple-light);
	border: none;
	border-radius: 50%;
}

.slick-dots li button:hover {
	background-color: var(--accent);
}

.slick-dots li.slick-active button {
	background-color: var(--accent);
}

.slick-single .slick-list {
	margin-right: 0;
}

.slick-single .slick-slide {
	margin-right: 0;
}

@media (min-width: 992px) {
	.slick-slider.dots-hide .slick-dots {
		display: none;
	}
}

#scroll_up {
	background-color: var(--black);
	color: var(--white);
	position: fixed;
	z-index: 20;
	right: 30px;
	bottom: 30px;
	width: 40px;
	height: 40px;
	line-height: 35px;
	text-align: center;
	cursor: pointer;
	display: none;
	transition: background-color 0.3s ease-in-out;
}

#scroll_up svg {
	max-width: 20px;
}

#scroll_up svg path {
	fill: var(--black);
}

#scroll_up:hover {
	background-color: var(--white);
}

.wp-pagenavi {
	display: flex;
	justify-content: center;
	text-align: center;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 3rem 0 4rem;
}

.wp-pagenavi a,
.wp-pagenavi span {
	text-decoration: none;
	min-width: 44px;
	min-height: 44px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--text-purple);
}

.wp-pagenavi a[rel=prev] {
	font-size: 0;
	background-image: url("data:image/svg+xml,%0A%3Csvg width='11' height='22' viewBox='0 0 11 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.1508 0.907265C10.5701 1.26669 10.6187 1.89799 10.2593 2.31731L2.81708 10.9999L10.2593 19.6824C10.6187 20.1017 10.5701 20.733 10.1508 21.0924C9.73147 21.4519 9.10017 21.4033 8.74074 20.984L0.740743 11.6506C0.419752 11.2762 0.419752 10.7236 0.740743 10.3491L8.74074 1.01573C9.10017 0.596405 9.73147 0.547843 10.1508 0.907265Z' fill='%233A006F'/%3E%3C/svg%3E%0A");
	background-position: center;
	background-position: center;
	background-repeat: no-repeat;
}

.wp-pagenavi a[rel=prev]:hover {
	background-image: url("data:image/svg+xml,%0A%3Csvg width='11' height='22' viewBox='0 0 11 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.1508 0.907265C10.5701 1.26669 10.6187 1.89799 10.2593 2.31731L2.81708 10.9999L10.2593 19.6824C10.6187 20.1017 10.5701 20.733 10.1508 21.0924C9.73147 21.4519 9.10017 21.4033 8.74074 20.984L0.740743 11.6506C0.419752 11.2762 0.419752 10.7236 0.740743 10.3491L8.74074 1.01573C9.10017 0.596405 9.73147 0.547843 10.1508 0.907265Z' fill='%23fff'/%3E%3C/svg%3E%0A");
}

.wp-pagenavi a[rel=next] {
	font-size: 0;
	background-image: url("data:image/svg+xml,%0A%3Csvg width='11' height='22' viewBox='0 0 11 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.849227 0.907265C1.26855 0.547843 1.89985 0.596405 2.25927 1.01573L10.2593 10.3491C10.5803 10.7236 10.5803 11.2762 10.2593 11.6506L2.25927 20.984C1.89985 21.4033 1.26855 21.4519 0.849227 21.0924C0.429901 20.733 0.381339 20.1017 0.740762 19.6824L8.18294 10.9999L0.740762 2.31731C0.381339 1.89799 0.429901 1.26669 0.849227 0.907265Z' fill='%233A006F'/%3E%3C/svg%3E%0A");
	background-position: center;
	background-position: center;
	background-repeat: no-repeat;
}

.wp-pagenavi a[rel=next]:hover {
	background-image: url("data:image/svg+xml,%0A%3Csvg width='11' height='22' viewBox='0 0 11 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.849227 0.907265C1.26855 0.547843 1.89985 0.596405 2.25927 1.01573L10.2593 10.3491C10.5803 10.7236 10.5803 11.2762 10.2593 11.6506L2.25927 20.984C1.89985 21.4033 1.26855 21.4519 0.849227 21.0924C0.429901 20.733 0.381339 20.1017 0.740762 19.6824L8.18294 10.9999L0.740762 2.31731C0.381339 1.89799 0.429901 1.26669 0.849227 0.907265Z' fill='%23fff'/%3E%3C/svg%3E%0A");
}

.wp-pagenavi span.current {
	background-color: #9D64FF;
	font-weight: 600;
	color: var(--white);
}

.wp-pagenavi a:hover {
	background-color: var(--hover);
	color: var(--white);
}

.section {
	padding: 3.5rem 0;
}

.banner + .section,
.page-head + .section {
	padding-top: 7rem;
}
.section.single{padding-top: 3.5rem;}
.section:last-child {
	padding-bottom: 6.25rem;
}

.section-last {
	padding-bottom: 7.5rem;
}

.section-bg {
	padding: 6.25rem 0;
}

.section-title {
	font-weight: 600;
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 2rem;
	color: var(--text-purple);
	text-align: center;
}

.section-text {
	max-width: 600px;
	margin: 0 auto 2.5rem;
}

.section-text.mx-0 {
	max-width: 100%;
}

.section-content {
	font-size: 1rem;
	line-height: 1.4;
}

.section-content img {
	border-radius: 1rem;
}

.section-content ul {
	list-style-type: none;
	padding: 0;
	margin: 0 0 1em;
}

.section-content ul li {
	display: flex;
	gap: 1rem;
	padding-left: 1rem;
}

.section-content ul li+li {
	margin-top: .625rem;
}

.section-content ul li:before {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 5px solid var(--purple-light);
	flex: 0 0 auto;
	background-color: var(--text-purple);
}

/*.section-content ol {
	list-style-type: none;
	padding: 0;
	margin: 0 0 1em;
	counter-reset: custom-counter;
}

.section-content ol li {
	display: flex;
	gap: 1rem;
	counter-increment: custom-counter;
	padding-left: 1rem;
}

.section-content ol li+li {
	margin-top: .625rem;
}

.section-content ol li:before {
	content: counter(custom-counter);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	font-size: .875rem;
	flex: 0 0 auto;
	font-weight: 600;
	color: var(--text-purple);
	background-color: var(--purple-light);
	line-height: 1;
}*/

.section-content h2 {
	font-size: 2rem;
	font-weight: 600;
	color: var(--accent);
}

body.author .section-content h2 {
	color: var(--text-purple);
}

.section-content p {
	margin-bottom: 1em;
}

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

.section-content blockquote {
	margin-bottom: 1em;
}

.section-content .consultation {
	margin: 4rem 0;
}

.section-content .consultation__img {
	top: 2rem;
}

.section-tag {
	padding: .8rem 1.5rem;
	border-radius: 6.25rem;
	border: 1px solid var(--white);
	background-color: rgba(255, 255, 255, 0.64);
	line-height: 1;
	text-transform: lowercase;
	gap: 0.5rem;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	margin-bottom: 1rem;
}

.section-separator {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--purple-bright);
	font-size: 1rem;
	font-weight: 500;
	gap: 1.5rem;
	margin: 1.5rem 0;
}

.section-separator span:first-child,
.section-separator span:last-child {
	height: 2px;
	background-color: var(--purple-bright);
	display: flex;
	align-items: center;
	flex-grow: 1;
}

.section-separator span:first-child:before,
.section-separator span:last-child:before {
	content: "";
	display: block;
	border-radius: 50%;
	background-color: var(--purple-bright);
	width: 8px;
	height: 8px;
}

.section-separator span:last-child {
	flex-direction: row-reverse;
}

.page-head {
	padding: 7rem 0;
	overflow: hidden;
}

.page-head .section-title {
	margin-bottom: 0;
}

@media (min-width: 992px) {
	.page-head.has-thumb .page-head__wrapper {
		max-width: 63.5%;
	}
	.page-head.has-thumb {
		min-height: 400px;
		padding-top: 1.875rem;
	}
}

.rounded-48 {
	border-radius: 2.5rem;
}
.rounded-24 {
	border-radius: 1.5rem;
}
.rounded-12 {
	border-radius: .7rem;
}

.nav-menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}

.header__menu ul {
	gap: 3.2rem;
}

.nav-menu ul li a {
	text-decoration: none;
	color: var(--text-purple);
	display: block;
	padding: .25rem 0;
}

.breadcrumbs {
	color: var(--text-purple);
	margin-bottom: 2rem;
}

.breadcrumbs a {
	color: var(--text-purple);
	text-decoration: none;
}

.breadcrumbs a:hover {
	color: var(--hover);
}

.header {
	background-color: var(--purple-light);
}

.header__logo img {
	max-width: 72px;
	max-height: 23px;
}

.header__btn .btn {
	min-width: 300px;
}

.header__phone a {
	text-decoration: none;
}

.header__contacts {
	border-radius: 2rem;
}

.header__bottom {
	padding: 1.75rem 0;
}

.banner {
	min-height: 520px;
	position: relative;
	overflow: hidden;
}

.banner__title {
	line-height: 1.14;
	margin-bottom: 1.5rem;
}

.banner__text {
	line-height: 1.33;
}

.banner__img {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 35%;
}

.banner+.results {
	padding-top: 7.5rem;
}

.btn__callback {
	max-width: 100px;
	position: fixed;
	right: 120px;
	bottom: 120px;
	cursor: pointer;
	background: var(--purple);
	border-radius: 50%;
}

.advantage-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem 2rem 1.25rem;
	border-radius: 1rem;
	background-color: var(--purple-light);
}

.advantage-item__icon {
	background-color: var(--white);
	width: 140px;
	height: 140px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.14;
	font-weight: 700;
}

.advantage-item__icon img {
	max-width: 92px;
	max-height: 92px;
}

.advantage-item__title {
	margin-top: .875rem;
	line-height: 1.2;
	font-weight: 600;
}

.advantage-item__text {
	margin-top: .75rem;
	line-height: 1.33;
}

.advantage-item__icon+.advantage-item__text {
	margin-top: 1.375rem;
}

.service-item {
	border-radius: 2.5rem;
}

.service-item__img img {
	border-radius: 1.5rem;
}

.service-item__title {
	padding: 1.25rem 0 .5rem;
	line-height: 1.15;
}

.service-item__title a {
	text-decoration: none;
}

.pricelist__wrapper {
	padding: 0 2.5rem;
	border-radius: 2.5rem;
}

.pricelist-item {
	padding: 1rem 0;
	line-height: 1.15;
}

.pricelist-item:first-child {
	padding-top: 0 !important;
}
.pricelist-item:last-child {
	padding-bottom: 0 !important;
}

.pricelist-item+.pricelist-item {
	border-top: 1.5px solid var(--purple);
	position: relative;
}

.pricelist-item+.pricelist-item:before,
.pricelist-item+.pricelist-item:after {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: var(--purple);
	position: absolute;
	top: -4px;
	left: 0;
}

.pricelist-item+.pricelist-item:after {
	left: unset;
	right: 0;
}

.doctor-item {
	border-radius: 2.5rem;
	padding: 1rem;
}

.doctor-item.large {
	border-radius: 2.5rem;
}

.doctor-item__img {
	flex: 0 0 auto;
	/*margin-right: 1rem;*/
	max-width: 288px;
}

.doctor-item__img img {
	border-radius: 1rem;
}

/* .doctor-item__meta {
	padding-left: 1.25rem;
} */

.doctor-item__title {
	line-height: 1.11;
}

.doctor-item__text {
	margin-top: 1.5rem;
	line-height: 1.33;
}

.doctor-item__text p {
	margin-bottom: 0;
}

.doctor-item__content {
	border-top: 1.5px solid var(--purple);
	position: relative;
	padding-top: 1.5rem;
	margin-top: 1.5rem;
}

.doctor-item__content:before,
.doctor-item__content:after {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: var(--purple);
	position: absolute;
	top: -4px;
	left: 0;
}

.doctor-item__content:after {
	left: unset;
	right: 0;
}

.doctors__slider .slick-slide {
	margin-right: 0;
}

.doctors__slider .slick-dots {
	margin-top: 1rem;
}

.post-item {
	border-radius: 2.5rem;
	padding: 1rem;
}
.post-item.rounded-24 {
	border-radius: 1.5rem;
}

.post-item.small {
	border-radius: 2.5rem;
	padding-bottom: 3rem;
}

.post-item__img img {
	border-radius: 1.5rem;
}

.post-item__title {
	line-height: 1.11;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.post-item__title a {
	text-decoration: none;
}

.post-item__text {
	line-height: 1.33;
	margin-top: 1.5rem;
}

.post-item__tags {
	gap: 1rem;
	display: flex;
	flex-wrap: wrap;
}

.post-item__tags .tag-item:hover {
	background-color: #9D64FF;
	/*cursor: auto;*/
}

.tag-item {
	background-color: #9D64FF;
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 6.25rem;
	padding: 0.875rem 1.25rem;
	transition: var(--transition);
	cursor: pointer;
	height: fit-content;
}
.tag-item.light {
	background-color: #F0E9FF;
	color: var(--text-purple);
}

.tag-item:hover {
	background-color: var(--hover);
	color: var(--white);
}

.category-alert {
	border-radius: 3rem;
	padding: 3rem 4rem;
	margin: 0 0 7rem;
}

.row + .category-alert {
	margin-top: 6rem;
}

.category-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.category-item {
	font-size: 1rem;
	line-height: 1;
	text-decoration: none;
	padding: .625rem .75rem;
	border-radius: 6.25rem;
	background-color: var(--purple-light);
	color: var(--text-purple);
	text-transform: lowercase;
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 0.5rem;
	white-space: nowrap;
}

.category-item.active {
	background-color: var(--accent);
	color: var(--white);
	font-weight: 600;
}

.category-item:hover {
	background-color: var(--hover);
	color: var(--white);
}

.category-decription {
	padding-top: 2rem;
}

.category-callback {
	padding-top: 2rem;
}

.category-img {
	position: absolute;
	left: calc(50% + 175px);
	bottom: 0;
	top: 0;
}

.tags-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 4rem;
}

.consultation {
	position: relative;
}

.consultation:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100vw + 429px);
	height: 100%;
	z-index: -1;
	background-image: url("./assets/images/bg_consultation.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.consultation__title {
	margin: 0 auto 5.625rem;
	max-width: 580px;
}

.consultation__subtitle {
	margin-bottom: 2rem;
}

.consultation__img {
	position: absolute;
	right: 0;
	top: 0;
	width: 160px;
	height: 160px;
	font-size: 1.625rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-weight: 700;
	line-height: 1.1;
	padding: 1rem;
	background-image: url('./assets/images/star.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.section-content .consultation__btn {
	max-width: 100%;
}

.consultation__img img {
	max-width: 260px;
	max-height: 260px;
}

.consultation .slick-dots li button {
	background-color: var(--white);
}

.consultation .slick-dots li button:hover {
	background-color: var(--purple-bright);
}

.consultation .slick-dots li.slick-active button {
	background-color: var(--purple-bright);
}

.consultation__btn {
	max-width: 418px;
	padding-top: 5rem;
}

.result-item {
	border-radius: 3rem;
	padding: 1rem;
}

.result-item__images {
	/*margin-right: 2rem;*/
	flex: 0 0 auto;
	max-width: 716px;
}

.main-content .result-item__images {
	max-width: 476px;
}

.result-item__images img {
	border-radius: 2rem;
}

.result-item__content {
	padding-top: 1rem;
}

.result-item__subtitle {
	margin-top: .625rem;
}

.result-item__text {
	margin-top: 2rem;
	line-height: 1.4;
}

.footer {
	padding: 4rem 0;
}

.footer::before {
	content: '';
	display: block;
	background-color: var(--purple);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: calc(50% - 300px);
}

.footer__logo img {
	max-width: 92px;
	height: 96px;
}

.footer__menu ul {
	gap: 1rem;
}

.footer__contacts a {
	text-decoration: none;
}

.footer__alert {
	color: #dedaff;
}

.post-author__img {
	margin-right: 1.25rem;
	flex: 0 0 auto;
}

.post-author__img img {
	border-radius: 50%;
}

.post-author__date {
	margin-left: 1.25rem;
}

.post-headlines {
	border-radius: 1.5rem;
}

.post-headlines ol li a {
	color: var(--text-purple);
	text-decoration: none;
}

.post-headlines ol li a:hover {
	color: var(--hover);
}

.post-headlines ol {
	gap: 1rem;
}

.author__img {
	/*padding-top: 3.75rem;*/
}

.author__img img {
	border-radius: 3rem;
}

.author__rate {
	padding: 2.5rem 2.5rem 2rem;
	margin-top: 3rem;
	border-radius: 3rem;
	gap: 1rem;
}

.author__rate-list {
	gap: 1rem;
}

.author__rate img {
	max-height: 40px;
}

.about__description {
	padding-top: 2rem;
}

.about__slider .slick-slide>div {
	display: flex;
	gap: 1rem;
	flex: 0 0 auto;
}

.about__slider .slick-slide>div+div {
	margin-top: 1rem;
}

.about__slider .slick-slide a {
	width: fit-content!important;
}

.about__slider img {
	border-radius: 1rem;
	max-width: 307px;
	width: 100%;
}

.about+.section-content {
	padding-top: 6.25rem;
}

.reviews__title {
	padding: 3rem;
	border-radius: 2.5rem;
}

.review-item {
	padding: 1.5rem;
	border-radius: 4.5rem;
	display: flex;
	gap: 3rem;
}

.review-item__content {
	padding-top: 1.25rem;
}

.review-item__img {
	flex: 0 0 auto;
	max-width: 350px;
}

.review-item__img img {
	border-radius: 3rem;
}

.review-item__text {
	line-height: 1.33;
}

.modal {
	display: none;
	max-width: 800px;
	background-color: var(--purple-light);
	padding: 4rem;
	border-radius: 3rem;
	overflow: unset;
	height: auto;
}

.modal .btn,
.modal .btn span {
	gap: 1rem;
}

.modal .btn .sprite-icon {
	width: 1.75rem;
	height: 1.75rem;
	fill: var(--white);
}

.f-button.is-close-btn {
	top: 1rem !important;
	right: 1rem !important;
}

.fancybox__backdrop {
	background: var(--purple);
}

.bg-purple {
	background-color: var(--purple);
}

.bg-purple-light {
	background-color: var(--purple-light);
}

.bg-purple-bright {
	background-color: var(--purple-bright);
}

.bg-gray {
	background-color: var(--gray);
}

.text-purple {
	color: var(--purple) !important;
}

.text-purple-light {
	color: var(--purple-light) !important;
}

.text-purple-dark {
	color: var(--text-purple) !important;
}

.text-purple-bright {
	color: var(--purple-bright) !important;
}

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

.text-nounderline {
	text-decoration: none;
}

.sidebar {
	width: 300px;
}

.main-content {
	max-width: 836px;
}

.advantage-item__title {
	font-size: 1.875rem;
}

.wp-caption {
	max-width: 100%;
}

.home .consultation__img {
	top: 20px;
}

#map {
	height: 350px;
}

#map iframe {
	border-radius: 1.5rem;
}

.admin-bar .fancybox__toolbar.is-absolute {
	top: 32px;
}


.accordion__item {
	margin-bottom: 1rem;
	background-color: var(--purple-light);
	padding: 1rem 2.5rem;
	border-radius: 2.5rem;
}

.accordion__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-size: 1.25rem;
	color: var(--text-purple);
	font-weight: 700;
	line-height: 1;
}

.accordion__chev {
	transition: transform .25s ease;
}

.accordion__chev.is-open {
	transform: rotate(180deg);
}

.accordion__content {
	display: none;
	/*padding-left: 30px;*/
}

.accordion__content p:last-child {
	margin-bottom: 0;
}

.accordion__content-inner {
	overflow: hidden;
	padding-top: .5rem;
}

.consultation-2 {
	background-image: url("./assets/images/bg_consultation.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin: 3.5rem 0;
	padding: 7rem 0;
}
.consultant__text{margin: 20px 0;}
.checklist-ul ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	column-count: 2;
}

.checklist-ul ul li {
	margin-bottom: 1rem;
}

.checklist-ul ul li:before {
	content: '✅';
	display: inline-block;
}

.consultant {
	background-image: url("./assets/images/iphone.webp");
	background-position: 83% 65px;
	background-repeat: no-repeat;
	background-size: 110px;
}

.consultant__wrapper {
	max-width: 66%;
}

/* .appeal__img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(50% - 500px);
	width: 400px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom;
} */

.ol-inline ol {
	display: flex;
	flex-direction: column;
	gap: 1em;
	list-style-position: inside;
	padding-left: 0;
	margin: 0;
}

.section.bg-gray {
	margin: 3.5rem 0;
	padding: 7rem 0;
}

.footer__policy {
	max-width: 300px;
}

.relation-post + .relation-post {
	border-top: 1px solid var(--text-purple);
}

#modal_callback input[type="submit"] {
	margin-bottom: 2rem;
	min-height: 68px;
	border-radius: 1.5rem;
}

/* Звёзды под фото — компактный вариант */
.rating-under-photo {
  display: flex;
  justify-content: center;
  margin-top: .75rem;
}
.rating-pill {
  display: inline-flex;
  align-items: center;
  padding: 0 .4rem .1rem .4rem;      /* меньше паддинги пилюли */
  border-radius: 9999px;
}
.rating-pill--purple { background: var(--purple-bright); }
.rating-pill--sm .star svg { width: 20px; height: 20px; }  /* уменьшенные звёзды */
.rating-pill .star svg { fill: #EAD8FF; }
.rating-pill .star.is-filled svg { fill: #FFD166; }

/* Точный размер звёзд */
.rating-pill--sm .emoji-star{
  font-size: 20px;
  line-height: 1;
  display: block;
  transform: translateY(1px);
}
.rating-pill{ gap:5px; padding: 3px 10px 8px 10px; }

@media (max-width: 992px) {
	.rating-under-photo {
  margin-top: 1.5rem;
}
.rating-pill--sm .emoji-star{
  /*font-size: 27px;*/
}
}
.appeal {
  position: relative;
  overflow: hidden;
}

.appeal__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;          
  right: 50%;     
  margin-right: 50px;  
  background-repeat: no-repeat;
  background-size: cover;         /* во всю доступную область */
  background-position: center;    /* можно center left, если нужно сильнее сместить */
  border-radius: 0;               /* без скруглений */
}

/* фон показываем только с md (у вас так и задумано) */
@media (max-width: 767.98px) {
  .appeal__img { display: none; }
  .text-xs-center{text-align:center;}
  .consultation-2   .btn{padding: 1.125rem 4rem;}
}
 
h2{font-size: 2rem; font-weight: 600}
h3{font-size: 1.25rem; font-weight: 600}
h4{font-size: 1.15rem; font-weight: 600}
h5{font-size: 1rem; font-weight: 600}
.accordion__title h3{margin-bottom: 0;}
.mt80{margin-top: 80px;}


@media (max-width: 560px) {
  .mt80{margin-top: 40px; margin-bottom: 20px}
  .section-text{padding: 0 20px} 
}

.jic{justify-items: center; align-content: center;}
.jc{ align-content: center;}
.textcolorgray{color: #666;}
.services .result-item__images{margin-right: 0;}

.services a {
	color: var(--text-purple);
	text-decoration: none;
	display: block;
	width: 100%;
}
.wp-caption-text{text-align: center;}

@media (min-width: 767.98px) {
.section.section-content .col-12.col-md-6 .section-tag {
    margin-bottom:40px;


}
.section.section-content .col-12.col-md-6:has(.section-tag) {
    margin-top: -80px;
}
.section.section-content :has(.col-12.col-md-6 .section-tag) {
    margin-top: 60px;
}
}



@media (max-width: 940px) {
	.consultant { background-position: 88% 90px; background-size: 110px; }
}
@media (max-width: 560px) {
	.consultant {background-position: 88% 90px; background-size: 110px;}
}
@media (max-width: 380px) {
	.consultant {background-position: 88% 120px; background-size: 110px;}
}