/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Reset * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Указываем box sizing */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
	padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
	text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
	max-width: 100%;
	display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
	margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
	font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* New theme * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.req:after {
	content: "*";
	color: #f00;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff"), url("../fonts/Montserrat-Light.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
#tToTop {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	z-index: 10002;
	background: var(--bs-dark);
	color: var(--bs-white);
	border: 1px solid var(--bs-dark);
	padding: 0.375rem 0.75rem;
	border-radius: 0.375rem;
}

.card-clickable {
	position: relative;
}
.card-clickable-link:after {
	content: "";
	position: absolute;
	inset: 0;
}
.card-clickable-none {
	position: relative;
}

/* Fixed footer */
html,
html body.admin-bar {
	height: calc(100vh - 32px) !important;
}

html body {
	height: 100vh !important;
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: auto 1fr auto;
	grid-template-rows: auto 1fr auto;
	-ms-grid-columns: 100%;
	grid-template-columns: 100%;
}

/* /Fixed footer */
.popup-form-callback {
	--popup-width: 600px;
}
.popup-success {
	--popup-width: 350px;
	text-align: center;
}
.popup__wrap {
	padding: var(--popup-padding, 1rem) !important;
	border-radius: var(--popup-border-radius, 1rem) !important;
	width: var(--popup-width, 100%) !important;
	max-width: var(--popup-max-width, 900px) !important;
	--fancybox-content-color: var(--popup-color, #171717);
	--fancybox-content-bg: var(--popup-bg, #fff);
}
.popup__close {
	position: absolute;
	right: 1rem;
	top: 1rem;
	cursor: pointer;
	padding: 0.25rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: transparent;
	border: none;
	color: #222;
}
.popup__icon {
	font-size: 4rem;
	color: #484;
	margin: 1rem 0;
}
.popup__icon svg {
	fill: currentColor;
}
.popup__title {
	font-size: 2rem;
}
.sprite-icon {
	height: 1em;
	width: 1em;
	fill: currentColor;
}

.square {
	width: 100%;
	aspect-ratio: 1/1;
	position: relative;
}
.square-child {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	-o-object-fit: contain;
	object-fit: contain;
}

.rect {
	width: 100%;
	aspect-ratio: 3/4;
	position: relative;
}
.rect-16-9 {
	aspect-ratio: 16/9;
}
.rect-9-16 {
	aspect-ratio: 9/16;
}
.rect-2-1 {
	aspect-ratio: 2/1;
}
.rect-4-3 {
	aspect-ratio: 4/3;
}
.rect-3-4 {
	aspect-ratio: 3/4;
}
.rect-child {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	-o-object-fit: contain;
	object-fit: contain;
}

.circle {
	border-radius: 50%;
}

/* FancyBox */
.fancybox__container {
	--fancybox-bg: rgba(23, 23, 23, 0.76);
	width: 100vw;
}

.fancybox__slide.has-html .fancybox__content {
	padding: 0;
}

/* WordPress */
/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/* Alignments --------------------------------------------- */
.alignleft {
	/*rtl:ignore*/
	float: left;
	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	/*rtl:ignore*/
	float: right;
	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/* GDPR --------------------------------------------- */
.cookiegdpr {
	--gdpr-btn-color: #fff;
	--gdpr-btn-bg: #f44;
	--gdpr-btn-border: 1px solid #f44;
	--gdpr-btn-border-radius: .375rem;
	--gdpr-btn-padding: .375rem .75rem;
	--gdpr-btn-bg-hover: #fff;
	--gdpr-btn-color-hover: #f44;
	--gdpr-btn-border-color-hover: #fff;
	--gdpr-bottom: 1rem;
	--gdpr-border-radius: .375rem;
	--gdpr-z-index: 10001;
	--gdpr-bg: rgba(255, 255, 255, .88);
	--gdpr-padding: .625rem;
	--gdpr-link-color: #ff797a;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Styles  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
:root {
	--color-prime: #fbf7f3;
	--color-sec: #d32a29;
	--color-sec2: #4a784d;
	--color-front: #FFF;
	--color-back: #000;
	--color-accent: #CD2027;

	--fs-0: 16px;
	--fs-1: 18px;
	--fs-2: 20px;
	--fs-3: 22px;
	--fs-4: 24px;
	--fs-5: 26px;
	--fs-6: 28px;
	--fs-7: 30px;
	--fs-8: 32px;
	--fs-9: 34px;
	--fs-10: 36px;
}

body {
	background-color: rgba(246, 237, 227, 0.45);
	background-size: 100%;
	font-size: var(--fs-2);
	font-family: 'Montserrat';
	overflow-x: hidden;
}

.no-scroll {
	overflow-y: hidden !important;
}

header.header {
	background-color: var(--color-front);
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transform: translateY(0%);
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
}

header.header.hide {
	transform: translateY(-130%);
	-webkit-transform: translateY(-130%);
	-moz-transform: translateY(-130%);
	-ms-transform: translateY(-130%);
	-o-transform: translateY(-130%);
}

.admin-bar header.header {
	top: 32px;
}

.header-inner {
	padding: 16px;
	position: relative;
}

ul.menu {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 43px;
}

li#menu-item-15 {
	flex: 0 0 auto;
	width: 25%;
}
li#menu-item-86 {
	width: 204px;
}

li#menu-item-14 {
	flex: 0 0 auto;
	width: 17%;
}

ul.menu li:not(.logo) > a {
	color: var(--bs-white);
	text-decoration: inherit;
	background-color: var(--color-sec);
	padding: 8px 20px;
	font-weight: 500;
	line-height: 120%;
	font-size: var(--fs-2);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

ul.menu li:not(.logo) > a:hover {
	background-color: var(--color-prime);
	color: var(--color-sec);
}

ul.menu li.logo > a {
	font-size: 0px;
	width: 234px;
	height: 60px;
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
}

ul.menu li.header__search > a {
	/* width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center; */
	padding: 0;
}

ul.menu li.highlight > a,
.mobile__link-partcipiate.highlight {
	position: relative;
	overflow: hidden;
}

li#menu-item-148 > a {
	width: 204px;
}

li#menu-item-149 > a {
	width: 204px;
	height: 64px;
}

