@charset "UTF-8";
/*
Theme Name: Mental Land
Details URI: https://update.goodwinpress.ru/themes/mental-changelog.html
Theme URI: https://goodwinpress.ru/wp-tema-mental-land
Author: GoodwinPress
Author URI: https://goodwinpress.ru/
Description: Адаптивная легкая одностраничная тема для создания лэндинга психолога или психотерапевта, развернутого на CMS WordPress. Посадочная страница с готовыми разделами, предназначенными для презентации специалиста, демонстрации услуг, возможностей и экспертности, с переводом в панель записи. Чистый оптимизированный код, БЭМ-нотация, удобство настройки, высокая скорость запуска.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: mental-land
Domain Path: /languages
Tags: theme-options, custom-colors, custom-menu, custom-logo, editor-style, translation-ready
*/

/*
===============================
= Содержание файла стилей =
============================================

01 Глобальные переменные
02 Очистка
03 Глобальные стили (кнопки, инпуты и т.п.)
04 Подключение основного шрифта
05 Базовые контейнеры
06 Шапка сайта
07 Меню в шапке
08 Мобильне меню
09 Панель записи
10 Шаблон контейнера для разделов Главной
11 Раздел Главной - Постер
12 Раздел Главной - Бегущая строка
13 Раздел Главной - Услуги
14 Раздел Главной - О себе
15 Раздел Главной - Видео-отзывы
16 Раздел Главной - Текст + изображение
17 Раздел Главной - Преимущества
18 Раздел Главной - Обычные отзывы
19 Раздел Главной - Форматы работы
20 Раздел Главной - FAQ
21 Раздел Главной - Блог
22 Раздел Главной - Галерея
23 Раздел Главной - Контакты
24 Раздел Главной - Полезные ссылки
25 Образец оформления разметки в блоках Произвольный контент
26 Подвал сайта
27 Списки сайта
28 Разметка внутренних страниц
29 Сайдбар для внутренних страниц
30 Оформление для 404 страницы
31 Кастомизация каруселей
32 Список комментариев
33 Форма отправки комментариев
34 Таблицы
35 Компоненты записи, блоки, галереи
36 Кнопки соц. сетей
37 Поп-ап Cookies
38 Оформление для внутренних страниц
*/


/*
===============================
= 01 Глобальные переменные
============================================
*/

:root {
	/* основная гарнитура */
	--fontFamily: "Golos Text", sans-serif;

	/* заголовки */
	--fontTitle: "Unbounded", sans-serif;

	/* нормальное начертание */
	--normal: 400;

	/* полужирное */
	--semiBold: 500;

	/* жирное */
	--bold: 600;

	/* цвет шрифта */
	--black: #4c525e;

	/* фон контейнера сайта и блоков */
	--mainBg: rgb(244 240 247 / 62%);

	/* серый для второстепенных надписей */
	--greyColor: rgba(55, 67, 93, 0.8);

	/* белый для фонов и кнопок */
	--white: #ffffff;

	/* цвет бордюров */
	--borderColor: #dee3e7;

	/* минимальная ширина ПК контейнера */
	--width: 1300px;

	/* минимальная ширина на моб */
	--widthSmall: 700px;

	/* цвет шрифта плейсхолдеров */
	--placeholder: #999999;

	/* радиус закругления */
	--bradius: 1rem;
}


/*
===============================
= 02 Очистка
============================================
*/

* {
	vertical-align: baseline;
	margin: 0;
	border: 0;
	padding: 0;
	font: inherit
}

html,
::after,
::before {
	box-sizing: border-box;
}

body {
	line-height: 1
}

main {
	display: block
}

strong {
	font-weight: var(--semiBold);
}

em,
i {
	font-family: Georgia, serif;
	font-style: italic
}

ol,
ul {
	list-style: none
}

blockquote,
q {
	quotes: none
}

blockquote::after,
blockquote::before,
q::after,
q::before {
	content: ""
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

iframe {
	max-width: 100%
}

embed,
img,
object,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
	border: 0
}

.post-content figure {
	margin: 0 0 1.3rem;
	max-width: 100%;
}

figure > a {
	display: block
}

.aligncenter {
	margin: 0 auto 1.2rem
}

.alignleft {
	float: left
}

.alignright {
	float: right
}

big {
	font-size: 131.25%
}

ins {
	text-decoration: none
}

a {
	background-color: transparent
}

abbr[title] {
	border-bottom: 0;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted
}

small {
	font-size: 80%
}

sub,
sup {
	position: relative;
	vertical-align: baseline;
	font-size: 75%;
	line-height: 0
}

sub {
	bottom: -.25em
}

sup {
	top: -.5em
}

input,
textarea {
	vertical-align: middle;
	background: var(--white);
}

pre {
	font-family: monospace;
	font-size: 1rem;
	overflow-y: auto;
}

[hidden] {
	display: none
}


/*
 ===============================
 = 03 Глобальные стили
 ============================================
 */

.wp-block-separator,
hr {
	display: block;
	clear: both;
	margin: 2em auto;
	border-top: 0;
	border-bottom: 1px solid var(--borderColor);
	width: 100%;
	height: 1px
}

:focus,
:focus:not(:focus-visible) {
	outline: none;
}


:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(21, 156, 228, 0.4);
}

input::-moz-placeholder,
select::-moz-placeholder {
	color: var(--placeholder)
}

input:-ms-input-placeholder,
select:-ms-input-placeholder {
	color: var(--placeholder)
}

input:-moz-placeholder-shown {
	color: var(--placeholder)
}

input:-ms-input-placeholder {
	color: var(--placeholder)
}

input::placeholder,
input:placeholder-shown,
select::placeholder {
	color: var(--placeholder)
}

::-moz-selection {
	color: var(--white);
	background-color: rgb(84, 82, 198);
}

::selection {
	color: var(--white);
	background-color: rgb(84, 82, 198);
}

legend {
	display: table;
	padding: 0;
	max-width: 100%;
	white-space: normal;
	color: inherit
}

progress {
	vertical-align: baseline
}

textarea {
	overflow: auto
}

p {
	margin-bottom: 1.4rem
}

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

button {
	font-family: var(--fontFamily);
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 0;
	-webkit-font-smoothing: inherit;
	-moz-osx-font-smoothing: inherit;
	background: 0 0;
	cursor: pointer
}

.gallery-caption,
.wp-caption,
.wp-caption-text {
	font-size: 15px;
	color: var(--greyColor);
}

.wp-caption.alignleft {
	margin-right: 1.2rem;
}

.wp-caption.alignright {
	margin-left: 1.2rem;
}

img.alignright {
	float: right;
	margin-left: 1.2rem;
}

img.alignleft {
	float: left;
	margin-right: 1.2rem;
}

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

.visually-hidden,
.screen-reader-text {
	position: absolute;
	margin: -1px;
	width: 1px;
	height: 1px;
	clip: rect(0 0 0 0);
}

.disable-scroll {
	overflow: hidden;
	width: 100%;
}

a {
	color: var(--black);
	text-decoration: underline;
	transition: color 0.3s ease-in-out
}

a:hover {
	color: var(--hoverColor);
	text-decoration: underline;
	transition: color 0.3s ease-in-out
}

.sticky,
.bypostauthor {
	background-color: initial
}

.required {
	color: red
}

label {
	margin-bottom: 0.5rem;
	font-family: var(--fontFamily);
	font-size: 0.92rem;
	color: var(--black);
	font-weight: var(--normal);
	display: block;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='tel'],
input[type='range'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='datetime'],
input[type='datetime-local'],
input[type='color'],
select,
textarea {
	padding: 0.5rem 1rem;
	display: block;
	width: calc(100% - 2rem);
	min-height: 2rem;
	-webkit-transition: border-color .15s ease-in-out;
	transition: border-color .15s ease-in-out;
	color: var(--black);
	border: 1px solid #d9d9e4;
	border-radius: 6px;
	outline: none;
	background-color: var(--white);
	-webkit-box-shadow: none;
	box-shadow: none;
	font-family: var(--fontFamily);
	font-size: 1rem;
	line-height: 1.5;
	-webkit-appearance: none;
	-webkit-backface-visibility: hidden;
	appearance: none;
	backface-visibility: hidden;
}

select {
	width: 100%;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='range']:focus,
input[type='date']:focus,
input[type='month']:focus,
input[type='week']:focus,
input[type='time']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='color']:focus,
select:focus,
textarea:focus,
textarea:focus-visible {
	border-color: #5a7ee8 !important;
	outline: none;
	box-shadow: none;
}

textarea {
	max-width: 100%;
	height: 150px;
	padding-top: 1rem;
	padding-bottom: 1rem;
	resize: vertical;
}


.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6,
.custom-section h2,
.custom-section h3,
.custom-section h4,
.custom-section h5,
.custom-section h6 {
	margin-bottom: 1.2rem;
	font-family: var(--fontTitle);
	line-height: 140%;
	font-weight: var(--bold)
}

.post-content h1 {
	font-size: 1.6rem
}

.post-content h2 {
	font-size: 1.5rem
}

.post-content h3 {
	font-size: 1.4rem
}

.post-content h4 {
	font-size: 1.3rem
}

.post-content h5 {
	font-size: 1.2rem
}

.post-content h6 {
	font-size: 1.1rem
}

.btn,
.wpcf7-submit,
.comment-form .submit {
	position: relative;
	z-index: 1;
	display: inline-block;
	padding: 1.35rem 1.7rem;
	background-color: var(--btnBg);
	color: var(--btnColor);
	border-radius: calc(var(--bradius) * 2);
	border-top-right-radius: 0;
	font-family: inherit;
	font-size: 1rem;
	font-style: normal;
	font-weight: var(--semiBold);
	line-height: 1;
	text-align: center;
	cursor: pointer;
	text-decoration: none !important;
	overflow: hidden;
	transition: all 0.5s;
}

.btn:hover,
.wpcf7-submit:hover,
.comment-form .submit:hover {
	color: var(--btnColor);
	box-shadow: inset 0 0 0 3.3rem var(--btnBgHover);
}


/*
===============================
= 04 Подключение гарнитур
============================================
*/

@font-face {
	font-display: swap;
	font-family: 'Unbounded';
	font-style: normal;
	font-weight: 600;
	src: url('assets/fonts/unbounded/unbounded-v7-cyrillic_latin-600.woff2') format('woff2')
}

@font-face {
	font-display: swap;
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 400;
	src: url('assets/fonts/golos/golos-text-v3-cyrillic_latin-regular.woff2') format('woff2')
}

@font-face {
	font-display: swap;
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 500;
	src: url('assets/fonts/golos/golos-text-v3-cyrillic_latin-500.woff2') format('woff2')
}



/*
===============================
= 05 Базовые контейнеры
============================================
*/

html {
	font-size: 17px;
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
}

@media (max-width: 1200px) {
	html {
		font-size: 16px;
	}
}

@media (max-width: 500px) {
	html {
		font-size: 15px;
	}
}

body {
	font-family: var(--fontFamily);
	font-size: 1rem;
	font-style: normal;
	font-weight: var(--normal);
	line-height: 165%;
	color: var(--black);
	background-color: var(--white);
	word-wrap: break-word;
	font-variant-numeric: lining-nums;
}

.site-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	margin: 0 auto;
	background: linear-gradient(to bottom, var(--mainBg), var(--white));
}

.container {
	position: relative;
	z-index: 1;
	width: min(var(--width), 100% - 6rem);
	margin-inline: auto;
}

@media (max-width: 1200px) {
	.container {
		width: min(var(--widthSmall), 100% - 4rem);
	}
}

@media (max-width: 430px) {
	.container {
		width: min(var(--widthSmall), 100% - 2rem);
	}
}

.container-fullwidth {
	max-width: 100%
}

.site-main {
	position: relative;
	flex: 1;
	margin-bottom: 3rem;
}

.site-main__wrap > * {
	margin-bottom: 10rem;
}

@media (max-width: 500px) {
	.site-main__wrap > * {
		margin-bottom: 7rem;
	}
}

.site-main__wrap > *:last-child {
	margin-bottom: 3rem;
}

.section--animate {
	opacity: 0;
	transform: translateY(30px);
}

.section--animate.section--show {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.8s, transform 1.2s;
}

@media (max-width: 1024px) {
	.section--animate,
	.section--animate.section--show {
		opacity: 1;
		transform: none;
	}
}

/*
===============================
= 06 Шапка сайта
============================================
*/

.site-header {
	margin-bottom: 4rem;
	background-color: var(--posterBg);
	transition: box-shadow 0.4s ease-in-out;
}

@media (max-width: 415px) {
	.site-header {
		margin-bottom: 2rem;
	}
}

.home .site-header {
	margin-bottom: 0;
}

.site-header.is-stick {
	box-shadow: 0 12px 20px 0 rgba(15, 8, 49, .12);
	transition: box-shadow 0.4s ease-in-out;
}

.site-header.is-hide {
	box-shadow: none;
}

.site-header__wrap {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 0;
	transition: padding 0.4s ease-in-out;
}

@media (max-width: 1260px) {
	.site-header__wrap {
		padding: 1.1rem 0;
	}
}

.site-header:is(.is-stick) .site-header__wrap {
	padding: 1.1rem 0;
	border-bottom: none;
}

.site-header__branding {
	position: relative;
	max-width: 260px;
	margin-right: auto;
}

@media (max-width: 1260px) {
	.site-header__branding {
		margin-right: 0;
	}
}

@media (max-width: 600px) {
	.site-header__branding {
		max-width: 120px;
	}
}

.site-header__logo {
	margin-right: auto;
}

.site-header__nav {
	margin-inline: auto;
	padding: 0 2rem;
}

@media (max-width: 1260px) {
	.site-header__nav {
		display: none;
	}
}