li#menu-item-485 > a {
	width: 204px;
	height: 64px;
}

li#menu-item-151 > a {
	width: 130px;
}

ul.menu li.highlight > a::before,
.mobile__link-partcipiate.highlight::before {
	content: "";
	position: absolute;
	top: 0;
	left: -30%;
	width: 30px;
	height: 100%;
	background: linear-gradient(270deg, rgb(251 251 251 / 77%) 26.36%, rgba(255, 255, 255, 0) 74.73%);
	transform: skew(-35deg, 0deg);
	animation-name: highlight;
	animation-duration: 4s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	transition: 0s;
	-webkit-transition: 0s;
	-moz-transition: 0s;
	-ms-transition: 0s;
	-o-transition: 0s;
}

@keyframes highlight {
	0% {
		left: -30%;
	}

	20% {
		left: 120%;
	}

	100% {
		left: 120%;
	}
}

.section {
	margin-top: 128px;
	margin-bottom: 128px;
}

header.header + .section {
	margin-top: 128px;
}

.section__cover {
	position: relative;
	height: auto;
	z-index: 0;
}

.section__cover > .section__image {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section__cover-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	align-items: center;
}

.button,
.button:focus-visible,
.button:visited {
	text-decoration: inherit;
	color: var(--color-back);
	background-color: var(--color-front);
	font-size: var(--fs-4);
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-progress-appearance: none;
	outline: none !important;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 55px;
	font-weight: 500;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	line-height: 122%;
	max-width: fit-content;
}

.button:hover,
.button.fill:hover,
.button.sec:hover {
	background-color: var(--color-sec);
	color: var(--color-front);
}

.button.fill {
	background-color: var(--color-sec2);
	color: var(--color-front);
}

.button.arrow {
	padding: 0;
	margin: 0;
	width: 78px;
	height: 78px;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: unset;
	border-radius: 10px;
	color: var(--color-accent);
}

.button.arrow:hover {
	color: var(--color-front);
	background-color: var(--color-prime);
}

.button.sec {
	background-color: var(--color-sec);
}

.button.accent {
	background-color: var(--color-accent);
	color: var(--color-front);
}

.section-title {
	font-size: var(--fs-10);
	font-weight: 700;
	line-height: 120%;
	text-align: center;
	margin-bottom: 64px;
}

.section-title_about {
	margin-bottom: 48px;
}

.accessible_panno {
	position: relative;
}

.button.slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 0px;
	border-radius: 10px;
	color: var(--color-accent);
	width: 78px;
	height: 78px;
	max-width: unset;
	z-index: 1;
}

.button.slick-arrow:hover {
	color: var(--color-front);
	background-color: var(--color-prime);
}

.button.slick-arrow:disabled {
	background-color: var(--color-front);
	color: var(--color-sec);
}

.button.slick-next {
	left: calc(100% + 120px);
}

.button.slick-prev {
	right: calc(100% + 120px);
}

.full_width__slider .button.slick-next {
	left: unset;
	right: 100px;
}

.full_width__slider .button.slick-prev {
	right: unset;
	left: 100px;
}

.accessible_panno .slick-list,
.accessible_panno .slick-track {
	display: flex;
	height: auto !important;
}

.panno__item,
.panno__item:visited {
	margin-left: 15px;
	margin-right: 15px;
	padding: 38px;
	padding-bottom: 48px;
	background-color: var(--color-front);
	border-radius: 20px;
	overflow: hidden;
	text-decoration: inherit;
	color: inherit;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	width: 437px;
}

.panno__item:not(.unactive):hover {
	background-color: var(--color-prime);
	color: var(--color-front);
}

.panno__item-image {
	--panno-item-padding: 38px;
	height: 437px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(100% + var(--panno-item-padding) * 2);
	margin-left: calc(var(--panno-item-padding) * -1);
	margin-top: calc(var(--panno-item-padding) * -1);
	margin-bottom: 30px;
}

.panno__item.unactive svg path {
	fill: var(--color-sec)!important;
}

.panno__item-image > img {
	border-radius: 20px;
}

.panno__item-image > svg {
	width: 309px;
	height: 309px;
}

.panno__item-image svg path {
	fill: #ECECEC;
}

.panno__item-num {
	line-height: 120%;
	font-size: var(--fs-7);
	text-align: center;
	color: var(--color-sec2);
}