.site-title {
	font-size: 1rem;
	line-height: 1;
	font-weight: var(--normal);
}

.site-title__link,
.site-title__link:hover {
	text-decoration: none;
}

.site-header__phone {
	font-size: 1rem;
	color: var(--posterAccent);
	color: var(--posterColor);
	transition: color 0.3s;
}

@media (max-width: 1260px) {
	.site-header__phone {
		margin-inline: auto;
	}
}

.site-header__phone:hover {
	color: var(--posterAccent);
}

#scroll-progress {
	--progressBg: var(--accentColor);
	position: fixed;
	top: 0;
	width: 0%;
	height: 3px;
	background: var(--progressBg);
	z-index: 99999;
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}

.admin-bar-text {
	display: flex;
	align-items: center;
}

.admin-bar-text img {
	width: 18px !important;
	height: 18px !important;
	margin-right: 10px !important;
}



/*
===============================
= 07 Меню в шапке
============================================
*/

.main-menu {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 1260px) {
	.main-menu {
		display: none;
	}
}

.menu-item {
	position: relative;
	font-size: 1rem;
	font-weight: var(--normal);
	line-height: 1;
}

.menu-item:not(:last-child) {
	margin-right: 1.4rem;
}

@media (max-width: 1360px) {
	.menu-item:not(:last-child) {
		margin-right: 1.2rem;
	}
}

.menu-item a {
	position: relative;
	display: block;
	padding: 0.85rem 0;
	text-decoration: none;
	color: var(--posterColor);
	transition: all 0.3s;
}

@media (max-width: 1260px) {
	.menu-item a {
		color: var(--black);
	}
}

.menu-item a:hover {
	color: var(--posterAccent);
}

@media (max-width: 1260px) {
	.menu-item a:hover {
		color: var(--hoverColor);
	}
}

.main-menu li.menu-item-has-children {
	margin-right: 2.5rem !important;
}

@media (max-width: 1360px) {
	.main-menu li.menu-item-has-children {
		margin-right: 2.1rem !important;
	}
}

@media (max-width: 1260px) {
	.menu-item-has-children {
		text-align: center;
	}
}

/* .main-menu .current-menu-item a {
	color: var(--posterAccent);
} */

.main-menu .menu-item-has-children::before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	z-index: 1;
	width: 1.4rem;
	height: 1.4rem;
	background-image: url("assets/img/sprite.svg#arrow-right-hover");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transform: rotate(90deg) translate(-46%, -1.5rem);
}

.main-menu .sub-menu {
	display: none;
	flex-direction: column;
	padding: 1rem 1.5rem;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 999;
	width: 265px;
	background-color: var(--white);
	border-radius: var(--bradius);
	transform: translate(-1.3rem, 0.8rem);
	visibility: hidden;
	box-shadow: 0px 0px 17px 5px rgba(34, 60, 80, 0.1);
	transition: visibility.1s;
}

@media (max-width: 1260px) {
	.mob-menu .sub-menu {
		text-align: center;
	}
}

.main-menu li:hover>.sub-menu {
	display: flex;
	visibility: visible;
	animation: menuUp 0.5s ease;
}

@keyframes menuUp {
	from {
		opacity: 0;
		transform: translate(-1.3rem, 2.3rem);
	}

	to {
		opacity: 1;
		transform: translate(-1.3rem, 0.8rem);
	}
}

.main-menu .sub-menu .menu-item {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 0.92rem;
	text-transform: none;
	letter-spacing: 0;
	background-color: transparent;
	line-height: 140%;
	z-index: 98;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.main-menu .sub-menu .menu-item a {
	padding: 0.6rem 1rem 0.6rem 0;
	display: block;
	color: var(--black);
}

.main-menu .sub-menu .sub-menu .menu-item a:not(:hover) {
	color: var(--black);
	transition: color 0.3s ease;
}

.main-menu .sub-menu .menu-item a:hover {
	color: var(--hoverColor);
	transition: color 0.3s ease;
}

.main-menu .sub-menu .menu-item>.sub-menu {
	left: 50%;
	top: 0;
	transform: translate(51%, -1rem);
	z-index: 99;
}

.main-menu .sub-menu li:hover>.sub-menu {
	animation: subMenuUp 0.5s ease;
}

@keyframes subMenuUp {
	from {
		opacity: 0;
		transform: translate(51%, 0);
	}

	to {
		opacity: 1;
		transform: translate(51%, -1rem);
	}
}

.main-menu .sub-menu li.menu-item-has-children {
	margin-right: 0;
}

.main-menu .sub-menu li.menu-item-has-children::before {
	right: -5px;
	top: 0.7rem;
	z-index: 1;
	width: 16px;
	height: 16px;
	background-image: url("assets/img/sprite.svg#arrow-down");
	transform: rotate(-90deg);
}

.main-menu .sub-menu::after {
	content: "";
	height: 50px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: transparent;
	transform: translateY(-66%);
}

.main-menu .sub-menu .menu-item>.sub-menu::after {
	content: "";
	height: 100%;
	width: 40px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: transparent;
	transform: translateX(-78%);
}

.main-menu li.menu-item-has-children:has(ul:hover)>a {
	color: var(--posterAccent);
}

.main-menu:has(li > .menu-item-has-ancestor) {
	text-indent: -9999px;
}



/*
 ===============================
 = 08 Мобильное меню
 ============================================
 */

.site-header__mob {
	display: none;
}

@media (max-width: 1260px) {
	.site-header__mob {
		display: block;
	}
}

.mobile-menu-btn {
	position: relative;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	margin-left: auto;
	color: var(--posterColor);
	transition: background-color 0.3s;
}

.mobile-menu-btn__line {
	margin: 0 auto;
	position: relative;
	display: block;
	width: 50%;
	height: 3px;
	background-color: transparent;
}

.mobile-menu-btn__line::before {
	content: "";
	position: absolute;
	left: 0;
	top: -4px;
	z-index: 1;
	width: 100%;
	height: 3px;
	background-color: var(--posterColor);
	transition: opacity 0.4s ease-out;
}

.mobile-menu-btn__line::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	z-index: 1;
	width: 100%;
	height: 3px;
	background-color: var(--posterColor);
	transition: opacity 0.4s ease-out;
}

.is-active .mobile-menu-btn__line::before {
	opacity: 0;
}

.is-active .mobile-menu-btn__line::after {
	opacity: 0;
}

.mob-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.mob-menu.is-shown {
	opacity: 1;
	transition: opacity 1s ease-in-out;
}

.mob-menu.is-open {
	opacity: 1;
	transition: opacity 1s ease-in;
}

.no-shadow {
	box-shadow: none !important;
}

.mob-menu li {
	font: var(--bold) 1.4rem/1 var(--fontTitle);
}

@media (max-width: 1260px) {
	.mob-menu li {
		font: var(--bold) 1.2rem/1 var(--fontTitle);
	}
}

@media (max-width: 1024px) {
	.mob-menu li {
		font: var(--bold) 1.1rem/1 var(--fontTitle);
	}
}

.mob-menu li:not(:last-child) {
	margin-right: 0;
}

.mob-menu li a {
	padding: 1.5rem 0;
}

@media (max-width: 1260px) {
	.mob-menu li a {
		padding: 1rem 0;
	}
}

.mobile-nav-panel {
	display: none;
}

@media (max-width: 1260px) {
	.mobile-nav-panel {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		z-index: 999;
		width: 100%;
		height: calc(100dvh - 4rem);
		display: flex;
		flex-direction: column;
		align-items: center;
		display: none;
		padding: 4rem 0;
		background-color: var(--white);
		overflow-y: auto;
		animation: menuOut 0.5s ease-in-out;
	}

	.mobile-nav-panel.is-open {
		display: flex;
		animation: menuIn 0.5s ease-in-out;
	}
}

@keyframes menuIn {
	from {
		display: none;
		transform: translateX(-120%);
	}

	to {
		display: flex;
		transform: translateX(0);
	}
}

@keyframes menuOut {
	from {
		display: flex;
		transform: translateX(0);
	}

	to {
		display: none;
		transform: translateX(-120%);
	}
}

.mobile-close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1001;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2.4rem;
	height: 2.4rem;
	color: var(--black);
	border-radius: 50%;
	border: 1px solid var(--black);
	transform: translate(-1.5rem, 3rem);
}
 
.mobile-close svg {
	width: 1.1rem;
	height: 1.1rem;
}

.mobile-nav-panel__social {
	margin-bottom: 2rem;
}


/*
===============================
= 09 Панель записи
============================================
*/

.site-overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 999;
	background-color: #2e3143;
	opacity: 0;
	transition: left 0.3s, opacity 0.4s;
}

.site-overlay.is-open {
	left: 0;
	opacity: 0.9;
	transition: left 0.3s, opacity 0.4s;
}

.appointment-panel {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 99999;
	width: 100%;
	max-width: 456px;
	height: 100dvh;
	background-color: var(--white);
	box-shadow: 0 10px 20px rgba(121, 121, 139, 0.2);
	transform: translateX(100%);
	transition: transform 0.3s;
 
}

.appointment-panel.is-open {
	transform: translateX(0);
	transition: transform 0.9s;
}

.panel__wrap {
	height: calc(100dvh - 4rem);
	padding: 2rem 3rem;
	overflow-y: auto;
}

@media (max-width: 600px) {
	.panel__wrap {
		padding: 2rem 2rem;
	}
}

.panel__title {
	display: block;
	margin-bottom: 1.8rem;
	font-size: 1.3rem;
	font-family: var(--fontTitle);
	font-weight: var(--bold);
}

@media (max-width: 600px) {
	.panel__title {
		padding-right: 3rem;
		font-size: 1.1rem;
	}
}

.panel__alt {
	display: none;
}

@media (max-width: 600px) {
	.panel__alt {
		display: block
	}

	.panel__wight {
		display: none;
	}
}

.panel__close,
.post-modal__close,
.video-panel__close {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 999;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2.4rem;
	height: 2.4rem;
	color: var(--white);
	border-radius: 50%;
	border: 1px solid var(--white);
	transform: translate(0, 1.5rem);
	transition: transform 0.9s;
}

.appointment-panel.is-open .panel__close {
	transform: translate(-4.5rem, 1.5rem);
}

@media (max-width: 600px) {
	.panel__close {
		left: initial;
		right: 0;
		border-color: var(--black);
	}

	.appointment-panel.is-open .panel__close {
		transform: translate(-2rem, 1.5rem);
	}
}

.video-panel__close {
	left: initial;
	right: 0;
	transform: translate(0, 0);
}

.video-panel.is-open .video-panel__close {
	transform: translate(4rem, 0);
}

@media (max-width: 1200px) {
	.video-panel__close {
		transform: translate(-50%, 0);
	}

	.video-panel.is-open .video-panel__close {
		right: initial;
		left: 50%;
		top: initial;
		bottom: 0;
		transform: translate(-50%, 5rem);
	}
}

.panel__close svg,
.video-panel__close svg {
	width: 1.1rem;
	height: 1.1rem;
	fill: currentColor
}

.panel__descr {
	font-size: 0.92rem;
	line-height: 150%;
	color: var(--greyColor);
}

.panel__list {
	margin-top: 1.8rem;
}

.panel__item {
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: #f9fbff;
	border-radius: var(--bradius);
	transition: background-color 0.3s, color 0.3s;
}

.panel__item:not(:last-child) {
	margin-bottom: 2rem;
}

.panel-item__link {
	position: absolute;
	inset: 0;
	z-index: 1;
	color: var(--black);
}

.panel-item__wrap {
	position: relative;
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 4.4rem 1fr;
	align-items: center;
	line-height: 1;
}

.panel-item__wrap::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 10;
	width: 34px;
	height: 36px;
	background-color: transparent;
	border-top-left-radius: 1rem;
	box-shadow: -17px -17px var(--white);
	transform: translate(75px, -34px);
}

@media (max-width: 1200px) {
	.panel-item__wrap::before {
		box-shadow: -15px -17px var(--white);
		transform: translate(70px, -30px);
	}
}

 @media (max-width: 500px) {
	.panel-item__wrap::before {
		width: 25px;
		height: 36px;
		box-shadow: -5px -17px var(--white);
		transform: translate(66px, -26px);
	}
}  

.panel-item__wrap::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 10;
	width: 34px;
	height: 36px;
	background-color: transparent;
	border-top-left-radius: 1rem;
	box-shadow: -17px -17px var(--white);
	transform: translate(0, 35px);
}

@media (max-width: 500px) {
	.panel-item__wrap::after {
		box-shadow: -5px -10px var(--white);
	}
}

.panel-item__icon {
	padding: 0.85rem 1rem;
	width: 2.4rem;
	height: 2.4rem;
	background-color: var(--white);
	border-bottom-right-radius: 1rem;
}

.panel-item--telegram:hover {
	background-color: #0088cc;
	color: var(--white);
}

.panel-item--whatsapp:hover {
	background-color: #25b75b;
	color: var(--white);
}

.panel-item--phone:hover {
	background-color: #694eb5;
	color: var(--white);
}

.panel-item__text {
	display: block;
	padding: 1.2rem;
	font-size: 0.92rem;
	line-height: 150%;
	text-align: center;
}

.panel-item__qr {
	padding: 1rem;
	padding-top: 0;
	font-size: 0.92rem;
	line-height: 150%;
	text-align: center;
}

@media (max-width: 800px) {
	.panel-item__qr {
		display: none;
	}
}

.panel-item__qr img {
	max-width: 140px;
	margin-inline: auto;
	margin-bottom: 1rem;
	padding: 0.3rem;
	background-color: var(--white);
	border-radius: var(--bradius);
	box-shadow: 1px 0px 35px 3px rgb(74 70 102 / 9%);
}