.panno__item-num {
	line-height: 120%;
	font-size: var(--fs-7);
	text-align: center;
	color: var(--color-sec2);
	font-weight: 700;
	margin-bottom: 16px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.panno__item:not(.unactive):hover .panno__item-num {
	color: var(--color-front);
}

.panno__item-title {
	text-align: center;
	font-weight: 700;
	line-height: 120%;
	font-size: var(--fs-4);
}

.panno__item.unactive .panno__item-num {
	color: var(--color-sec);
}

.panno__item.unactive .panno__item-title {
	color: var(--color-sec);
}

.section__about {
	background-color: var(--color-sec2);
	color: var(--color-front);
	margin-top: 256px;
	margin-bottom: 288px;
	background-repeat: no-repeat;
	background-size: auto 100%;
}

.section.waves__bg {
	position: relative;
}

.section.waves__bg::before {
	content: "";
	position: absolute;
	bottom: calc(100% - 1px);
	background-image: url('../img/section-top.svg');
	width: 100%;
	height: 128px;
	background-size: cover;
	background-position: top;
	left: 0;
}

.section.waves__bg::after {
	content: "";
	position: absolute;
	top: calc(100% - 1px);
	background-image: url('../img/section-bottom.svg');
	width: 100%;
	height: 110px;
	background-size: cover;
	background-position: bottom;
	left: 0;
}

.section__about-content {
	margin-bottom: 64px;
	line-height: normal;
}

.section__about-inner {
	display: flex;
	justify-content: space-between;
	column-gap: 133px;
	row-gap: 50px;
}

.section__about-content_wrap {
	flex: 0 0 auto;
	width: calc(514px + 1.5rem);
}

.section__about-image {
	flex: 0 0 auto;
	width: calc(100% - 557px);
	max-width: 740px;
	margin-left: auto;
}

.section__about-image > svg {
	width: 100%;
	height: auto;
}

.section__about .button {
	color: var(--color-sec2);
}

.section__history {
	margin-top: 128px;
	margin-bottom: 192px;
}

.section__history-inner {
	display: flex;
	row-gap: 50px;
	column-gap: 80px;
}

.section__history-title {
	margin-bottom: 36px;
}

.section__history-image {
	flex: 0 0 auto;
}

.section__history-image > img {
	margin-bottom: 0;
	border-radius: 20px;
}

.section__history-btn {
	font-size: var(--fs-2);
	max-width: 375px;
	padding-top: 16px;
	padding-bottom: 16px;
}

.gallery {
	position: relative;
}

.gallery .slick-prev {
	right: unset;
	left: 100px;
}

.gallery .slick-next {
	left: unset;
	right: 100px;
}

ul.slick-dots {
	position: absolute;
	left: 50%;
	display: flex;
	column-gap: 72px;
	transform: translateX(-50%);
	bottom: 64px;
}

ul.slick-dots button {
	font-size: 0px;
	border: 2px solid var(--color-front);
	width: 20px;
	height: 20px;
	background-color: transparent;
	border-radius: 50%;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

ul.slick-dots .slick-active button {
	background-color: var(--color-front);
}

.gallery__item img {
	object-fit: cover;
	aspect-ratio: 2.7;
	width: 100%;
}

.gallery__item > img {
	margin-bottom: 0;
}

div#placement__map {
	width: 100%;
	height: 640px;
	background-color: var(--color-sec);
}

.post,
.page {
	margin: 0;
}

footer.footer {
	margin-top: -80px;
	padding-bottom: 128px;
	background-repeat: no-repeat;
	color: var(--color-front);
	margin-bottom: 0;
	background-color: var(--color-sec2);
}

footer.footer.waves__bg::after {
	display: none;
}

.footer__link {
	display: block;
	max-width: fit-content;
	margin: 0 auto;
	text-transform: uppercase;
	color: inherit;
	text-decoration: inherit;
	font-weight: 700;
	font-size: var(--fs-7);
	margin-bottom: 32px;
	line-height: 120%;
}

ul.socials__list {
	display: flex;
	margin: 64px auto;
	column-gap: 64px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	row-gap: 64px;
}

.footer-title {
	max-width: fit-content;
	display: block;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	column-gap: 28px;
	row-gap: 16px;
}

.footer__social.socials__list svg,
.footer__social.socials__list img {
	max-width: 64px;
	max-height: 48px;
}

.footer__social.socials__list {
	margin: 0;
	gap: 26px;
}

.footer__btn .button {
	color: var(--color-sec);
	padding: 28px 30px;
	font-size: var(--fs-8);
}

.footer__btn .button:hover {
	color: var(--bs-white);
}

.footer__email {
	font-size: var(--fs-6);
}

.footer__menu {
	font-size: var(--fs-2);
	max-width: 720px;
	margin-left: auto;
}

.footer__menu a {
	color: var(--color-front);
}

.footer__menu ul {
	gap: 15px;
}

.footer__menu ul li {
	flex: 0 0 auto;
	width: calc(50% - .5rem);
}

.searchform {
	display: flex;
	height: 64px;
	align-items: center;
	padding: 20px;
	background-color: var(--bs-white);
	max-width: fit-content;
	border-radius: 20px;
	column-gap: 14px;
}

.searchform input,
.searchform input:focus-visible {
	padding: 0;
	margin: 0;
	border: none;
	background-color: var(--color-prime);
	border-radius: 20px;
	color: var(--bs-dark);
	outline: none;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-progress-appearance: none;
	max-width: 210px;
}

.searchform input,
.searchform input:focus-visible {
	padding: 0;
	margin: 0;
	border: none;
	background-color: var(--color-prime);
	border-radius: 20px;
	color: var(--bs-dark);
	outline: none;
	appearance: none;
	-moz-appearance: textfield;
	-webkit-appearance: none;
	-ms-progress-appearance: none;
	max-width: 180px;
	padding: 0 20px;
	text-align: center;
	margin-right: auto;
}

.searchform input::-webkit-outer-spin-button,
.searchform input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.searchform [type="submit"] {
	padding: 0;
	max-width: unset;
	width: 64px;
	height: 64px;
	margin-right: -20px;
	background-color: transparent;
	flex: 0 0 auto;
}

.page-template-page-search .section-title {
	padding-top: 46px;
}

.searchform [type="submit"]:hover {
	background-color: var(--color-prime);
}

.header-inner .searchform {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	font-weight: 500;
	width: 204px;
	max-width: unset;
	padding: 0;
	z-index: 2;
}
.menu .searchform span {
	display: none;
}
.menu .searchform  {
	column-gap: 0;
}
.menu .searchform [type="submit"] {
	background-color: var(--color-sec);
	color: var(--bs-white);
}
.menu .searchform input {
	height: 100%;
	max-width: 130px;
	margin-right: 0;
}

/* .header-inner .searchform.active {
	pointer-events: all;
	opacity: 1;
} */

body header.header {
	box-shadow: none;
	background: transparent;
}

body .header-inner {
	background-color: var(--color-front);
	margin-top: 16px;
	margin-bottom: 16px;
	border-radius: 20px;
}

body.home .header-inner {
	margin: 0;
}

body.home:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 128px;
	background: var(--color-front);
}

body:not(.home) .section:first-child {
	margin-top: 160px;
}

.panno_slider {
	margin-left: -15px;
	margin-right: -15px;
}

.panno_slider__item {
	background-color: var(--color-front);
	border-radius: 20px;
	overflow: hidden;
	display: flex !important;
	flex-wrap: wrap;
	column-gap: 30px;
	padding-bottom: 96px;
	justify-content: center;
	margin-left: 15px;
	margin-right: 15px;
	max-width: 1346px;
}

.panno_slider__item-image {
	flex: 0 0 auto;
	width: 100%;
	margin-bottom: 48px;
	height: 450px;
}

.panno_slider__item-image > img {
	border-radius: 20px;
	margin-bottom: 48px;
	/*width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;*/
}

.panno_slider__item-title {
	flex: 0 0 auto;
	width: 100%;
	text-align: center;
	padding: 0 116px;
	line-height: 120%;
	font-size: var(--fs-7);
	font-weight: 700;
	margin-bottom: 32px;
}

.panno_slider__item-btns {
	display: flex;
	flex: 0 0 auto;
	width: 100%;
	justify-content: center;
	column-gap: 30px;
}

.panno_slider__item-fragment {
	padding-left: 34px;
	padding-right: 34px;
	column-gap: 36px;
	flex: 0 0 auto;
	width: calc(34% - 15px);
	max-width: 540px;
	margin-bottom: 48px;
	justify-content: flex-start;
}

.panno_slider__item-fragment_title {
	font-size: var(--fs-2);
	margin-bottom: 6px;
}

.panno_slider__item-fragment_price {
	font-weight: 700;
	text-align: left;
}

.panno_slider__item-content {
	padding: 0 116px;
/*  text-align: justify;*/
font-size: var(--fs-4);
line-height: 120%;
margin-bottom: 48px;
flex: 0 0 auto;
width: 100%;
}

.panno_slider .slick-arrow {
	top: 222px;
}

.primaries__list {
	row-gap: 128px;
}

.primaries__item-image {
	width: 114px;
	height: 114px;
	margin: 0 auto;
	margin-bottom: 64px;
}

.primaries__item-image > img,
.primaries__item-image > svg {
	max-width: 100%;
	max-height: 100%;
}
.primaries__item-image > svg path {
	fill: var(--color-sec2);
}

.primaries__item-desc {
	font-weight: 500;
	font-size: var(--fs-4);
	text-align: center;
}

.section__single_panno .panno_slider__item-fragment {
	margin: 0 15px;
}

.section__single_panno {
	margin-top: 191px !important;
}

.single_panno__header {
	display: flex;
	column-gap: 15px;
	align-items: center;
	margin-bottom: 16px;
}

.single_panno__header-center {
	margin: 0 auto;
}

.single_panno__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 64px;
}

.single_panno__footer-counter {
	font-weight: 700;
	font-size: var(--fs-8);
}

.single_panno-content {
	font-size: var(--fs-4);
	line-height: 120%;
/*  text-align: justify;*/
margin-bottom: 96px;
}

.section-subtitle {
	font-size: var(--fs-7);
	text-align: center;
	line-height: 120%;
}

.section-title + .section-subtitle {
	margin-top: -32px;
}