/*
===============================
= 10 Шаблон контейнера для разделов Главной
============================================
*/

.section__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 3rem;
}

@media (max-width: 1130px) {
	.section__header {
		display: block;
		margin-bottom: 3rem;
		text-align: center;
	}
}

.section__header--center {
	justify-content: center
}

.section__title {
	position: relative;
	display: block;
	max-width: 1024px;
	font-family: var(--fontTitle);
	font-size: 2.2rem;
	line-height: 130%;
	font-weight: var(--bold);
}

@media (max-width: 1130px) {
	.section__title {
		max-width: 100%;
	}
}

@media (max-width: 800px) {
	.section__title {
		font-size: 1.8rem;
		text-align: center;
	}
}

@media (max-width: 430px) {
	.section__title {
		font-size: 1.5rem;
		line-height: 140%;
	}
}

.section__header--center .section__title {
	text-align: center;
}



/*
===============================
= 11 Раздел Главной - Постер
============================================
*/

/*
* Все стили Постера перемещены для быстрой загрузки в шапку,
* поскольку это самый крупный объект в верхней части сайта,
* что позволяет улучшить first contentful paint.
* см файл admin/options/class-header-options.php
*/



/*
===============================
= 12 Раздел Главной - Бегущая строка
============================================
*/

.track__wrap {
	margin-top: 4rem;
}

.running {
	display: flex;
	align-items: center;
	margin-inline: auto;
	border-radius: var(--bradius);
	overflow: hidden;
}

.running__list {
	display: flex;
	margin-inline: auto;
	padding-left: 1.5rem;  
	transform: translateX(0);
}

.running:hover .running__list {
	animation-play-state: paused
}

@keyframes text-scroll {
	0% {
		transform: translate3d(0, 0, 0);
	}

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

.running__item {
	position: relative;
	width: 280px;
	height: 300px;
	background-color: var(--white);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: var(--bradius);
	box-shadow: 0px 6px 35px -5px rgb(74 70 102 / 9%);
	overflow: hidden;
}

.running__item:not(:last-child) {
	margin-right: 1.5rem;
}

 .running__caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	padding: 2rem 1.3rem;
	font-size: 1.1rem;
	line-height: 150%;
	font-weight: var(--semiBold);
	color: var(--white);
	text-align: center;
	border-top-left-radius: 2rem;
	border-top-right-radius: 2rem;
	transition: padding 0.4s ease-in-out;
 }

 .running__item:hover  .running__caption {
	padding: 2.6rem 1.3rem;
	transition: padding 0.4s ease-in-out;
 }

 
/*
===============================
= 13 Раздел Главной - Услуги
============================================
*/

.problems__list {
	display: grid;
	gap: 3rem;
	grid-template-columns: repeat(2, 1fr);
	padding: 3rem;
	background-color: var(--white);
	border-radius: calc(var(--bradius) * 2);
}

@media (max-width: 1200px) {
	.problems__list {
		display: block;
	}

	.problems__list>*+* {
		margin-top: 2rem;
	}
}

@media (max-width: 500px) {
	.problems__list {
		padding: 0;
		background-color: transparent
	}
}


.problem-item {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	border-radius: var(--bradius);
	background-color: var(--white);
	box-shadow: 0px 6px 35px -5px rgb(74 70 102 / 9%);
	overflow: hidden;
}

.problem-item__header {
	position: relative;
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 85px 1fr;
	align-items: center;
	padding: 1.4rem;
	background-color: var(--problemsBg);
	border-radius: var(--bradius);
	border-bottom-right-radius: 0
}

@media (max-width: 700px) {
	.problem-item__header {
		display: flex;
		flex-direction: column;
		text-align: center;
	}
}

.problem-item__header--solution {
	background-color: var(--solutionBg);
}

.problem-item__header::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 2rem;
	height: 2rem;
	border-top-right-radius: 1rem;
	background-color: var(--white);
	box-shadow: 11px -11px var(--problemsBg);
	transform: translateY(34px);
}

@media (max-width: 1200px) {
	.problem-item__header::after {
		transform: translateY(32px);
	}
}

@media (max-width: 500px) {
	.problem-item__header::after {
		transform: translateY(30px);
	}
}

.problem-item__header--solution::after {
	box-shadow: 11px -11px var(--solutionBg);
}

.problem-item__title {
	font: var(--bold) 1.4rem/140% var(--fontTitle);
	color: var(--white);
}

.problem-item__sublist {
	padding: 2rem;
}

.problem-item__sublist li {
	position: relative;
	padding-left: 1.85rem;
	font-size: 1.05rem;
}

.problem-item__sublist li:not(:last-child) {
	margin-bottom: 0.6rem;
}

.problem-item__sublist li::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 0;
	width: 1rem;
	height: 1rem;
	background-image: url("assets/img/sprite.svg#marker-star");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.problem-item__icon {
	width: 85px;
	aspect-ratio: 1;
}

.problem-item__text {
	padding: 2rem;
}

@media (max-width: 1260px) {
	.problem-item__text {
		max-width: 680px;
	}
}

@media (max-width: 1200px) {
	.problem-item__text {
		align-self: flex-start;
	}
}

.problems-btn {
	margin-inline: 2rem;
	margin-bottom: 2rem;
	background-color: var(--white);
	color: var(--black);
	border: 1px solid var(--black);
	transition: all 0.4s;
}

@media (max-width: 1200px) {
	.problems-btn {
		margin-left: 0;
		align-self: center;
	}
}

 

.problems-btn:hover {
	background-color: var(--white);
	color: var(--btnColor);
	border-color:  var(--btnBgHover);
	box-shadow: inset 0 0 0 2.3rem  var(--btnBgHover);
	transition: all 0.4s;
}



/*
===============================
= 14 Раздел Главной - О себе
============================================
*/

.about {
	padding: 6rem 0;
	background-color: var(--white);
}

@media (max-width: 430px) {
	.about {
		padding: 3rem 0;
	}
}

.about__person {
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(2, 1fr);
	align-items: end;
}

@media (max-width: 1200px) {
	.about__person {
		display: flex;
		flex-direction: column;
		gap: 2rem;
		align-items: center;
	}
}

.person__img {
	position: relative;
}

@media (max-width: 1200px) {
	.person__img {
		order: 2;
	}
}

@media (max-width: 1200px) {
	.about__content {
		order: 1;
		width: 100%;
	}
}

.about__content .section__title {
	margin-bottom: 2rem;
}

.person-content__consult {
	display: flex;
	align-items: center;
	margin-top: 3rem;
}

@media (max-width: 780px) {
	.person-content__consult {
		flex-direction: column;
		gap: 2rem;
	}
}

.person-content__img {
	max-width: 260px;
	margin-right: 1.8rem;
	border-radius: var(--bradius);
}

@media (max-width: 780px) {
	.person-content__img {
		order: 1;
		max-width: 100%;
		margin-right: 0;
	}
}

.person-content__value {
	display: inline-block;
	font-size: 1.1em;
	line-height: 120%;
	font-weight: var(--semiBold);
}

@media (max-width: 1200px) {
	.person-content__value {
		padding: 2rem;
		border: 1px solid var(--borderColor);
		border-radius: var(--bradius);
		background-color: var(--white);
	}
}

@media (max-width: 780px) {
	.person-content__value {
		width: calc(100% - 4rem);
		text-align: center;
	}
}

.person-content__value strong {
	display: block;
	margin-bottom: 5px;
	font: var(--bold) 2rem/1 var(--fontTitle);
}

.person__wrap {
	position: relative;
}

.person__wrap::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 80%;
	height: 100%;
	background-color: var(--mainBg);
	border-radius: calc(var(--bradius) * 2);
	transform: translate(-1rem, 2rem);
}

@media (max-width: 1200px) {
	.person__wrap::after {
		display: none;
	}
}

.person__photo {
	max-width: 470px;
	margin-left: auto;
	border-radius: var(--bradius);
	box-shadow: 0px 6px 35px -5px rgb(74 70 102 / 9%);
}

@media (max-width: 1200px) {
	.person__photo {
		max-width: 100%;
		margin: 1rem auto 2rem;
	}
}

.about__education {
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(12, 1fr);
	align-items: center;
	margin-top: 6rem;
}

@media (max-width: 1200px) {
	.about__education {
		display: block
	}
}

.education__wrap {
	grid-column: 8 span;
	padding: 3rem;
	background-color: var(--white);
	border-radius: var(--bradius);
	border: 1px solid #f1e6f5;
	box-shadow: 0px 6px 35px -5px rgb(74 70 102 / 9%);
}

@media (max-width: 1200px) {
	.education__wrap {
		padding: 2rem;
	}
}

@media (max-width: 600px) {
	.education__wrap {
		padding: 1rem;
	}
}

.education__list {
	max-height: 436px;
	padding-right: 1rem;
	overflow-y: auto;
}

@media (max-width: 1200px) {
	.education__list {
		max-height: 100%;
		padding-right: 0;
	}
}

.education__list::-webkit-scrollbar-thumb {
	background: var(--accentColor);
}

.education__list::-webkit-scrollbar {
	width: 4px;
	background: #eee
}

.education-item:not(:last-child) {
	margin-bottom: 1.8rem;
}

.education-item {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-left: 2rem;
	padding-right: 1rem;
}

@media (max-width: 600px) {
	.education-item {
		flex-direction: column;
		padding-right: 0;
		padding-bottom: 1.2rem;
	}

	.education-item:not(:last-child) {
		border-bottom: 1px solid #f1e6f5;
	}
}

.education-item::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	width: 1rem;
	height: 1rem;
	background-image: url("assets/img/sprite.svg#marker-star");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.education-item__date {
	position: relative;
	overflow: hidden;
	flex-grow: 1;
	font: var(--bold) 0.9rem/160% var(--fontTitle);
}

@media (max-width: 600px) {
	.education-item__date {
		margin-bottom: 1.2rem;
	}
}

.education-item__date:after {
	content: ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ";
	position: absolute;
	color: #e5e9ee;
}

@media (max-width: 600px) {
	.education-item__date:after {
		display: none;
	}
}

.education-item__value {
	max-width: 400px;
	flex-grow: 1;
}

@media (max-width: 1200px) {
	.education-item__value {
		max-width: 316px;
	}
}

@media (max-width: 600px) {
	.education-item__value {
		max-width: 100%;
	}
}

.education__info {
	grid-column: 4 span;
}

@media (max-width: 700px) {
	.education__info {
		overflow: hidden;
	}
}

.person__docs {
	position: absolute;
	bottom: 0;
	left: 0;
	grid-column: 3 span;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 180px;
	padding: 2rem;
	background-color:  var(--btnBg);
	color: var(--btnColor);
	font: var(--bold) 1rem/120% var(--fontTitle);
	border-radius: var(--bradius);
	border-top-right-radius: 0;
	transform: translate(1rem, -3rem);
	transition: all 0.5s;
}

@media (max-width: 1200px) {
	.person__docs {
		position: relative;
		bottom: initial;
		left: initial;
		width: 100%;
		max-width: 100%;
		transform: translate(0, 0);
	}
}

.person__docs:hover {
	color: var(--btnColor);
	box-shadow: inset 0 0 0 5.3rem var(--btnBgHover);
}

.person__docs svg {
	width: 2.6rem;
	height: 2.6rem;
	margin-bottom: 0.5rem;
	fill: currentColor
}

.person__docs::before,
.contacts-content__btn::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 82px;
	height: 25px;
	background-image: url("assets/img/sprite.svg#curved-arrow");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transform: translate(-6rem, -50%) rotate(34deg);
}

@media (max-width: 1200px) {
	.person__docs::before,
	.contacts-content__btn::before {
		display: none;
	}
}

.diplom-list {
	display: none !important;
}

.diplom-list__img {
	width: 1px;
}

.inform .section__title {
	margin-bottom: 2rem;
}

@media (max-width: 1200px) {
	.inform .section__title {
		text-align: center;
	}
}

.inform__img {
	grid-column: 6 span;
	border-radius: var(--bradius);
}

.person__expirience {
	display: inline-block;
	max-width: 120px;
	padding-left: 1rem;
	font-size: 1.1em;
	line-height: 110%;
	font-weight: var(--semiBold);
}

.person__expirience--desktop {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(5rem);
}

@media (max-width: 1200px) {
	.person__expirience--desktop {
		display: none;
	}
}

.person__expirience--mob {
	display: none;
}

@media (max-width: 1200px) {
	.person__expirience--mob {
		display: inline-block;
		max-width: 100%;
		padding-top: 0;
		padding-left: 0;
		padding: 2rem;
		background-color: var(--white);
		border: 1px solid var(--borderColor);
		border-radius: var(--bradius);
		margin-right: 2.8rem;
	}
}

@media (max-width: 780px) {
	.person__expirience--mob {
		order: 2;
		width: calc(100% - 4rem);
		margin-right: 0;
		text-align: center;
	}
}

.person__expirience strong {
	display: block;
	margin-bottom: 5px;
	font: var(--bold) 2rem/1 var(--fontTitle);
}

.person-content__expirience {
	order: 3;
	width: 100%;
}

.inform__logos {
	display: flex;
	align-items: center;
	width: 100%;
	margin-top: 2rem;
}

@media (max-width: 1200px) {
	.inform__logos {
		justify-content: center;
		margin-bottom: 3rem;
	}
}

.inform__logo {
	position: relative;
	width: 60px;
	padding: 3px;
	aspect-ratio: 1;
	border-radius: 50%;
	background-color: var(--white);
	box-shadow: 0px 6px 35px -5px rgb(83 93 108 / 29%);
}

@media (max-width: 600px) {
	.inform__logo {
		width: 46px;
		outline: 1px solid var(--borderColor);
		box-shadow: none;
	}
}

.inform__logo:nth-child(2) {
	transform: translateX(-1rem);
}

.inform__logo:nth-child(3) {
	transform: translateX(-2rem);
}

.inform__logo:nth-child(4) {
	transform: translateX(-3rem);
}

.inform__logo:nth-child(5) {
	transform: translateX(-4rem);
}

@media (max-width: 1200px) {
	.inform__logo:nth-child(2),
	.inform__logo:nth-child(3),
	.inform__logo:nth-child(4),
	.inform__logo:nth-child(5) {
		transform: none;
		margin: 0 3px;
	}
}

.inform__img {
	width: 60px;
	aspect-ratio: 1;
	border-radius: 50%;
}

@media (max-width: 600px) {
	.inform__img {
		width: 46px;
	}
}

.tooltiptext {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 100;
	width: 200px;
	padding: .75rem 0.5rem;
	font-size: .94rem;
	background-color: rgb(62 62 106 / 82%);
	color:  var(--white);
	text-align: center;
	border-radius: 8px;
	visibility: hidden;
	opacity: 0;
	transform: translate(-20%, -125%);
	transition: opacity .3s
}

.tooltiptext::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	border-width: 10px;
	border-style: solid;
	transform: translate(170%, 20px);
	border-color: rgb(62 62 106 / 82%) transparent transparent
}

.tooltip-parent:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
	transition: opacity .3s
}

@media (max-width: 600px) {
	.inform__logo .tooltiptext,
	.inform__logo:hover .tooltiptext  {
		display: none !important;
	}
}

/*
===============================
= 15 Раздел Главной - Видео-отзывы
============================================
*/


.splide__container {
	box-sizing: border-box;
	position: relative
}

.splide__list {
	backface-visibility: hidden;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important
}

.splide.is-initialized:not(.is-active) .splide__list {
	display: block
}

.splide__pagination {
	-ms-flex-align: center;
	align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0;
	pointer-events: none
}

.splide__pagination li {
	display: inline-block;
	line-height: 1;
	list-style-type: none;
	margin: 0 8px;
	pointer-events: auto
}

.splide:not(.is-overflow) .splide__pagination {
	display: none
}

.splide__progress__bar {
	width: 0
}

.splide {
	position: relative;
	visibility: hidden
}

.splide.is-initialized,
.splide.is-rendered {
	visibility: visible
}

.splide__slide {
	backface-visibility: hidden;
	box-sizing: border-box;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	list-style-type: none !important;
	margin: 0;
	position: relative
}

.splide__slide img {
	vertical-align: bottom
}

.splide__spinner {
	animation: splide-loading 1s linear infinite;
	border: 2px solid #999;
	border-left-color: transparent;
	border-radius: 50%;
	bottom: 0;
	contain: strict;
	display: inline-block;
	height: 20px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px
}

.splide__sr {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
	display: none
}

.splide__toggle.is-active .splide__toggle__pause {
	display: inline
}

.splide__track {
	overflow: hidden;
	position: relative;
	z-index: 0
}

@keyframes splide-loading {
	0% {
		transform: rotate(0)
	}

	to {
		transform: rotate(1turn)
	}
}

.splide__track--draggable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.splide__track--fade>.splide__list>.splide__slide {
	margin: 0 !important;
	opacity: 0;
	z-index: 0
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
	opacity: 1;
	z-index: 1
}

.splide--rtl {
	direction: rtl
}

.splide__track--ttb>.splide__list {
	display: block
}

.splide__arrow {
	-ms-flex-align: center;
	align-items: center;
	background: #ccc;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: -ms-flexbox;
	display: flex;
	height: 2em;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: .7;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2em;
	z-index: 1
}

.splide__arrow svg {
	fill: #000;
	height: 1.2em;
	width: 1.2em
}

.splide__arrow:hover:not(:disabled) {
	opacity: .9
}

.splide__arrow:disabled {
	opacity: .3
}

.splide__arrow:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px
}

.splide__arrow--prev {
	left: 1em
}

.splide__arrow--prev svg {
	transform: scaleX(-1)
}

.splide__arrow--next {
	right: 1em
}

.splide.is-focus-in .splide__arrow:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px
}

.splide__pagination {
	bottom: .5em;
	left: 0;
	padding: 0 1em;
	position: absolute;
	right: 0;
	z-index: 1
}

.splide__pagination__page {
	background: #ccc;
	border: 0;
	border-radius: 50%;
	display: inline-block;
	margin: 3px;
	opacity: .7;
	padding: 0;
	position: relative;
	transition: transform .2s linear;
}

.splide__pagination__page:hover {
	cursor: pointer;
	opacity: .9
}

.splide__pagination__page:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px
}

.splide.is-focus-in .splide__pagination__page:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px
}

.splide__progress__bar {
	background: #ccc;
	height: 3px
}

.splide__slide {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.splide__slide:focus {
	outline: 0
}

@supports(outline-offset:-3px) {
	.splide__slide:focus-visible {
		outline: 3px solid #0bf;
		outline-offset: -3px
	}
}

@media screen and (-ms-high-contrast:none) {
	.splide__slide:focus-visible {
		border: 3px solid #0bf
	}
}

@supports(outline-offset:-3px) {
	.splide.is-focus-in .splide__slide:focus {
		outline: 3px solid #0bf;
		outline-offset: -3px
	}
}

@media screen and (-ms-high-contrast:none) {
	.splide.is-focus-in .splide__slide:focus {
		border: 3px solid #0bf
	}

	.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
		border-color: #0bf
	}
}

.splide__toggle {
	cursor: pointer
}

.splide__toggle:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px
}

.splide.is-focus-in .splide__toggle:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px
}

.splide__track--nav>.splide__list>.splide__slide {
	border: 3px solid transparent;
	cursor: pointer
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
	border: 3px solid #000
}

.splide__arrows--rtl .splide__arrow--prev {
	left: auto;
	right: 1em
}

.splide__arrows--rtl .splide__arrow--prev svg {
	transform: scaleX(1)
}

.splide__arrows--rtl .splide__arrow--next {
	left: 1em;
	right: auto
}

.splide__arrows--rtl .splide__arrow--next svg {
	transform: scaleX(-1)
}

.splide__arrows--ttb .splide__arrow {
	left: 50%;
	transform: translate(-50%)
}

.splide__arrows--ttb .splide__arrow--prev {
	top: 1em
}

.splide__arrows--ttb .splide__arrow--prev svg {
	transform: rotate(-90deg)
}

.splide__arrows--ttb .splide__arrow--next {
	bottom: 1em;
	top: auto
}

.splide__arrows--ttb .splide__arrow--next svg {
	transform: rotate(90deg)
}

.splide__pagination--ttb {
	bottom: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	left: auto;
	padding: 1em 0;
	right: .5em;
	top: 0
}

.video-carousel {
	z-index: 1;
}

.video-item {
	background-color: var(--white);
	border-radius: var(--bradius);
	box-shadow: 0px 6px 35px -5px rgb(74 70 102 / 9%);
}

.video-item__wrap {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	text-align: center;
}

@media (max-width: 1024px) {
	.video-item__wrap {
		padding: 0;
		padding-bottom: 1rem;
	}
}

.video-item__title {
	display: inline-block;
	font: var(--bold) 1.4rem/130% var(--fontTitle);
	transition: opacity 0.4s;
}

@media (max-width: 1024px) {
	.video-item__title {
		font: var(--bold) 1.2rem/130% var(--fontTitle);
	}
}

.video-item__img {
	position: relative;
	z-index: 1;
	max-width: 360px;
	cursor: pointer;
}

.video-item__img::after {
	content: "";
	position: absolute;
	bottom: 0%;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	background-image: url("assets/img/sprite.svg#play");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 1.8rem 1.8rem;
	background-color: var(--btnBg);
	border-radius: 50%;
	border: 4px solid var(--white);
	transform: translate(-50%, 1.7rem);
	transition: transform 0.4s, background-color 0.4s;
}

.video-item__img:hover::after {
	background-color: var(--btnBgHover);
	transform: translate(-50%, 1.2rem);
}

.video-item__img img {
	border-radius: var(--bradius);
	transition: opacity 0.3s;
}

.video-item:hover .video-item__img img {
	opacity: 0.8;
}

.videoIframe {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	border-radius: var(--bradius);
}

.videoWrapperActive .video-item__img {
	opacity: 0;
	height: 0;
	z-index: -1;
	transition-delay: 0s, 800ms;
}

.videoWrapperActive .video-item__title {
	opacity: 0;
	z-index: -1;
	transition: opacity 0.3s, z-index 0.3s;
}

.videoWrapperDeactive .video-item__img {
	opacity: 1;
	height: 100%;
	z-index: 1;
	transition-delay: 0s, 800ms;
}

.videoWrapperDeactive .video-item__title {
	opacity: 1;
	z-index: 1;
	transition: opacity 0.3s, z-index 0.3s;
}



/*
===============================
= 16 Раздел Главной - Текст + изображение
============================================
*/

.home-textblock__wrap {
	position: relative;
	display: flex;
	gap: 4rem;
	align-items: center;
}

@media (max-width: 1200px) {
	.home-textblock__wrap {
		flex-direction: column;
		margin-inline: auto;
	}
}

.home-textblock__wrap>* {
	flex: 1
}

.home-textblock__media {
	position: relative;
}

@media (max-width: 1200px) {
	.home-textblock__media {
		order: 2;
	}
}

 
@media (max-width: 1200px) {
	.home-textblock__text {
		order: 1;
	}
}


.home-textblock__header {
	margin-bottom: 1.5rem;
}

.home-textblock__img {
	border-radius: var(--bradius);
}

.home-textblock__btn {
	margin-top: 2rem;
	background-color: var(--btnBg);
	color: var(--btnColor);
	transition: all 0.4s;
}

@media (max-width:700px) {
	.home-textblock__btn {
 	display: block;
		margin-inline: auto;
	}
}

.home-textblock__btn:hover {
	color: var(--btnColor);
	border-color: var(--btnBgHover);
	box-shadow: inset 0 0 0 2em var(--btnBgHover);
	transition: all 0.4s;
}


/*
===============================
= 17 Раздел Главной - Преимущества
============================================
*/

.benefits {
	padding: 6rem 0;
	background-color: var(--white);
}

.benefits__wrap {
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(12, 1fr);
	align-items: center;
}

@media (max-width: 1200px) {
	.benefits__wrap {
		display: flex;
		flex-direction: column;
		gap: 2rem;
	}
}

.benefits__image {
	position: relative;
	grid-column: 5 span;
	align-self: start;
}

@media (max-width: 1200px) {
	.benefits__image {
		order: 2;
		align-self: center;
	}
}

.benefits__main {
	border-radius: var(--bradius);
}

.benefits__content {
	grid-column: 7 span;
	border-radius: var(--bradius);
}

@media (max-width: 1200px) {
	.benefits__content {
		order: 1;
		width: 100%;
	}
}

.benefits__port {
	position: relative;
}

.benefits__qr {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	max-width: 130px;
	padding: 0.8rem;
	background-color: var(--white);
	border-radius: var(--bradius);
	box-shadow: -20px -3px 35px -5px rgb(74 70 102 / 9%);
	transform: translate(-3rem, -2rem);
}

@media (max-width: 1200px) {
	.benefits__qr {
		transform: translate(1rem, -1.5rem);
	}
}

@media (max-width: 800px) {
	.benefits__qr {
		display: none;
	}
}

.benefits__content .section__title {
	margin-bottom: 2.5rem;
}

.benefits__list {
	padding: 3rem;
	background-color: var(--white);
	border: 1px solid #f1e6f5;
	border-radius: var(--bradius);
}

@media (max-width: 600px) {
	.benefits__list {
		padding: 2rem 0.8rem;
	}
}

.benefits-pagination {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 3rem;
}

@media (max-width: 600px) {
	.benefits-pagination {
		margin-top: 2rem;
	}
}

.benefits-pagination .splide-arrow-right {
	margin-left: auto;
}

.benefit-item__header {
	display: grid;
	gap: 1.1rem;
	grid-template-columns: 2rem 1fr;
	align-items: center;
	margin-bottom: 1.5rem;
}

.benefit-item__title {
	display: inline-block;
	font: var(--bold) 1.4rem/120% var(--fontTitle);
}

@media (max-width: 500px) {
	.benefit-item__title {
		font: var(--bold) 1.2rem/120% var(--fontTitle);
	}
}

.benefit-item__icon {
	align-content: center;
	width: 2rem;
	height: 2rem;
	color: var(--accentColor);
	opacity: 0.7;
}

.benefit-item__icon svg {
	width: 2rem;
	height: 2rem;
	margin-inline: auto;
	fill: currentColor;
}

.benefits__item p:not(:last-child) {
	margin-bottom: 1rem;
}

.benefits__credo {
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(12, 1fr);
	align-items: center;
	margin-top: 3rem;
	padding: 2rem 3rem;
	background-color: var(--mainBg);
	border: 1px solid #f1e6f5;
	border-radius: var(--bradius);
}

@media (max-width: 1200px) {
	.benefits__credo {
		order: 3;
		display: block;
		padding: 2rem 2rem;
	}
}

@media (max-width: 700px) {
	.benefits__credo {
		padding: 1.5rem;
	}
}

.credo__header {
	grid-column: 5 span;
}

@media (max-width: 1200px) {
	.credo__header {
		margin-bottom: 2rem;
		display: flex;
		justify-content: center;
	}
}

.credo__descr {
	grid-column: 7 span;
}

.benefits__credo .section__title {
	font-size: 2rem;
}

@media (max-width: 1200px) {
	.benefits__credo .section__title {
		font-size: 1.6rem !important;
	}
}