.single_panno-image > img {
	margin-bottom: 96px;
}

.section-content {
	margin-bottom: 128px;
/*  text-align: justify;*/
font-size: var(--fs-4);
line-height: 120%;
}

.section-content a {
	color: inherit;
}

.section__about_project-image {
	position: relative;
	min-height: 640px;
}

.section__about_project-image > img {
	margin-bottom: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
	position: absolute;
}

.section-content p {
	margin-bottom: 30px;
}

.section-content ul,
.section-content ol {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
	padding-left: 30px;
}

.section-content ul li {
	margin-bottom: 30px;
	position: relative;
}

.section-content ul li::marker {
	font-size: 60%;
}

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

.section__about_project-image.bg_figure {
	text-align: center;
	background-color: var(--color-sec2);
	margin-top: 156px;
	margin-bottom: 288px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-content em {
	font-style: normal;
	font-size: var(--fs-2);
}

.section-note {
	font-size: var(--fs-10);
	text-align: center;
	line-height: 120%;
	color: var(--color-sec2);
	font-weight: 700;
	margin-bottom: 96px;
}

header.header + .section__page {
	margin-top: 64px;
}

ul.events__list {
	display: flex;
	flex-direction: column;
	row-gap: 64px;
}

li.events__item {
	display: flex;
	column-gap: 30px;
	row-gap: 30px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

li.events__item:hover,
li.events__item.hover {
	background-color: var(--color-prime);
}

li.events__item.revert {
	flex-direction: row-reverse;
}

.events__item-image {
	flex: 0 0 auto;
	width: 100%;
	position: relative;
	background-color: var(--color-sec2);
	color: var(--color-front);
	min-height: 437px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	transition: .3s;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.events__item-image > img {
	position: absolute;
	width: 100%;
	height: 100%;
	margin-bottom: 0;
	object-fit: cover;
	top: 0;
	left: 0;
	opacity: 0;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

li.events__item:hover .events__item-image > img,
li.events__item.hover .events__item-image > img {
	opacity: 1;
}

li.events__item:hover .events__item-image,
li.events__item.hover .events__item-image {
	width: calc(50% - 30px);
}

.events__item-title {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 50px;
	font-size: 96px;
	line-height: 120%;
	font-weight: 700;
	text-align: center;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.events__item-title span {
	font-size: 48px;
	font-weight: 500;
}

li.events__item:hover .events__item-title,
li.events__item.hover .events__item-title {
	opacity: 0;
}

.events__item-content .section-content {
	font-size: var(--fs-2);
	margin-bottom: 30px;
}

.events__item-content {
	padding: 40px;
	padding-left: 20px;
	opacity: 0;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	color: var(--color-front);
	display: flex;
	flex-direction: column;
	display: none;
}

li.events__item:hover .events__item-content,
li.events__item.hover .events__item-content {
	opacity: 1;
	display: block;
}

.events__item-content .button.sec {
	margin: 0 auto;
	margin-top: auto;
	background-color: var(--color-front);
}

.events__item-content .button.sec:hover {
	background-color: var(--color-sec2);
}

.accordion-item:first-of-type .accordion-button {
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}

.accordion-item:first-of-type {
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}

.accordion-item:last-of-type .accordion-button {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

.accordion-item:last-of-type {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

.accordion-item {
	border: none;
}

.accordion-button::after {
	display: none;
}

.accordion-button > svg {
	margin-left: 34px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.accordion-button.collapsed > svg {
	color: var(--color-accent);
	transform: scaleY(-1);
	-webkit-transform: scaleY(-1);
	-moz-transform: scaleY(-1);
	-ms-transform: scaleY(-1);
	-o-transform: scaleY(-1);
}

.accordion-button:hover > svg {
	color: inherit;
}

.accordion-button,
.accordion-button:focus,
.accordion-button:focus-visible {
	justify-content: center;
	padding: 45px;
	font-weight: 700;
	font-size: var(--fs-7);
	background-color: transparent !important;
	outline: none !important;
	box-shadow: none !important;
	color: inherit !important;
}

.accordion-button:hover {
	background-color: var(--color-prime) !important;
	color: var(--color-front) !important;
}

.accordion-button:not(.collapsed) {
	background-color: var(--color-sec2) !important;
	color: var(--color-front) !important;
}

.accordion-collapse {
	background-color: var(--color-sec2);
	color: var(--color-front);
}

.accordion-body {
	padding: 0;
	padding-bottom: 56px;
/*  text-align: justify;*/
}

.section__faq .section-content {
	margin-bottom: 128px;
}

.section__not_found .section-title {
	font-size: 160px;
}

.choose_fragment {
	display: flex;
}

.choose_fragment__choosen {
	flex: 0 0 auto;
	width: calc(25.5%);
	background-color: var(--color-front);
	padding: 48px;
}

.choose_fragment__choosen .section-title {
	font-size: var(--fs-4);
	text-align: left;
}

.choose_fragment__choosen .section-subtitle {
	font-size: var(--fs-2);
	text-align: left;
	margin-bottom: 64px;
}

.button[disabled] {
	background-color: var(--color-sec);
	color: var(--color-front);
	pointer-events: none;
}

.choose_fragment__widget > img {
	margin-bottom: 0;
}

.section__checkout {
	margin-top: 16px !important;
}

.checkout__message {
	background-color: var(--color-sec2);
	color: var(--color-front);
	padding: 48px 73px;
	border-radius: 20px;
	margin-bottom: 64px;
}

.checkout__message .section-title {
	font-size: var(--fs-7);
	margin-bottom: 32px;
}

label {
	display: flex;
	flex-direction: column;
	row-gap: 16px;
}

.wpcf7-form-control,
.wpcf7-form-control:focus-visible {
	display: flex;
	width: 100%;
	border-radius: 20px !important;
	padding: 24px !important;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-progress-appearance: none;
	outline: none;
	border: none !important;
	margin-bottom: 32px;
}

.wpcf7-not-valid-tip {
	position: absolute;
	bottom: 0;
	right: 0;
}

.checkout__message textarea.wpcf7-form-control {
	height: 240px;
}

.checkout__slider {
	background-color: var(--color-sec);
	padding: 48px 73px;
	border-radius: 20px;
}

.checkout__slide .section-subtitle {
	font-size: var(--fs-2);
}

.checkout__slide-fragment_id {
	font-size: var(--fs-4);
	font-weight: 500;
	text-align: center;
	margin-bottom: 32px;
}

.wpcf7-form-control.wpcf7-checkbox {
	padding: 0 !important;
	display: block;
}

.wpcf7-list-item {
	margin: 0;
	margin-bottom: 16px;
}

.wpcf7-list-item label {
	flex-direction: row;
}

.wpcf7-list-item input {
	display: none;
}

.wpcf7-list-item-label {
	display: flex;
	column-gap: 37px;
	align-items: center;
}

.wpcf7-list-item-label::before {
	width: 30px;
	height: 30px;
	display: block;
	background-color: var(--color-front);
	border-radius: 5px;
	cursor: pointer;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.wpcf7-list-item-label::after {
	display: none;
}

.wpcf7-list-item input:checked + .wpcf7-list-item-label::before {
	background-color: var(--color-prime);
}

.checkout__slide .section-content {
	margin-bottom: 0px;
	margin-top: 16px;
	font-size: var(--fs-1);
}

.checkout__slide .section-title {
	margin-bottom: 32px;
}

.checkout__slide .section-subtitle {
	margin-top: 0px;
}

.section-title.min {
	font-size: var(--fs-7);
}

label + .section-title {
	margin-top: 32px;
}

.wpcf7-radio .wpcf7-list-item-label::before {
	display: none;
}

.wpcf7-radio .wpcf7-list-item-label {
	background-color: var(--color-front);
}

.wpcf7-radio .wpcf7-list-item-label {
	background-color: var(--color-front);
	padding: 25px 46px;
	border-radius: 20px;
	font-weight: 500;
	font-size: var(--fs-4);
	cursor: pointer;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.wpcf7-radio input:checked + .wpcf7-list-item-label {
	background-color: var(--color-prime);
	color: var(--color-front);
}

.wpcf7-form-control.wpcf7-radio {
	padding: 0 !important;
	display: flex;
	justify-content: space-between;
}

.cart {
	background-color: var(--color-sec);
	padding: 48px 40px;
	border-radius: 20px;
}

.cart .section-title {
	font-size: var(--fs-8);
	margin-bottom: 38px;
}

ul.cart__list {
	display: flex;
	flex-direction: column;
	row-gap: 16px;
	margin-bottom: 32px;
}

li.cart__item {
	display: flex;
	column-gap: 16px;
	justify-content: space-between;
}

.cart__item-value {
	flex: 0 0 auto;
	width: max-content;
	min-width: 90px;
	text-align: right;
}

li.cart__item.total {
	font-weight: 700;
	margin-top: 16px;
}

.cart__note {
	font-size: var(--fs-0);
	line-height: 120%;
	margin-bottom: 32px;
}

.cart .button[type="submit"] {
	width: 100%;
	max-width: unset;
}

.cart .button[type="submit"][disabled] {
	background-color: var(--color-front);
	color: var(--color-back);
}

.section__cover-title {
	z-index: 1;
	width: 100vw;
	text-align: center;
	box-shadow: 0px 0px 20px 20px var(--color-front);
	background-color: var(--color-front);
	padding-bottom: 32px;
}

.section__cover-title path {
	fill: var(--color-sec2);
}

.section__cover-inner > .button {
	position: absolute;
	bottom: 64px;
	z-index: 103;
}

.panno_slider__item .panno-wrap > img {
	border-radius: 20px;
	width: 100%;
}

.panno_slider__item-image .tpt-fork-controls {
	display: none;
}

.section_multifragment svg .panno-tile.tile-selected {
	fill: rgb(205 32 39 / 60%);
	stroke-width: 0;
	rx: 0;
	ry: 0;
}

.section_multifragment .tpt-widget {
	max-width: 1920px;
	margin: 0 auto;
}

.single_panno__header-left {
	position: absolute;
	left: 100px;
}

.single_panno__header-right {
	position: absolute;
	right: 100px;
}

.header__search svg {
	pointer-events: none;
}

.mobile_menu-open > svg {
	pointer-events: none;
}

.footer__content {
	margin-bottom: 64px;
	text-align: center;
}
.section__history_nn, .section__faq {
	margin-top: 208px !important;
}
.section__history_nn .section-title {
	margin-bottom: 16px;
}
.events__item  .section-title{
	margin-bottom: 64px;
}
.single_panno__header .section-title + .section-subtitle {
	margin-bottom: 64px;
}

.bg-blue {
	background-color: var(--color-sec2);
}
.card-blue {
	border-radius: 1.25rem;
	line-height: 1.2;
	padding: 40px;
	min-height: 487px;
}
.section__about_project .section-content blockquote {
	background-color: var(--color-sec2);
	color: var(--color-front);
	border-radius: 20px;
	padding: 32px;
	margin-bottom: 2rem;
	overflow: hidden;
	padding-bottom: 0;
}

.section__about_project .section-content blockquote img {
	border-radius: 20px;
}

.section__about_project .section-content blockquote p:last-child {
	margin-bottom: 30px;
}

.section__about_project .section-content blockquote strong {
	font-weight: 600;
}

#tpt_widget {
	min-height: 789px;
	width: 100%;
}

#tpt_widget.empty {
	min-height: unset;
}
.about-text {
	font-size: 64px;
	font-weight: 700;
	line-height: 110%;
	text-align: center;
	color: var(--color-sec2);
}
.step {
	background: rgba(245, 244, 244, 1);
	border-radius: 22px;
	margin-bottom: 60px;
}
.step-content {
	padding: 30px;
	text-align: left;
}
.step .section-title {
	margin-bottom: 40px;
	text-align: left;
}
.step img {
	border-radius: 22px;
	margin-bottom: 0;
}
.row-reverse {
	flex-direction: row-reverse;
}
.step .row-reverse .section-title, .row-reverse .step-content {
	text-align: right;
}
.about-panno-text {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-sec2);
	text-align: center;
	line-height: 120%;
	margin-top: 40px;
}
.datails__content {
	margin-top: 60px;
	padding: 20px 32px;
	border-radius: 22px;
	background: rgba(245, 244, 244, 1);
}
.datails img {
	border-radius: 15px;
}
.datails__content .section-title {
	margin-bottom: 40px;
	text-align: left;
}