@media (max-width: 700px) {
	.benefits__credo .section__title {
		font-size: 1.3rem !important;
	}
}

/*
===============================
= 18 Раздел Главной - Обычные отзывы
============================================
*/

#feedback-regular-list {
	padding: 1.5rem 0;
}

.feedback-item {
 
	display: flex;
	flex-direction: column;
	padding: 2.2rem 1.8rem;
	background-color: var(--white);
	border-radius: var(--bradius);
	box-shadow: 0px 6px 35px -5px rgb(74 70 102 / 9%);
}

 

.feedback-item__name {
	display: block;
	margin-bottom: 2rem;
	font: var(--bold) 1.1rem/120% var(--fontTitle);
}

.feedback-item__content {
	position: relative;
}

.feedback-item__wrap {
	position: relative;
	height: 305px;
	margin-bottom: 0.7rem;
	padding-right: 1.4rem;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.feedback-item__wrap::-webkit-scrollbar-thumb {
	background: var(--accentColor);
}

.feedback-item__wrap::-webkit-scrollbar {
	width: 4px;
	background: #eee
}

.feedback-item__wrap img {
	border-radius: var(--bradius);
}


.feedback-item__wrap>p:first-child:first-letter {
	display: block;
	float: left;
	margin-top: 3px;
	margin-right: 16px;
	padding: 1.25rem 1.5rem;
	font: var(--bold) 1.8rem/1 var(--fontTitle);
	text-align: center;
	color: #fff;
	border-radius: 6px;
}

.feedback-item:nth-child(1) .feedback-item__wrap>p:first-child:first-letter,
.feedback-item:nth-child(7) .feedback-item__wrap>p:first-child:first-letter  {
	background-color: #235be8;
}

.feedback-item:nth-child(2) .feedback-item__wrap>p:first-child:first-letter,
.feedback-item:nth-child(8) .feedback-item__wrap>p:first-child:first-letter   {
	background-color: #17889c;
}

.feedback-item:nth-child(3) .feedback-item__wrap>p:first-child:first-letter,
.feedback-item:nth-child(9) .feedback-item__wrap>p:first-child:first-letter  {
	background-color: #f69b1c;
}

.feedback-item:nth-child(4) .feedback-item__wrap>p:first-child:first-letter,
.feedback-item:nth-child(10) .feedback-item__wrap>p:first-child:first-letter  {
	background-color: #0ba920;
}

.feedback-item:nth-child(5) .feedback-item__wrap>p:first-child:first-letter,
.feedback-item:nth-child(11) .feedback-item__wrap>p:first-child:first-letter   {
	background-color: #5e3d98;
}

.feedback-item:nth-child(6) .feedback-item__wrap>p:first-child:first-letter,
.feedback-item:nth-child(12) .feedback-item__wrap>p:first-child:first-letter   {
	background-color: #c718ad;
}


.feedback-item__wrap:has(img)::before {
	content: "+";
	position: absolute;
	top: 1.2rem;
	right: 2.2rem;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2rem;
	height: 2rem;
	font-size: 1.2rem;
	line-height: 1;
	background-color: var(--accentColor);
	color: var(--white);
	cursor: pointer;
	border-radius: 50%;
	transition: transform 0.4s
}

.feedback-item:hover .feedback-item__wrap:has(img)::before {
	transform: rotate(180deg);
}

.feedback-item__wrap img {
	cursor: pointer;
	transition: opacity 0.3s;
}

.feedback-item:hover .feedback-item__wrap img {
	opacity: 0.8;
}

.feedback-item__data {
	display: none;
}

/*
===============================
= 19 Раздел Главной - Форматы работы
============================================
*/


.formats-list {
	display: grid;
	gap: 3rem;
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1300px) {
	.formats-list {
		gap: 2rem;
	}
}

@media (max-width: 1200px) {
	.formats-list {
		display: block;
	}

	.formats-list>*+* {
		margin-top: 3rem;
	}
}

.formats-list__item {
	position: relative;
	display: flex;
	flex-direction: column;
	padding-bottom: 1.6rem;
	background-color: var(--white);
	border: 1px solid var(--white);
	border-radius: var(--bradius);
	box-shadow: 0px 6px 35px -5px rgb(74 70 102 / 9%);
	overflow: hidden;
}

.formats-list__item:nth-of-type(1)>.format-item__header {
	--box-color: var(--format1);
	background-color: var(--box-color);
}

.formats-list__item:nth-of-type(2)>.format-item__header {
	--box-color: var(--format2);
	background-color: var(--box-color);
}

.formats-list__item:nth-of-type(3)>.format-item__header {
	--box-color: var(--format3);
	background-color: var(--box-color);
}

.formats-list__item:nth-of-type(4)>.format-item__header {
	--box-color: var(--format4);
	background-color: var(--box-color);
}

.formats-list__item:nth-of-type(5)>.format-item__header {
	--box-color: var(--format5);
	background-color: var(--box-color);
}

.formats-list__item:nth-of-type(6)>.format-item__header {
	--box-color: var(--format6);
	background-color: var(--box-color);
}

.format-item__header {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 1.5rem 1.6rem;
	border-radius: var(--bradius);
	border-bottom-right-radius: 0;
}

.format-item__header::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 2rem;
	height: 2rem;
	border-top-right-radius: 1rem;
	background-color: var(--white);
	box-shadow: 11px -11px var(--box-color);
	transform: translateY(34px);
}

@media (max-width: 1200px) {
	.format-item__header::after {
		transform: translateY(32px);
	}
}

@media (max-width: 500px) {
	.format-item__header::after {
		transform: translateY(30px);
	}
}

.format-item__title {
	display: inline-block;
	margin-bottom: 0.6rem;
	font: var(--bold) 1.5rem/130% var(--fontTitle);
	color: var(--white);
}

.format-item__subtitle {
	font-size: 0.96rem;
	color: var(--white);
}

.format-item__time {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.75rem;
	font-size: 0.9rem;
	line-height: 1;
	border: 1px solid var(--borderColor);
	border-radius: 6px;
}

.format-item__time svg {
	width: 0.92rem;
	height: 0.92rem;
	margin-right: 8px;
	fill: currentColor
}

.format-item__content {
	height: 100%;
	padding: 1.5rem 1.6rem;
}

.format-item__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding: 0 1.6rem;
}

.format-item__cost {
	margin-left: 1.5rem;
	font: var(--bold) 1rem/1 var(--fontTitle);
}

.format-item__btn {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-inline: 1.6rem;
	margin-top: 1.6rem;
	background-color: var(--white);
 	border: 1px solid var(--black);
	color: var(--black);
	cursor: pointer;
	transition: all 0.5s;
}

.format-item:hover .format-item__btn {
	border-color: var(--btnBgHover);
	transition: all 0.5s;
}

 



/*
===============================
= 20 Раздел Главной - FAQ
============================================
*/

.faq-section {
	padding: 6rem 0;
	background-color: var(--white);
}

@media (max-width: 800px) {
	.faq-section {
		padding: 3rem 0;
	}
}

.faq-section__wrap {
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(12, 1fr);
}

@media (max-width: 1200px) {
	.faq-section__wrap {
		display: flex;
		flex-direction: column;
	}
}

.faq-section__content {
	position: relative;
	grid-column: 5 span;
}

@media (max-width: 1200px) {
	.faq-section__content {
		order: 2;
	}
}

.faq-section__port {
	position: sticky;
	top: 9rem
}

.faq-section__port img {
	margin-bottom: 1.2rem;
	border-radius: var(--bradius);
}

.faq-list {
	grid-column: 7 span;
	display: flex;
	flex-direction: column;
	align-self: start;
	padding: 2rem;
	background-color: var(--mainBg);
	border-radius: calc( var(--bradius) * 2);
}

@media (max-width: 1200px) {
	.faq-list {
		order: 1;
	}
}

@media (max-width: 500px) {
	.faq-list {
		padding: 10px;
		border-radius: 1rem;
	}
}

.faq-item {
	width: 100%;
	border-radius: var(--bradius);
	background-color: var(--white);
	box-shadow: -1px 5px 15px -3px rgba(74, 70, 102, 0.08);
}

.faq-item:not(:last-child) {
	margin-bottom: 1.5rem;
}

.faq-item__header {
	position: relative;
	display: flex;
	align-items: center;
	padding: 1.5rem 1.8rem;
	padding-left: 5.5rem;
	font-size: 1.1rem;
	font-weight: var(--semiBold);
	border-radius: var(--bradius);
	cursor: pointer;
	transition: box-shadow 0.3s;
}

.faq-item__header::before {
	content: "";
	position: absolute;
	left: 1.5rem;
	top: 50%;
	z-index: 1;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background-color: var(--mainBg);
	background-image: url("assets/img/sprite.svg#plus");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1.1rem 1.1rem;
	transform: translateY(-50%) rotate(0);
	transition: background-color 0.3s, transform .3s ease-in-out;
}

@media (max-width: 1200px) {
	.faq-item__header::before {
		top: 23%;
		transform: translateY(0) rotate(0);
	}
}


.faq-item__header:hover::before {
	background-color: var(--accentColor);
	background-image: url("assets/img/sprite.svg#plus-alt");
	transition: background-color 0.3s, transform .3s ease-in-out;
}

.faq-item__header.is-active {
	border-bottom: 1px solid #f1e6f5;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.faq-item__header.is-active::before {
	background-color: var(--accentColor);
	background-image: url("assets/img/sprite.svg#minus-alt");
	transform: translateY(-50%) rotate(180deg);
	transition: background-color 0.3s, transform .3s ease-in-out;
}

@media (max-width: 1200px) {
	.faq-item__header.is-active::before {
		transform: translateY(0) rotate(0);
	}
}

.faq-item__content {
	display: none;
	padding: 1.5rem 2rem;
}




/*
===============================
= 21 Раздел Главной - Блог
============================================
*/

.blog-main {
	display: flex;
	gap: 3rem;
	justify-content: flex-start;
	align-items: center;
	padding: 3rem;
	background-color: var(--white);
	border-radius: calc(var(--bradius) * 2);
	box-shadow: 0px 6px 35px -5px rgb(74 70 102 / 9%);
	cursor: pointer;
	transition: transform 0.3s;
}

@media (max-width: 1200px) {
	.blog-main {
		display: block;
	}
}

@media (max-width: 600px) {
	.blog-main {
		padding: 2rem 1rem;
	}
}

.blog-main:hover {
	transform: translateY(-5px);
}

.blog-main>* {
	flex: 1;
}

.blog-main__img img {
	border-radius: var(--bradius);
}

@media (max-width: 1200px) {
	.blog-main__img img {
		margin-bottom: 1.5rem;
	}
}

.blog-main__content {
	display: flex;
	flex-direction: column;
}

.blog-main__title {
	display: inline-block;
	margin-bottom: 1.5rem;
	font: var(--bold) 1.7rem/125% var(--fontTitle);
}

@media (max-width: 1024px) {
	.blog-main__title {
		font: var(--bold) 1.4rem/125% var(--fontTitle);
	}
}

.blog-main:hover .blog-main__title {
	color: var(--hoverColor)
}

.blog-main__anons,
.blog-more__anons {
	margin-bottom: 1rem;
}

.blog-more__content {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.blog-main__date,
.blog-more__date {
	font-size: 14px;
	font-weight: var(--thin);
	color: var(--greyColor);
}

.blog__go {
	font-size: 13px;
	text-transform: uppercase;
	text-decoration: none;
}

.blog__go:hover {
	color: var(--hoverColor);
}

.blog-more {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 4rem;
}

@media (max-width: 1200px) {
	.blog-more {
		display: block;
		margin-top: 2rem;
	}

	.blog-more>*+* {
		margin-top: 2rem;
	}
}

.blog-more__item {
	padding: 1.6rem;
	background-color: var(--mainBg);
	border-radius: var(--bradius);
	cursor: pointer;
	transition: transform 0.3s;
}

.blog-more__item:hover {
	transform: translateY(-5px);
}

.blog-more__title {
	display: inline-block;
	margin-bottom: 1.5rem;
	font: var(--bold) 1.3rem/120% var(--fontTitle);
}

.blog-more__item:hover .blog-more__title {
	color: var(--hoverColor)
}

.blog-more__footer {
	margin-top: auto;
}

.action-block {
	display: flex;
	gap: 1.4rem;
	flex-direction: column;
	margin-top: 3rem;
	padding: 2rem 1.5rem;
	background-color: var(--mainBg);
	border-radius: calc(var(--bradius) * 2);
}

.action-block__header {
	display: flex;
	gap: 1.4rem;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.action-block__title {
	display: block;
	font: var(--bold) 1.4rem/140% var(--fontTitle);
	text-align: center;
}

.action-block__img {
	border-radius: 50%;
	border: 5px solid var(--white);
	box-shadow: 0px 6px 35px -5px rgb(74 70 102 / 15%);
}

.action-block__descr {
	margin-bottom: 1.85rem;
	text-align: center;
}

.btn--action {
	display: block;
	margin-inline: auto
}

.slideInUp {
	animation-name: slideInUp;
	animation-duration: .5s
}

@keyframes slideInUp {
	from {
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}

	to {
		transform: translate3d(0, 0, 0)
	}
}

.post-modal {
	--_modHeight: 808px;
	position: fixed;
	top: 50%;
	left: 0;
	width: 90%;
	max-width: 730px;
	height: calc(var(--_modHeight) - 4.4rem);
	margin-bottom: 0;
	padding: 1.6rem;
	background-color: var(--white);
	opacity: 0;
	border-radius: calc(var(--bradius) * 2);
	transform: translate(-100%, -50%);
	transition: transform .6s, opacity 0.3s;
}

@media (max-width: 1024px) {
	.post-modal {
		padding: 1rem;
	}
}

@media (max-width: 376px) {
	.post-modal {
		--_modHeight: 590px;
	}
}

.post-modal.is-open {
	left: 50%;
	z-index: 10001;
	opacity: 1;
	transform: translate(-50%, -50%);
	transition: transform .6s, opacity 0.3s;
}

.post-modal__wrap {
	max-height: calc(var(--_modHeight) - 4.4rem);
	padding: 0 2rem 0 1rem;
	overflow-y: auto;
}

@media (max-width: 376px) {
	.post-modal__wrap {
		padding: 0 1rem 0 0;
	}
}

.post-modal__wrap::-webkit-scrollbar-thumb {
	background: rgba(47, 92, 181, 0.46);
}

.post-modal__wrap::-webkit-scrollbar {
	width: 4px;
	background: #eee
}

.post-modal__header {
	margin: 1.5rem 0;
	padding: 1.2rem;
	background-color: var(--mainBg);
	border-radius: var(--bradius);
}

.post-modal__title {
	display: inline-block;
	font: var(--bold) 1.6rem/130% var(--fontTitle);
}

@media (max-width: 415px) {
	.post-modal__title {
		font: var(--bold) 1.3rem/130% var(--fontTitle);
	}
}

.post-modal__post {
	position: relative;
	display: none;
}

.post-modal__post.is-shown {
	display: block;
	animation: fadeEffect .6s ease
}

@keyframes fadeEffect {
	from {
		opacity: 0;
		transform: translateY(10px)
	}

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

.post-modal.is-next {
	opacity: 0;
	transform: translate(100%, -50%);
	transition: transform .6s, opacity 0.4s;
}

.post-modal.is-prev {
	opacity: 0;
	transform: translate(-50%, -50%);
	transition: transform .6s, opacity 0.4s;
}

.post-nav-btns {
	display: flex;
	justify-content: end;
	align-items: end;
	width: 95px;

}

.post-nav-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--black);
	background-color: var(--white);
	color: var(--black);
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.post-nav-btn.is-dis {
	opacity: 0.5;
	cursor: not-allowed;
}

.post-prev {
	margin-right: 12px;
}

.post-nav-btn:hover {
	border-color: var(--accentColor);
	background-color: var(--accentColor);
	color: var(--white);
	transition: background-color 0.3s, color 0.3s;
}

.post-nav-btn svg {
	width: 0.9rem;
	height: 0.9rem;
	fill: currentColor
}

.post-prev svg {
	transform: rotate(180deg);
}

.post-modal__close {
	position: absolute;
	left: initial;
	right: 0;
	border: 1px solid var(--black);
	color: var(--black);
	transform: translate(0, 0);
}

.post-modal__close svg {
	width: 1.1rem;
	height: 1.1rem;
	stroke: currentColor
}

.post-modal__count {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0.5rem);
}



/*
===============================
= 22 Раздел Главной - Галерея
============================================
*/

.home-gallery {
	padding: 6rem 0;
	background-color: var(--mainBg);
}

.home-gallery__item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.home-gallery__img {
	border-radius: var(--bradius);
}

.home-gallery__caption {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: calc(100% - 3rem);
	padding: 1rem 1.5rem;
	font-size: 0.94rem;
	line-height: 130%;
	background-color: var(--posterBg);
	color: var(--posterColor);
	border-radius: var(--bradius);
	border-top-left-radius: calc(var(--bradius) * 2);
	border-top-right-radius: calc(var(--bradius) * 2);
	opacity: 0;
	transform: scale(0.5);
	transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

@media (max-width: 600px) {
	.home-gallery__caption {
		transform: scale(1);
		opacity: 1;
	}
}

.home-gallery__item:hover .home-gallery__caption {
	transform: scale(1);
	opacity: 1;
}

.home-gallery__caption span {
	display: block;
	max-width: 80%;
	margin-inline: auto;
	text-align: center;
}

.home-gallery__item::after {
	content: "+";
	position: absolute;
	top: 1.2rem;
	right: 1.2rem;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2rem;
	height: 2rem;
	font-size: 1.2rem;
	line-height: 1;
	background-color: var(--accentColor);
	color: var(--white);
	cursor: pointer;
	border-radius: 50%;
	transition: transform 0.4s
}

.home-gallery__item:hover::after {
	transform: rotate(180deg);
}

.home-gallery__links {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.home-gallery__controls,
.feedback-regular-carousel__controls,
.video-carousel__controls {
	margin-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fancybox-infobar {
	display: none !important;
}

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


/*
===============================
= 23 Раздел Главной - Контакты
============================================
*/

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

.contacts__wrap {
	display: grid;
	gap: 3rem;
	grid-template-columns: repeat(12, 1fr);
	padding: 3rem;
	background-color: var(--mainBg);
	border-radius: calc(var(--bradius) * 2);
}

@media (max-width: 1200px) {
	.contacts__wrap {
		display: flex;
		flex-direction: column;
		padding: 2rem;
	}
}

@media (max-width: 600px) {
	.contacts__wrap {
		width: 100%;
		padding: 0;
		background-color: var(--white);
	}
}

.contacts__map {
	position: relative;
	grid-column: 5 span;
}

.contacts__object,
.contacts__replace {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 655px;
	overflow: hidden;
	border: 1px solid #f1e6f5;
	border-radius: var(--bradius);
	transform: translateY(-9rem);
}

.contacts__replace {
	height: auto;
}

@media (max-width: 1200px) {
	.contacts__object {
		position: relative;
		top: initial;
		right: initial;
		width: 100%;
		height: 500px;
		transform: translateY(0);
	}

	.contacts__replace {
		position: relative;
		top: initial;
		right: initial;
		margin-inline: auto;
		width: 470px;
		height: 100%;
		transform: translateY(0);
	}
}

.contacts__replace  {
	transition: opacity 0.3s;
}

.contacts__replace:hover {
	opacity: 0.75;
}

.contacts__content {
	grid-column: 7 span;
}

.contacts-content__wrap {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.contacts__title {
	display: inline-block;
	font: var(--bold) 1.6rem/140% var(--fontTitle);
}

@media (max-width: 1200px) {
	.contacts__title {
		text-align: center;
	}
}

@media (max-width: 700px) {
	.contacts__title {
		font: var(--bold) 1.2rem/150% var(--fontTitle);
	}
}

.contacts-content__top {
	display: flex;
	justify-content: flex-start;
	gap: 2rem;
	align-items: center;
}

@media (max-width: 1200px) {
	.contacts-content__top {
		flex-direction: column;
	}

	.contacts-content__top > * {
		width: calc(100% - 3.2rem);
	}
}

.contacts-content__img {
	max-width: 294px;
	border-radius: var(--bradius);
}

@media (max-width: 1200px) {
	.contacts-content__img {
		max-width: 100%;
	}
}

.contacts-content__bottom {
	display: flex;
	justify-content: flex-start;
	gap: 3rem;
	align-items: center;
}

@media (max-width: 1200px) {
	.contacts-content__bottom {
		display: block;
	}
}

.contacts-content__list {
	flex-grow: 1;
	margin-left: 0 !important;
	margin-bottom: 0 !important;
	padding: 1.4rem 1.2rem;
	padding-left: 2rem;
	background-color: var(--white);
	border-radius: var(--bradius);
	box-shadow: 0px 6px 35px -5px rgb(74 70 102 / 9%);
}

.contacts-content__item {
	position: relative;
	padding-left: 1.5rem;
}

.contacts-content__item:not(:last-child) {
	margin-bottom: 1rem;
}

.contacts-content__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 1rem;
	height: 1rem;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transform: translate(-10px, 6px);
}

.contacts-content__item--address::before {
	background-image: url("assets/img/sprite.svg#nav");
}

.contacts-content__item--phone::before {
	background-image: url("assets/img/sprite.svg#phone2");
}

.contacts-content__item--sub::before {
	background-image: url("assets/img/sprite.svg#sub");
}

.contacts-content__item--mail::before {
	background-image: url("assets/img/sprite.svg#mail");
}

.contacts-content__item--chat::before {
	background-image: url("assets/img/sprite.svg#chat-check");
}

.contacts-content__item--chat:has(.contacts-content__link--tg) .contacts-content__link--wh {
	margin-left: 0.6rem;
	padding-left: 0.6rem;
	border-left: 1px solid #999;
}

.contacts-content__item--chat:empty {
	display: none;
}

.contacts-content__btn {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 240px;
	padding: 2rem;
	background-color: var(--btnBg);
	color: var(--btnColor);
	font: var(--bold) 1.2rem/120% var(--fontTitle);
	border-radius: var(--bradius);
	border-top-right-radius: 0;
	text-decoration: none !important;
	transition: all 0.5s;
}

.contacts-content__btn:hover {
	color: var(--btnColor);
	box-shadow: inset 0 0 0 5.3rem var(--btnBgHover);
}

@media (max-width: 1200px) {
	.contacts-content__btn {
		width: 100%;
		max-width: 100%;
		margin-bottom: 1.5rem;
	}
}

.contacts-content__btn svg {
	width: 2.6rem;
	height: 2.6rem;
	margin-bottom: 0.5rem;
	fill: currentColor
}



/*
===============================
= 24 Раздел Главной - Полезные ссылки
============================================
*/

.links__item {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	align-items: end;
}

@media (max-width: 500px) {
	.links__item {
		display: block;
		padding: 1rem;
		border: 1px solid var(--borderColor);
		border-radius: var(--bradius);
	}
}

.links__item:not(:last-child) {
	margin-bottom: 2rem;
}

.links__text {
	position: relative;
	overflow: hidden;
	flex-grow: 1;
}

.links__text::after {
	content: "......................................................................................................................................................................................................................";
	position: absolute;
	color: rgb(155 172 200 / 41%);
}

@media (max-width: 500px) {
	.links__text::after {
		display: none
	 
	}
}

.links__url {
	position: relative;
	padding-left: 10px;
	font-weight: var(--semiBold);
	text-align: right;
}

@media (max-width: 500px) {
	.links__url {
		display: flex;
		margin-left: 1rem;
		margin-top: 1.5rem;
	}
}

.links__url::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	z-index: 1;
	width: 1.2rem;
	height: 1.2rem;
	background-image: url("assets/img/sprite.svg#arrow-right-sm");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transform: translate(-1rem, -45%) rotate(90deg);
}



/*
===============================
= 25 Образец оформления разметки в блоках Произвольный контент
============================================
*/

.custom-list {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1130px) {
	.custom-list {
		display: block
	}
}

.custom-list__item {
	padding: 1.4rem 2rem;
	border: 1px solid #f1e6f5;
	border-radius: var(--bradius);
}

@media (max-width: 1130px) {
	.custom-list__item:not(:last-child) {
		margin-bottom: 2rem;
	}
}

@media (max-width: 500px) {
	.custom-list__item {
		padding: 1.4rem 1rem;
	}
}

 

/*
===============================
= 26 Подвал сайта
============================================
*/

.site-footer {
	padding: 6rem 0;
	background-color: var(--footerBg);
	border-top-left-radius: 4rem;
	border-top-right-radius: 4rem;
}

@media (max-width: 600px) {
	.site-footer {
		padding: 3rem 0;
	}
}

@media (max-width: 500px) {
	.site-footer {
		border-top-left-radius: calc(var(--bradius) * 2);
		border-top-right-radius: calc(var(--bradius) * 2);
	}
}

 

.site-footer__wrap {
	position: relative;
	display: flex;
	align-items: center;
}

@media (max-width: 1200px) {
	.site-footer__wrap {
		display: block;
	}
}

.site-footer__credits {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-right: auto;
	font-size: 0.9rem;
	line-height: 1;
	font-weight: var(--thin);
}

@media (max-width: 1200px) {
	.site-footer__credits {
		margin-bottom: 2rem;
	}
}

@media (max-width: 800px) {
	.site-footer__credits {
		display: block;
		text-align: center;
	}
}

.credits__copy {
	display: flex;
	align-items: center;
	margin: 0;
	color: var(--footerColor);
}

@media (max-width: 800px) {
	.credits__copy {
		width: 100%;
		flex-direction: column;
	}
}

.credits__site-descr {
	margin-left: 0.2rem;
	color: var(--footerColor);
}

@media (max-width: 800px) {
	.credits__site-descr {
		margin-left: 0;
		margin-top: 1rem;
	}
}

.credits__info {
	margin-top: 10px;
	color: var(--footerColor);
}

.credits__info:empty {
	display: none;
}

@media (max-width: 800px) {
	.credits__info {
		margin-top: 1rem;
	}
}

.credits__img {
	margin-right: 1.2rem;
}

@media (max-width: 800px) {
	.credits__img {
		margin: 0 auto 1.5rem;
	}
}

.site-footer__social {
	margin-left: auto;
}

@media (max-width: 800px) {
	.site-footer__social {
		margin-left: 0;
		justify-content: center;
	}
}

.site-footer__stat {
	display: flex;
	justify-content: center;
	width: 200px;
	margin: 1rem auto;
	opacity: 0.3;
	transition: opacity 0.4s;
}

.site-footer__stat:hover {
	opacity: 1;
}


.site-footer__backtop {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 34px;
	margin-left: 3rem;
	color: var(--footerColor);
	border: 1px solid var(--footerColor);
	border-radius: 4px;
	transition: border-color 0.4s, color 0.4s, background-color 0.4s;
}

@media (max-width: 1200px) {
	.site-footer__backtop {
		position: absolute;
		right: 0;
		bottom: 0;
	}
}

@media (max-width: 800px) {
	.site-footer__backtop {
		position: relative;
		right: initial;
		bottom: initial;
		margin-inline: auto;
		margin-top: 3rem;
	}
}

.site-footer__backtop:hover {
	color: var(--btnColor);
	border-color: var(--btnBg);
	background-color: var(--btnBg);
}

.site-footer__backtop svg {
	display: block;
	width: 1.8rem;
	height: 1.8rem;
	fill: currentColor;
	transform: rotate(-90deg)
}




/*
===============================
= 27 Списки сайта
============================================
*/

.post-content ul,
.post-content ol {
	margin-left: 1rem;
	margin-bottom: 1.5rem;
	list-style-position: inside;
}

.post-content ul li {
	list-style: none;
	position: relative;
	margin-bottom: 0.6rem;
	padding-left: 1.7rem;
}

.post-content ul li ul {
	margin: 1rem 0;
}

.post-content ul li::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	width: 1rem;
	height: 1rem;
	background-image: url("assets/img/sprite.svg#marker-star");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

ol {
	list-style: decimal;
}

ol li {
	margin: 0;
	padding: 0 0 10px 0
}

ol ol {
	list-style: upper-alpha
}

ol ol ol {
	list-style: lower-roman
}

ol ol ol ol {
	list-style: lower-alpha
}

.post-content ul:not(:last-child),
.widget ul:not(:last-child) {
	margin: 1rem 0;
}



/*
===============================
= 28 Разметка внутренних страниц
============================================
*/

.single-page {
	position: relative;
	display: grid;
	gap: 4rem;
	grid-template-columns: 1fr 300px;
	margin-bottom: 3rem;
}

@media (max-width: 1200px) {
	.single-page {
		display: block;
	}

	.single-page__sidebar {
		margin-top: 5rem;
	}
}

.single-page__header {
	margin-bottom: 2rem;
}

.page-header__info {
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
	margin-top: 2rem;
}

.post-meta__date,
.single-page__date {
	font-size: 0.9rem;
	color: var(--greyColor);
}

.single-page__date {
	display: block;
	margin-top: 1rem;
}

.single-page__title {
	font: var(--bold) 2rem/130% var(--fontTitle);
}

@media (max-width: 1200px) {
	.single-page__title {
		font-size: 1.75rem;
	}
}

@media (max-width: 415px) {
	.single-page__title {
		font-size: 1.4rem;
	}
}

.post-content__img img {
	border-radius: var(--bradius);
}

.post-content__img figcaption {
	padding: 6px 10px;
	text-align: right;
}



/*
===============================
= 29 Сайдбар для внутренних страниц
============================================
*/

.widget-title {
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	display: block;
	font: var(--bold) 1.2rem/130% var(--fontTitle);
	border-bottom: 1px solid var(--borderColor);
	color: var(--greyColor);
}

.widget_nav_menu ul {
	padding-left: 0 !important;
}

.widget_nav_menu ul li {
	padding-left: 1rem;
	position: relative;
	font-size: 0.9rem;
}

.widget_nav_menu ul li::before {
	content: "";
	width: 6px;
	height: 6px;
	background-color: var(--accentColor);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
}

.widget_nav_menu ul li:not(:last-child) {
	margin-bottom: 0.8rem;
}

.widget_nav_menu ul li a {
	padding: 0.25rem 0 !important;
	text-decoration: none;
}

.widget_nav_menu ul li a:hover {
	color: var(--hoverColor);
	text-decoration: underline;
}

.widget #calendar_wrap {
	width: 100%;
}

.widget #wp-calendar th {
	text-align: center;
	padding: 5px 4px;
	font-size: 0.8rem;
	font-weight: var(--semiBold);
	border: 1px solid var(--borderColor)
}

.widget #wp-calendar td {
	padding: 5px 6px;
	border: 1px solid rgba(29, 43, 100, .06);
	text-align: center;
	font-size: 0.8rem;
}

.widget #wp-calendar caption {
	margin-bottom: 0.5rem;
	font-size: 14px;
	color: var(--greyColor);
}

.widget:not(:last-child) {
	margin-bottom: 2rem;
}

.widget li,
.widget p {
	font-size: 0.96rem !important;
}

.widget a {
	text-decoration: none;
}

.widget a:hover {
	text-decoration: underline
}

.widget .cat-item,
.widget_archive li {
	display: flex;
	justify-content: space-between;
}

.cat-item__count {
	font-size: 14px;
}

.widget.post-content ul,
.widget.post-content ol {
	margin-left: 0 !important;
}



/*
===============================
= 30 Оформление для 404 страницы
============================================
*/

.error404 .site-header {
	margin-bottom: 0;
}

.error-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.error-section__img {
	max-width: 300px;
	margin: 3rem auto 2rem;
}

@media (max-width: 500px) {
	.error-section__img {
		max-width: 160px;
		margin: 2rem auto 2rem;
	}
}

.error-section__content {
	max-width: 600px;
	text-align: center
}

.error-section__title {
	display: block;
	margin-bottom: 1rem;
	font: var(--bold) 3rem/130% var(--fontTitle);
}

@media (max-width: 500px) {
	.error-section__title {
		font: var(--bold) 2rem/130% var(--fontTitle);
	}
}

@media (max-width: 500px) {
	.error-section__text {
		font-size: 14px;
	}
}

.error404-btn {
	display: flex;
	justify-content: center;
	margin-inline: auto;
	width: 150px;
	margin-top: 2rem;
	padding: 1rem 2rem;
	background-color: var(--white);
	color: var(--black);
	border: 1px solid var(--black);
}

.error404-btn:hover {
	color: var(--btnColor);
	border-color: var(--btnBgHover);
	box-shadow: inset 0 0 0 2em  var(--btnBgHover);
	transition: all 0.4s;
}

/*
===============================
= 31 Кастомизация каруселей
============================================
*/

.splide__track {
	margin-left: -2px;
}

.splide__arrows {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 600px) {
	.splide__arrows {
		display: none;
	}
}

.splide-arrow-btn {
	position: relative;
	z-index: 5;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--black);
	color: var(--black);
	width: 2.4rem;
	height: 2.4rem;
	transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.splide-arrow-btn:disabled {
	opacity: 0.3;
	transition: opacity 0.3s;
}

.splide-arrow-btn:hover {
	border-color: var(--accentColor);
	background-color: var(--accentColor);
	color: var(--white);
	transition: background-color 0.3s, color 0.3s;
}

.splide-arrow-left {
	margin-right: 0.5rem;
	border-radius: 50%;
}

.splide-arrow-right {
	border-radius: 50%;
}

.splide-arrow-left svg,
.splide-arrow-right svg {
	width: 0.9rem;
	height: 0.9rem;
	fill: currentColor
}

.splide-arrow-left svg {
	transform: rotate(180deg);
}

.splide__pagination__page {
	width: 14px;
	height: 14px;
	margin: 0;
	background-color: #bab8d7;
	border-radius: 50%;
	transition: width 0.3s;
}

.splide__pagination__page.is-active {
	width: 24px;
	height: 14px;
	border-radius: 8px;
	background-color: var(--btnBg) !important;
	opacity: 1;
	transition: width 0.3s;
}

.splide__pagination {
	position: relative;
	right: initial;
	bottom: initial;
	left: initial;
	padding: 0;
	justify-content: flex-start;
}

@media (max-width: 600px) {
	.splide__pagination {
		width: 100%;
		display: flex;
		justify-content: center;
	}
}

.gp-carousel-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3rem;
}

/*
===============================
= 32 Список комментариев
============================================
*/

.comments {
	margin-top: 4rem;
	position: relative;
}

.comments__list {
	margin-bottom: 3rem;
}

.comments__title {
	display: block;
	margin-bottom: 2.5rem;
	font-family: var(--fontTitle);
	font-size: 1.6rem;
	font-weight: var(--semiBold);
}

#respond .comments__title {
	border: 0;
}

@media (max-width: 900px) {
	.comments__title,
	#respond .comments__title {
		font-size: 1.4rem;
	}
}

@media (max-width:500px) {
	.comments__title,
	#respond .comments__title {
		font-size: 1.1rem;
	}
}

@media (max-width: 900px) {
	.comments {
		margin-bottom: 2rem;
	}
}

.comment {
	display: flex;
	flex-flow: column nowrap;
	font-size: 1rem;
	border: 1px solid var(--borderColor);
	border-radius: 8px;
}

@media (max-width: 660px) {
	.comment {
		padding: 0;
		border: 0;
	}
}

.comment:not(:last-child) {
	margin-bottom: 2.5rem;
}

.comment .children {
	margin: 0.5rem 0;
	padding: 1rem 0 0 0;
}

.comment .children>.comment {
	border-top: 1px solid var(--borderColor);
}

.comment__wrapper {
	display: flex;
	flex-direction: column;
}

.comment__header {
	position: relative;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 1.4rem;
	background-color: var(--mainBg);
	border-radius: 8px;
}

@media (max-width: 1130px) {
	.comment__header {
		align-items: start;
	}
}

@media (max-width: 660px) {
	.comment__header {
		flex-flow: column nowrap;
		border: 0
	}

	.comment .children>.comment {
		border: 0
	}
}

.comment-author-info {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: end;
	line-height: 1;
}

@media (max-width: 1130px) {
	.comment-author-info {
		flex-direction: column;
		align-items: start;
	}
}

@media (max-width: 660px) {
	.comment-author-info {
		order: 2;
	}
}

.comment-edit-link {
	position: relative;
	display: inline-block;
	margin-left: 1.2rem;
	width: 1.5rem;
	height: 1.5rem;
	background-color: var(--white);
	background-image: url("assets/img/sprite.svg#edit");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 1.1rem 1.1rem;
	text-decoration: none;
	text-indent: -9999rem;
	border-radius: 6px;
	transition: background-color 0.3s, background-image 0.3s;
}

@media (max-width: 660px) {
	.comment-edit-link {
		display: none;
	}
}

.comment-edit-link:hover {
	background-color: var(--accentColor);
	background-image: url("assets/img/sprite.svg#edit-alt");
	transition: background-color 0.3s, background-image 0.3s;
}

@media (max-width: 500px) {
	.comment-edit-link {
		display: none;
	}
}

.comment-edit-link:hover {
	text-decoration: underline;
	color: var(--hoverColor);
}

.comment__content {
	padding: 1rem 1.4rem;
}

@media (max-width: 700px) {
	.comment__content {
		font-size: 1rem;
	}
}

.comment__author {
	font-weight: var(--semiBold);
	font-size: 1rem;
}

@media (max-width: 1130px) {
	.comment__author {
		margin-bottom: 1rem;
	}
}

.comment__author .url {
	text-decoration: none;
}

.comment__author .url:hover {
	text-decoration: underline;
}

.comment-author-info__label {
	position: relative;
}

.comment-author-info__label::after {
	content: "Автор";
	margin-left: 14px;
	padding: 5px 8px;
	display: inline-flex;
	background-color: var(--accentColor);
	color: var(--white);
	font-size: 13px;
	border-radius: 4px;
}

.comment__meta {
	margin-left: 1.2rem;
	font-size: 0.9rem;
	color: var(--greyColor);
}

@media (max-width: 1130px) {
	.comment__meta {
		margin-left: 0;
	}
}

@media (max-width: 660px) {
	.comment__meta {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
}

.comment__meta a {
	text-decoration: none;
	color: var(--greyColor);
}

.children .comment {
	padding: 0;
	border: none;
}

.children .comment:not(:last-child) {
	margin-bottom: 1rem;
}

.comment-awaiting-moderation {
	display: block;
	margin-bottom: 1rem;
	font-family: inherit;
	font-style: normal;
	font-size: 1rem;
	color: #168f69;
}

.comment__date {
	font-size: 0.78rem;
}

@media (max-width: 660px) {
	.comment__date {
		order: 2
	}
}



/*
===============================
= 33 Форма отправки комментариев
============================================
*/

.comment-form {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

@media (max-width: 660px) {
	#feedback-comments .comments__form {
		padding: 0 1rem;
	}
}

.comment-form .comment-notes,
.logged-in-as {
	display: block;
	flex-basis: 100%;
	margin-bottom: 1.5rem;
	font-size: 0.92rem;
	font-weight: var(--thin);
	color: var(--greyColor);
}

@media (max-width:415px) {
	.required-field-message {
		display: block;
	}
}

.comment-form .comment-notes input {
	margin-right: 1rem;
}

.comment-form .comment-notes a,
.logged-in-as a,
.comment-form__agreement a {
	color: var(--hoverColor);
}

.comment-form .comment-notes a:hover,
.logged-in-as a:hover,
.comment-form__agreement a:hover {
	color: var(--btnBg);
}

#comments-checkbox {
	margin-right: 10px;
}

.comment-form-cookies-consent {
	flex-basis: 100%;
	margin-bottom: 0.6rem;
	display: none;
}

.comment-form-cookies-consent input {
	margin-right: 1rem;
}

.comment-form-author {
	flex: 1;
	margin-right: 1rem;
}

@media (max-width: 600px) {
	.comment-form-author {
		flex-basis: 100%;
		margin-right: 0;
	}
}

.comment-form-email {
	flex: 1;
}

@media (max-width: 600px) {
	.comment-form-email {
		flex-basis: 100%;
		margin-right: 0;
	}
}

.comment-form-url {
	flex: 1;
}

.comment-form-comment {
	flex-basis: 100%;
	margin-bottom: 1rem;
}

.comments__submit {
	margin-top: 1rem;
}

.submit {
	margin-top: 1rem;
	padding: 1rem 2rem;
	border: 1px solid var(--black);
}

.comment-form .submit {
	border: none;
}

.comment-form .submit:disabled,
.wpcf7-submit:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transition: opacity 0.3s ease-in-out;
}

.comment__reply {
	margin-left: auto;
	font-size: 14px;
	color: var(--greyColor);
	cursor: pointer;
}

@media (max-width: 415px) {
	.comment__reply {
		font-size: 0.8rem;
	}
}

.comment__reply:hover {
	text-decoration: underline;
	color: var(--hoverColor);
}

.comment-reply-title {
	display: block;
	margin-bottom: 1rem;
	font-family: var(--fontTitle);
	font-size: 1.2rem;
	font-weight: var(--semiBold);
}

a#cancel-comment-reply-link {
	display: inline-block;
	padding-left: 10px;
	text-decoration: none;
	overflow: hidden;
	width: 30px;
	height: 30px
}

a#cancel-comment-reply-link:before {
	content: "\00D7";
	font-size: 30px;
	color: red;
	width: 36px;
	height: 36px
}

.form-checkbox {
	margin-bottom: 1rem;
	position: relative;
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	font-weight: var(--thin);
}

.form-checkbox__input {
	position: absolute;
	opacity: 0;
}

.form-checkbox__text {
	margin-left: 1.8rem;
	font-size: 0.92rem;
	line-height: 140%;
	flex: 0 100%;
	color: var(--greyColor);
}

@media (max-width:800px) {
	.form-checkbox__text {
		line-height: 20px
	}
}

@media (max-width:500px) {
	.form-checkbox__text {
		font-size: 13px;
	}
}

.form-submit {
	margin-bottom: 0 !important;
}

@media (max-width:415px) {
	.form-submit {
		width: 100%;
	}
}

.form-checkbox__text::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 1rem;
	height: 1rem;
	background-color: transparent;
	border: 1px solid #c9c5db;
	border-radius: 4px;
}

.form-checkbox__input:checked+.form-checkbox__text::before {
	background-image: url("assets/img/sprite.svg#checked");
	background-position: center;
	background-size: 1.1rem;
	background-repeat: no-repeat;
	border-color: transparent;
	background-color: var(--accentColor);
}

.form-checkbox__text a {
	color: var(--accentColor);
	text-decoration: none;
}

.form-checkbox__text a:hover {
	color: var(--hoverColor);
	text-decoration: underline;
}

.comment-navigation {
	margin: 0 0 3rem !important;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.comment-navigation a {
	padding: 1rem;
	display: block;
	font-size: 0.86rem;
	border: 1px solid var(--borderColor);
	border-radius: 6px;
	font-weight: var(--semiBold);
	color: var(--greyColor);
	text-decoration: none;
	margin: 0.5rem 0;
	text-align: center;
}

.comment .comment-respond {
	margin-top: 1rem;
	padding: 1.2rem;
	padding-top: 0.5rem;
	background-color: #f8f8fb;
	border-radius: var(--bradius);
}

.comment .comments__title {
	margin-bottom: 0.5rem;
}



/*
===============================
= 34 Таблицы
============================================
*/

table,
.wp-block-table {
	margin: 0 0 1.2rem;
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

table th {
	padding: 0.5rem 1rem;
	text-align: left;
	font-size: 0.9rem;
	font-weight: var(--semiBold);
	border: 1px solid var(--borderColor);
	background-color: var(--mainBg);
	word-break: normal
}

table td {
	padding: 0.5rem 1rem;
	font-size: 0.94rem;
	line-height: 1.5;
	border: 1px solid var(--borderColor);
	vertical-align: top;
	word-break: normal;
}

.wp-block-table td,
.wp-block-table th {
	font-size: 0.94rem;
	line-height: 1.5;
	border: 1px solid var(--borderColor);
	padding: 0.5rem 1rem;
}

table,
.wp-block-table {
	border-collapse: collapse
}

.wp-block-table {
	border-collapse: collapse
}

dt,
dd {
	margin-bottom: 1rem;
}

table::-webkit-scrollbar {
	height: 0.5rem;
}

table::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

table::-webkit-scrollbar-thumb {
	background-color: var(--accentColor);
	outline: 1px solid var(--accentColor);
}

/*
===============================
= 35 Компоненты записи, блоки, галереи
============================================
*/

blockquote {
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 1.5rem 0;
	padding: 2rem;
	background-color: var(--mainBg);
	border-radius: var(--bradius);
}

blockquote p {
	margin: 0
}

blockquote cite {
	display: inline-block;
	text-align: right;
	font-weight: var(--semiBold);
}

blockquote cite::before {
	content: "—";
	padding-right: 8px;
}

.wp-block-cover {
	margin-bottom: 1.2rem;
}

figcaption {
	color: var(--greyColor);
	font-size: 14px;
}

.wp-block-table figcaption {
	margin-top: -1rem;
	padding-right: 6px;
	text-align: right;
}

.blocks-gallery-grid,
.wp-block-gallery {
	margin: 0 auto
}

.wp-block-gallery,
.post-content .gallery {
	margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
	.wp-block-gallery {
		display: block !important;
	}

	.wp-block-image {
		width: 100% !important;
		margin-bottom: 1rem !important;
	}
}

.wp-block-gallery.is-cropped .blocks-gallery-item img {
	height: 100%;
	flex: 1;
	object-fit: cover;
}

.blocks-gallery-grid li {
	padding-left: 0 !important;
}

.blocks-gallery-grid li::before {
	display: none;
}

.wp-block-image .alignleft {
	margin: 0 2rem 1rem 0;
}

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

.wp-block-image .alignright {
	margin: 0 0 1rem 2rem;
}

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

@media (max-width: 900px) {
	.wp-block-image .alignleft,
	.wp-block-image .alignright {
		margin: 0 auto 1rem;
		float: none;
		display: table
	}
}

.gallery {
	margin: 1rem auto 0;
	display: inline-block;
}

.gallery .gallery-item {
	margin: 0;
	padding: 0;
}

.gallery .gallery-item img {
	border-radius: 6px;
}

.gallery-columns-2 {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width:600px) {
	.gallery-columns-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

.gallery-columns-4 {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width:600px) {
	.gallery-columns-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

.wp-block-buttons {
	margin-bottom: 1.2rem
}

.wp-block-code {
	margin-bottom: 1.2rem;
	padding: 1.5rem;
	padding-left: 2rem;
	max-width: 100%;
	overflow: auto;
	white-space: pre;
	color: var(--wight);
	border: 0;
	background-color: var(--black);
	font-family: monospace;
}

.wp-block-code code {
	padding: 0;
	background-color: transparent;
	font-size: 0.88rem;
}

code {
	padding: 0 1rem;
	display: inline-block;
	background-color: var(--mainBg);
	color: var(--black);
}

.wp-block-verse {
	white-space: pre-wrap;
}

.wp-block-embed__wrapper>* {
	margin-right: auto;
	margin-left: auto;
}

.wp-block-embed figcaption {
	padding-right: 6px;
	text-align: right;
}

.wp-block-latest-posts.is-grid li {
	padding: 1rem;
	border: 1px solid var(--borderColor);
	font-size: 0.9rem;
	font-weight: var(--semiBold);
	line-height: 125%;
	border-radius: 6px;
}

.wp-block-latest-posts.is-grid li a {
	text-decoration: none;
}

.wp-block-latest-posts.is-grid li a:hover {
	text-decoration: underline;
	color: var(--hoverColor);
}

.wp-block-latest-posts__featured-image {
	margin-bottom: 0.6rem;
}

.wp-block-latest-posts__featured-image img {
	border-radius: 4px;
}

.wp-block-columns {
	font-size: 0.96rem;
}

.wp-block-columns p:not(:last-child) {
	margin-bottom: 0.5rem;
}

.wp-block-columns img,
.wp-block-image,
.wp-block-cover,
.widget_media_image img {
	border-radius: 0.5rem;
	overflow: hidden;
}



/*
===============================
= 36 Кнопки соц. сетей
============================================
*/

.social-btns {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.social-btns__item {
	display: flex;
	align-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 4px;
	overflow: hidden;
	transition: transform 0.3s, opacity 0.3s;
}

.social-btns__item:not(:last-child) {
	margin-right: 0.7rem;
}

.social-btns__link {
	display: block;
	color: var(--white);
}

.social-btns__item:hover {
	opacity: 0.7;
	transition: opacity 0.3s;
}

.social-btns__link svg {
	width: 2rem;
	height: 2rem;
}

.rutube-item {
	background-color: #100943;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.rutube-item svg {
	width: 1.6rem;
	height: 1.6rem;
}

.tw-item {
	background-color: #111;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
}


/*
===============================
= 37 Поп-ап Cookies
============================================
*/

.cookies-box {
	padding: 2rem;
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 200;
	max-width: 256px;
	background-color: var(--cookiesBg);
	border-top-left-radius: 2rem;
	opacity: 0;
	box-shadow: -5px 10px 35px -10px rgba(34, 43, 101, 0.25);
	transform: translateX(-80%);
	transition: transform 0.6s ease-in-out, opacity 0.4s ease-in;
}

.cookies-box.is-shown {
	opacity: 1;
	transform: translateX(2rem);
}

.cookies-box__title {
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
	line-height: 140%;
	font-family: var(--fontTitle);
	font-weight: var(--bold);
	color: var(--cookiesColor);
}

.cookies-box__descr {
	margin-bottom: 1.5rem;
	font-size: 14px;
	line-height: 150%;
	color: var(--cookiesColor);
}

.cookies-box__descr p {
	font-weight: var(--thin);
}

.cookies-box__descr a {
	color: var(--cookiesColor);
}

.cookies-box__descr a:hover {
	color:var(--cookiesColor);
}

.cookies-box__btn {
	width: 100%;
	padding: 1rem 0;
	font-size: 0.9rem;
	line-height: 1;
	font-family: inherit;
	color: var(--cookiesColor);
	font-weight: var(--semiBold);
	background-color: transparent;
	border: 1px solid var(--cookiesColor);
	border-radius: calc(var(--bradius) * 2);
	text-align: center;
	transition: all 0.4s;
}

.cookies-box__btn:hover {
	color: var(--cookiesBg);
	border-color: var(--cookiesColor);
	box-shadow: inset 0 0 0 2rem var(--cookiesColor);
}


/*
===============================
= 38 Оформление для внутренних страниц, на всякий случай
============================================
*/

.inner-page {
	max-width: 800px;
}

.inner-page__list {
	padding: 3rem;
	background-color: var(--mainBg);
	border-radius: calc(var(--bradius) * 2);
}

@media (max-width: 700px) {
	.inner-page__list {
		padding: 0;
		background-color: var(--white);
	}
}

.inner-page__list > * + * {
	margin-top: 2.5rem;
}

.inner-page__item {
	padding: 2rem;
	background-color: var(--white);
	border-radius: var(--bradius);
	box-shadow: 0px 6px 35px -5px rgb(74 70 102 / 9%);
}

@media (max-width: 415px) {
	.inner-page__item {
		padding: 1.2rem;
	}
}

.inner-page__item > .blog-main__img {
	margin-bottom: 1.5rem;
}

.container__header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
}

.container__title {
	font: var(--bold) 1.8rem/130% var(--fontTitle);
}

.inner-page__status {
	margin-top: 0.5rem;
	font-size: 0.9rem;
	color: var(--greyColor);
}

.inner-page__title {
	display: block;
	margin-bottom: 1.2rem;
	font: var(--bold) 1.6rem/130% var(--fontTitle);
}

@media (max-width: 600px) {
	.inner-page__title {
		font: var(--bold) 1.4rem/130% var(--fontTitle);
	}
}

@media (max-width: 415px) {
	.inner-page__title {
		font: var(--bold) 1.2rem/130% var(--fontTitle);
	}
}

.inner-page__link,
.inner-page__more {
	text-decoration: none;
}

.inner-page__link:hover,
.inner-page__more:hover {
	color: var(--hoverColor);
	text-decoration: none;
}

.inner-page__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 2rem;
}

.inner-page__date {
	font-size: 0.9rem;
	color: var(--greyColor);
}

.inner-page__coments{
	width: 4100ch;
}

.inner-page__more {
	font-size: 13px;
	text-transform: uppercase;
	color: var(--greyColor);
}

.nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 800px;
	margin-top: 2rem;
}

.nav-links>.page-numbers {
	display: block;
	margin-inline: 0.5rem;
	padding: 0.8rem 1rem;
	font-size: 0.94rem;
	line-height: 1;
	font-weight: var(--semiBold);
	background-color: var(--mainBg);
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.3s;
}

.nav-links .current,
.nav-links>.page-numbers:hover {
	background-color: var(--btnBg);
	color: var(--btnColor);
}

.container__descr {
	margin-top: 1.5rem;
	padding: 1.5rem;
	border: 1px solid var(--borderColor);
	border-radius: var(--bradius);
}

.wpcf7-form {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background-color: var(--mainBg);
	border-radius: var(--bradius);
}

.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea {
	margin: 10px 0;
	border: 1px solid var(--borderColor);
	border-radius: 6px;
	padding: 1rem;
	font-family: inherit;
	font-variant-numeric: lining-nums;
	font-size: 1rem;
	line-height: 1;
	color: #6c6974;
	background-color: #fbfdff;
}

@media (max-width:600px) {
	.wpcf7-text,
	.wpcf7-email,
	.wpcf7-tel,
	.wpcf7-textarea {
		margin: 5px 0;
		padding: 0.5rem 1rem;
	}
}

.wpcf7-textarea {
	margin-bottom: 1.5rem;
	height: 120px;
}

.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus,
.wpcf7-textarea:focus,
.wpcf7-submit:focus {
	border-color: var(--accentColor);
	outline: none
}

.wpcf7-form p {
	margin: 0;
}

.wpcf7 label {
	margin-bottom: 1rem;
	font-size: 0.94rem;
	line-height: 150%;
	color: var(--greyColor);
}

.wpcf7-form-control-wrap {
	margin-bottom: 0.5rem;
	display: block;
}
