:root {
	--font-fraunces: 'Fraunces', serif;
	--font-cormorant: 'Cormorant', serif;
	--font-manrope: 'Manrope', sans-serif;
	--cream: #F2E7DD;
	--cream-rgb: 242, 231, 221;
	--light: #FAF6ED;
	--light-rgb: 250, 246, 237;
	--green-light: #2D5A46;
	--green: #1F4030;
	--green-dark: #163024;
	--terracotta: #B87E52;
	--terracotta-dark: #9F5D45;
	--text-color: #14140F;
	--second-color: 35C584F;
	--text-color-muted: #8F8A7E;
	--border-color: #DED0C0;
	--error: #C0392B;
	--white: #FFFFFF;
	--wrap-max: 1360px;
	--wrap-pad: 2.5rem;
	--this-transition: .25s linear 0s;
	--transition: all var(--this-transition);
	--header-h: 96px;
}

*:focus,
*:focus-visible {
	outline: none !important;
	box-shadow: none !important
}

body {
	font-family: var(--font-manrope);
	font-weight: 400;
	font-size: 17px;
	line-height: 1.75;
	letter-spacing: -.01em;
	color: var(--text-color);
	/* background-color: var(--light); */
	background-color: var(--cream);
	overflow-x: hidden
}

a {
	color: inherit;
	text-decoration: none
}

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

ul {
	margin: 0;
	padding: 0;
	list-style: none
}

hr {
	border: none;
	border-top: 1px solid var(--border-color);
	margin: 0
}

.wrap {
	max-width: var(--wrap-max);
	margin: 0 auto;
	padding-left: var(--wrap-pad);
	padding-right: var(--wrap-pad)
}

section {
	background: var(--cream);
	position: relative;
	padding: 5.5rem 0;
	margin: 0
}

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

h1,
h2,
h3 {
	font-family: var(--font-cormorant);
	font-weight: 550;
	font-style: normal;
	line-height: .9;
	letter-spacing: -.01em;
	color: var(--text-color)
}

h1 {
	font-size: clamp(2.15rem, 5.7vw, 4.5rem);
	margin: 0 0 1.75rem
}

h2 {
	font-size: clamp(2.75rem, 6.75vw, 6rem);
	margin: 0 0 1.5rem;
	font-weight: 400;
	transform: scale(1, 1.05);
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	margin: 0 0 .5rem;
	font-weight: 700;
	color: var(--green)
}

.lead {
	font-family: var(--font-manrope);
	font-weight: 500;
	font-size: clamp(1rem, 1.2vw, 1.05rem);
	line-height: 1.5;
	letter-spacing: -.01em;
	color: var(--text-color);
	max-width: 50ch
}

.text {
	font-family: var(--font-manrope);
	font-weight: 500;
	font-size: 17px;
	letter-spacing: -0.01em;
	max-width: 62ch;
	color: var(--text-color)
}

.text-tight {
	margin-bottom: .5rem
}

.accent {
	color: var(--terracotta)
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-family: var(--font-manrope);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--text-color);
	margin-bottom: 1.5rem
}

.eyebrow.green {
	color: var(--green)
}

.eyebrow.bold {
	font-weight: 600
}

.eyebrow-dash,
.quote-dash {
	display: inline-block;
	width: 50px;
	height: 2px;
	background-color: var(--terracotta);
	flex-shrink: 0
}

.quote-dash {
	background-color: var(--green);
	width: 20px
}

.header {
	position: sticky;
	top: 0;
	z-index: 1060;
	box-shadow: 0 0 0 1px rgba(184, 126, 82, .12);
	background-color: var(--cream)
}

.header .navbar {
	display: block;
	padding: 1.5rem 0
}

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

.brand {
	display: block;
	width: 376px;
	max-width: 100%;
	height: 40px;
	background-image: url(../img/logo.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain
}

.menu-links {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 0 2.5rem 0 auto
}

.menu-links .nav-link {
	font-family: var(--font-manrope);
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-color);
	padding: .25rem 0;
	position: relative;
	transition: var(--transition)
}

.menu-links .nav-link:after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: -3px;
	height: 1px;
	background-color: var(--terracotta);
	transform: scaleX(0);
	transform-origin: left;
	transition: var(--transition)
}

.menu-links .nav-link:hover,
.menu-links .nav-link.active {
	color: var(--terracotta)
}

.menu-links .nav-link:hover:after,
.menu-links .nav-link.active:after {
	transform: scaleX(1)
}

.burger {
	border: none;
	padding: 0.4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: transparent;
	z-index: 1061
}

.burger:focus {
	box-shadow: none;
	outline: 2px solid var(--terracotta);
	outline-offset: 2px
}

.burger-line {
	display: block;
	width: 22px;
	height: 2px;
	background-color: var(--green);
	transition: var(--transition)
}

.burger.is-open .burger-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg)
}

.burger.is-open .burger-line:nth-child(2) {
	opacity: 0
}

.burger.is-open .burger-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg)
}

.overlay {
	position: fixed;
	top: var(--header-h, 96px);
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(26,23,19,0.5);
	opacity: 0;
	visibility: hidden;
	z-index: 1050;
	transition: var(--transition)
}

.overlay.is-open {
	opacity: 1;
	visibility: visible
}

body.nav-open,
body.modal-open {
	overflow: hidden
}

.btn {
	font-family: var(--font-manrope);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .13em;
	text-transform: uppercase;
	padding: .95rem 1.5rem;
	border-radius: 2px;
	border: 1px solid transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	white-space: nowrap;
	transition: var(--transition)
}

.btn.light {
	background-color: var(--green-light);
	color: var(--white);
	border-color: var(--green)
}

.btn.dark {
	background-color: var(--green);
	color: var(--white);
	border-color: var(--green)
}

.btn.dark:hover,
.btn.light:hover {
	background-color: var(--green-dark);
	color: var(--white)
}

.btn.outline {
	background-color: transparent;
	color: var(--green);
	border-color: var(--green)
}

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

.menu-cta {
	padding: .75rem 1.25rem
}

.btn-split {
	display: inline-flex;
	align-items: stretch;
	border-radius: 2px;
	overflow: hidden;
	cursor: pointer;
	transition: var(--transition)
}

.btn-split-text {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-manrope);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--white);
	padding: .95rem 1.5rem;
	white-space: nowrap;
	transition: var(--transition)
}

.btn-split-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .95rem 1.15rem;
	margin-right: 1rem;
	transition: var(--transition)
}

.btn-split-icon .arrow {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M443.7 266.8l-165.9 176C274.5 446.3 269.1 448 265.5 448c-3.986 0-7.988-1.375-11.16-4.156c-6.773-5.938-7.275-16.06-1.118-22.59L393.9 272H16.59c-9.171 0-16.59-7.155-16.59-15.1S7.421 240 16.59 240h377.3l-140.7-149.3c-6.157-6.531-5.655-16.66 1.118-22.59c6.789-5.906 17.27-5.469 23.45 1.094l165.9 176C449.4 251.3 449.4 260.7 443.7 266.8z' fill='%23FFFFFF'/%3E%3C/svg%3E")
}

.btn-split.light .btn-split-text,
.btn-split.light .btn-split-icon {
	background-color: var(--green-light)
}

.btn-split.dark .btn-split-text,
.btn-split.dark .btn-split-icon {
	background-color: var(--green)
}

.btn-split.light .btn-split-icon,
.btn-split.dark .btn-split-icon {
	border-left: 1px solid var(--white)
}

.btn-split:hover .btn-split-text,
.btn-split:hover .btn-split-icon {
	background-color: var(--green-dark)
}

.btn-split.full {
	width: 100%
}

.btn-split.full .btn-split-text {
	flex: 1 1 auto
}

.btn.full {
	width: 100%;
	justify-content: center
}

.hero {
	position: relative;
	padding: 0;
	margin: 0;
	overflow: hidden
}

.hero-text {
	position: relative;
	z-index: 1;
	max-width: 560px;
	display: flex;
	flex-direction: column;
	justify-content: center
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1.5rem;
	margin-top: 2.5rem
}

.hero-media {
	position: relative;
	width: 100%
}

.hero-img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center
}

.hero-badge {
	position: absolute;
	right: 1.5rem;
	bottom: 30%;
	max-width: 260px;
	background-color: var(--green);
	color: var(--white);
	padding: 1.75rem;
	border-radius: 2px
}

.badge-title {
	font-family: var(--font-manrope);
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
	line-height: 1.4;
	margin-bottom: .75rem
}

.badge-title span {
	display: block
}

.badge-title:before,
.badge-title:after {
	content: '';
	display: block;
	width: 50%;
	height: 1px;
	background-color: var(--terracotta);
	margin: 0 0 1rem
}

.badge-title:after {
	width: 25%;
	margin: 1rem 0 0
}

.badge-text {
	font-family: var(--font-manrope);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, .82);
	margin: 0
}

.about-info {
	z-index: 1
}

.about-media {
	margin-bottom: 1.5rem;
	display: flex;
	justify-content: center
}

.about-photo {
	position: relative;
	width: 220px;
	max-width: 60%;
	aspect-ratio: 3 / 4;
	border-radius: 12px;
	background-image: url(../img/Olga_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top
}

#about-dmitry .about-photo {
	background-image: url(../img/Dmitry_bg.png);
	background-position: top 50px right;
	background-size: contain
}

.about-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom
}

.about-role {
	font-family: var(--font-manrope);
	font-weight: 600;
	font-size: 18px;
	color: var(--green-light);
	margin-bottom: 0
}

.facts {
	margin-top: 2rem
}

.fact {
	display: flex;
	height: 100%;
	gap: .75rem;
	align-items: center;
	border: 2px solid var(--border-color);
	border-radius: 2px;
	padding: 1.1rem 1.25rem
}

.fact-dash {
	display: inline-block;
	width: 1.5rem;
	height: 2px;
	background-color: var(--terracotta);
	flex-shrink: 0
}

.fact p {
	font-family: var(--font-manrope);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	margin: 0;
	width: 50px;
	min-width: calc(100% - 2rem);
	color: var(--text-color)
}

.whom-text {
	max-width: calc(var(--wrap-max) - 15%)
}

.whom-media {
	margin-top: 2.5rem
}

.whom-photo {
	position: relative;
	height: 100%;
	max-height: 350px;
	border-radius: 4px;
	overflow: hidden
}

.whom-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right
}

.quotes {
	margin-top: 7rem
}

.quote {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	position: relative;
	padding-left: 1rem;
	border-left: 1px solid var(--terracotta)
}

.quote:before {
	content: '';
	display: block;
	width: 2rem;
	height: 2rem;
	position: absolute;
	top: -3rem;
	left: 0;
	margin-bottom: 1.5rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.853 9.116c-7.53 4.836-11.714 10.465-12.55 16.887C5 36 13.94 40.893 18.47 36.497 23 32.1 20.285 26.52 17.005 24.994c-3.28-1.525-5.286-.994-4.936-3.032.35-2.039 5.016-7.69 9.116-10.323a.749.749 0 0 0 .114-1.02L20.285 9.3c-.44-.572-.862-.55-1.432-.185ZM38.679 9.116c-7.53 4.836-11.714 10.465-12.55 16.887-1.303 9.997 7.637 14.89 12.167 10.494 4.53-4.397 1.815-9.977-1.466-11.503-3.28-1.525-5.286-.994-4.936-3.032.35-2.039 5.017-7.69 9.117-10.323a.749.749 0 0 0 .113-1.02L40.11 9.3c-.44-.572-.862-.55-1.431-.185Z' fill='%23B87E52'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.quote-text {
	font-family: var(--font-manrope);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.5;
	color: var(--text-color)
}

.quote-attr {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-family: var(--font-manrope);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--green);
	margin: .5rem 0 0
}

.whom-closing {
	font-family: var(--font-cormorant);
	margin-top: 3rem;
	line-height: 1;
	font-size: 28px;
	font-weight: 600
}

.programs-nav-col {
	margin-bottom: 3rem
}

.programs-nav {
	position: sticky;
	top: 6.5rem
}

.phase {
	padding: 1rem 1rem 1.25rem;
	margin-bottom: 1.25rem;
	border-top: 1px solid var(--border-color)
}

.phase.first {
	border: 1px solid var(--border-color);
	border-radius: .5rem
}

.phase:-child {
	margin-bottom: 0
}

.phase-head {
	display: flex;
	align-items: center;
	gap: .65rem;
	margin-bottom: .9rem
}

.phase-num {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "Times New Roman", serif;
	font-size: 1.25rem;
	color: var(--white);
	background-color: var(--terracotta-dark);
	flex-shrink: 0;
	transition: var(--transition)
}

.phase.first .phase-num {
	background-color: var(--green)
}

.phase-title {
	font-family: var(--font-cormorant);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--terracotta-dark)
}

.phase.first .phase-title {
	color: var(--green)
}

.steps {
	position: relative;
	border-left: 4px solid var(--terracotta-dark);
	margin-left: 11px;
	padding-left: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: .6rem
}

.phase.first .steps {
	border-left: 4px solid var(--green)
}


.phase.first .steps:before,
.steps:after {
	content: '';
	display: block;
	position: absolute;
	left: -7px;
	height: 10px;
	width: 10px;
	border: 3px solid var(--terracotta-dark);
	border-radius: 50%;
	background-color: transparent;
}

.phase.first .steps:before {
	top: -8px;
	border-color: var(--green);
	background-color: var(--green)
}

.steps:after {
	bottom: -8px;
}

.phase.first .steps:after {
	border-color: var(--green)
}

.step {
	position: relative;
	display: inline-flex;
	gap: .5rem;
	font-family: var(--font-manrope);
	font-size: 16px;
	line-height: 20px;
	color: var(--text-color);
	transition: var(--transition)
}

.step > span {
	font-family: "Times New Roman", serif;
	font-size: 18px;
	color: var(--terracotta-dark);
	font-weight: 600
}

.phase.first .step > span {
	color: var(--green)
}

.programs-list {
	border-left: 1px solid var(--border-color)
}

.program {
	scroll-margin-top: 6.5rem;
	padding: 1.5rem 0
}

.programs-list > .program:first-of-type {
	padding-top: 0
}

.program-index {
	font-family: 'Times New Roman', serif;
	font-size: clamp(3rem, 8vw, 7.5rem);
	line-height: 1;
	color: var(--green);
	display: block
}

.program-meta {
	font-family: var(--font-manrope);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.5;
	color: var(--green-light);
	margin-bottom: .9rem
}

.program-quote {
	font-family: var(--font-cormorant);
	font-style: italic;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.4;
	color: var(--terracotta-dark);
	margin-bottom: 1.5rem;
	max-width: 46ch
}

.program-list {
	margin-bottom: 1.5rem
}

.program-list li {
	position: relative;
	font-family: var(--font-manrope);
	font-size: 15px;
	line-height: 1.55;
	color: var(--text-color);
	padding-left: 1.1rem;
	margin-bottom: .6rem
}

.program-list li:before {
	content: "";
	position: absolute;
	left: 0; top: 0.55em;
	width: 5px; height: 5px;
	border-radius: 50%;
	background-color: var(--green)
}

.order-link {
	font-family: var(--font-cormorant);
	font-weight: 600;
	font-size: 19px;
	color: var(--green-light);
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	transition: var(--transition)
}

.order-link:hover {
	color: var(--terracotta)
}

a .arrow,
span .arrow {
	position: relative;
	display: block;
	width: 30px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M443.7 266.8l-165.9 176C274.5 446.3 269.1 448 265.5 448c-3.986 0-7.988-1.375-11.16-4.156c-6.773-5.938-7.275-16.06-1.118-22.59L393.9 272H16.59c-9.171 0-16.59-7.155-16.59-15.1S7.421 240 16.59 240h377.3l-140.7-149.3c-6.157-6.531-5.655-16.66 1.118-22.59c6.789-5.906 17.27-5.469 23.45 1.094l165.9 176C449.4 251.3 449.4 260.7 443.7 266.8z' fill='%23B87E52'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center
}

a.btn .arrow {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M443.7 266.8l-165.9 176C274.5 446.3 269.1 448 265.5 448c-3.986 0-7.988-1.375-11.16-4.156c-6.773-5.938-7.275-16.06-1.118-22.59L393.9 272H16.59c-9.171 0-16.59-7.155-16.59-15.1S7.421 240 16.59 240h377.3l-140.7-149.3c-6.157-6.531-5.655-16.66 1.118-22.59c6.789-5.906 17.27-5.469 23.45 1.094l165.9 176C449.4 251.3 449.4 260.7 443.7 266.8z' fill='%23FFFFFF'/%3E%3C/svg%3E")
}

.telegram {
	background-color: var(--cream)
}

.tg-row {
	margin-top: 1rem
}

.tg-card {
	display: flex
}

.tg-card:first-child {
	border-right: 1px solid var(--border-color)
}

.tg-inner {
	padding: 0 2.5rem
}

.tg-header {
	display: flex;
	gap: 1.5rem
}

.tg-icon {
	display: block;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 2px solid var(--green-light);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 42' fill='none'%3E%3Cpath transform='translate(-2.999 -3.5)' d='M41.42 7.309s3.885-1.515 3.56 2.164c-.107 1.515-1.078 6.818-1.834 12.553l-2.59 16.99s-.216 2.489-2.159 2.922c-1.942.432-4.856-1.515-5.396-1.948-.432-.325-8.094-5.195-10.792-7.575-.756-.65-1.62-1.948.108-3.463L33.648 18.13c1.295-1.298 2.59-4.328-2.806-.649l-15.11 10.28s-1.727 1.083-4.964.109l-7.016-2.165s-2.59-1.623 1.835-3.246c10.793-5.086 24.068-10.28 35.831-15.15Z' fill='%232D5A46'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 60%;
	background-position: center
}

.tg-name {
	font-size: 2.5rem;
	margin-bottom: .25rem;
	color: var(--text-color)
}

.tg-handle {
	font-family: var(--font-manrope);
	font-weight: 500;
	color: var(--green-light);
	cursor: pointer;
	margin-bottom: .9rem;
	transition: var(--transition)
}

.tg-handle:hover {
	color: var(--green-light)
}

.tg-count {
	font-family: var(--font-manrope);
	font-size: 18px;
	color: var(--terracotta);
	margin: 1.5rem 0
}

.tg-count span {
	font-weight: 600;
	font-size: 24px;
	margin-right: .35rem;
}

#contacts h2 {
	font-size: clamp(2.15rem, 5.7vw, 4.5rem)
}

.contacts-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%
}

.form-title {
	font-family: var(--font-manrope);
	font-weight: 600;
	font-size: 22px;
	letter-spacing: .03em;
	text-transform: uppercase;
	margin-bottom: 1.75rem;
}

.form-group {
	margin-bottom: 1.4rem
}

.form-label {
	display: block;
	font-family: var(--font-manrope);
	font-size: 14px;
	font-weight: 600;
	color: var(--text-color);
	cursor: pointer;
	margin-bottom: 0
}

.form-control {
	font-family: var(--font-manrope);
	font-size: 15px;
	padding: .85rem 1rem;
	border: 1px solid var(--border-color);
	border-radius: .5rem;
	background-color: rgba(var(--light-rgb), .5);
	box-shadow: none;
	transition: var(--transition)
}

.form-control:focus {
	background-color: rgba(var(--light-rgb), .5);
	border-color: var(--terracotta)
}

.form-control::placeholder {
	color: var(--text-color-muted)
}

textarea {
	height: 150px;
	resize: none
}

.phone {
	display: flex;
	align-items: center;
	border: 1px solid var(--border-color);
	border-radius: .5rem;
	background-color: rgba(var(--light-rgb), .5);
	overflow: hidden;
	transition: var(--transition)
}

.phone-flag {
	display: block;
	width: 3rem;
	padding: .85rem .75rem;
	font-family: var(--font-manrope);
	border-right: 1px solid var(--border-color);
	white-space: nowrap;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 6'%3E%3Cpath fill='%23fff' d='M0 0h9v3H0z'/%3E%3Cpath fill='%23d52b1e' d='M0 3h9v3H0z'/%3E%3Cpath fill='%230039a6' d='M0 2h9v2H0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 1.25rem;
	background-position: center
}

.phone .form-control {
	background-color: transparent;
	border: none
}

.phone:focus-within {
	border-color: var(--terracotta)
}

.form-check {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.75rem;
	padding-left: 1.9rem;
}

.form-check .form-check-input {
	width: 1.35rem;
	height: 1.35rem;
	margin-top: 0;
	margin-left: -1.9rem;
	border-radius: 4px;
	border: 1.5px solid var(--border-color);
	background-color: rgba(var(--light-rgb), .5);
	cursor: pointer;
	transition: var(--transition)
}

.form-check .form-check-input:hover {
	box-shadow: none;
	border-color: var(--terracotta)
}

.form-check .form-check-input:checked {
	background-color: var(--green);
	border-color: var(--green)
}

.consent-label {
	font-family: var(--font-manrope);
	font-size: 14px;
	color: var(--text-color);
}

.consent-link {
	color: var(--terracotta);
	text-decoration: underline
}

.form-group.has-error .form-label {
	color: var(--error)
}

.form-group.has-error .form-control,
.form-group.has-error .phone {
	border-color: var(--error)
}

.form-check.has-error .consent-label {
	color: var(--error)
}

.form-check.has-error .form-check-input {
	border-color: var(--error)
}

.btn-split.is-loading {
	opacity: .65;
	pointer-events: none
}

.toast-notify {
	position: fixed;
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 1200;
	display: flex;
	align-items: center;
	gap: 1rem;
	max-width: 340px;
	padding: 1.1rem 1.25rem;
	background-color: var(--white);
	border-left: 4px solid var(--error);
	border-radius: 2px;
	box-shadow: 0 15px 40px rgba(20, 20, 15, .18);
	transform: translateY(12px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: var(--transition)
}

.toast-notify.success {
	border-left-color: var(--green)
}

.toast-notify.error {
	border-left-color: var(--error)
}

.toast-notify.show {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	pointer-events: auto
}

.toast-notify-text {
	margin: 0;
	font-family: var(--font-manrope);
	font-size: 14px;
	line-height: 1.45;
	color: var(--text-color);
	white-space: pre-line
}

.toast-notify-close {
	flex: 0 0 auto;
	width: 14px;
	height: 14px;
	margin-top: .2rem;
	padding: 0;
	border: 0;
	background-color: transparent;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M315.3 411.3c-6.253 6.253-16.37 6.253-22.63 0L160 278.6l-132.7 132.7c-6.253 6.253-16.37 6.253-22.63 0c-6.253-6.253-6.253-16.37 0-22.63L137.4 256L4.69 123.3c-6.253-6.253-6.253-16.37 0-22.63c6.253-6.253 16.37-6.253 22.63 0L160 233.4l132.7-132.7c6.253-6.253 16.37-6.253 22.63 0c6.253 6.253 6.253 16.37 0 22.63L182.6 256l132.7 132.7C321.6 394.9 321.6 405.1 315.3 411.3z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
	opacity: .55;
	transition: var(--transition)
}

.toast-notify-close:hover {
	opacity: 1
}

footer {
	border-top: 1px solid var(--border-color)
}

.footer-bottom {
	padding: 1.5rem var(--wrap-pad);
	font-family: var(--font-manrope);
	font-size: 12.5px;
	color: var(--text-color-muted)
}

footer p {
	margin: 0
}

@media (prefers-reduced-motion: no-preference) {
	:root {
		scroll-behavior: smooth
	}
}

@media (max-width: 767.98px) {
	:root {
		--wrap-pad: 1.25rem;
	}

	.tg-card:first-child {
		border-right: none;
		border-bottom: 1px solid var(--border-color);
		padding-bottom: 2rem
	}
}

@media (min-width: 992px) {
	.text-lg-left {
		text-align: left!important
	}

	.text-lg-center {
		text-align: center!important
	}

	.text-lg-right {
		text-align: right!important
	}

	.burger {
		display: none
	}

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

	.menu-links {
		gap: 1rem;
		margin: 0 1rem 0 auto
	}

	.hero {
		padding: 4.5rem 0
	}

	.hero-media {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: 58%;
		margin-top: 0
	}

	.hero-media:before {
		content: '';
		display: block;
		width: 150px;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: linear-gradient(to right, var(--cream) 0%, rgba(var(--cream-rgb), 0) 100%);
	}

	.hero-media:after,
	.whom-photo:after {
		content: '';
		display: block;
		width: 100%;
		height: 125px;
		position: absolute;
		bottom: -25px;
		background: linear-gradient(to top, var(--cream) 0%, var(--cream) 20%, rgba(var(--cream-rgb), 0) 100%)
	}

	.hero-img {
		height: 100%;
		aspect-ratio: auto;
		object-position: left
	}

	.hero-badge {
		right: calc(max((100vw - var(--wrap-max)) / 2, 0px) + var(--wrap-pad))
	}

	.about-media {
		margin-bottom: 0;
		display: block
	}

	#about .about-photo,
	#about-dmitry .about-photo {
		position: absolute;
		top: 0;
		bottom: 0;
		width: 45%;
		max-width: none;
		aspect-ratio: auto;
		min-height: 480px;
		height: auto;
		border-radius: 0;
		overflow: visible
	}

	#about .about-photo {
		left: 0
	}

	#about-dmitry .about-photo {
		right: 0
	}

	#about .about-photo:before {
		content: '';
		display: block;
		width: 150px;
		height: 100%;
		position: absolute;
		top: 0;
		right: 0;
		background: linear-gradient(to left, var(--cream) 0%, rgba(var(--cream-rgb), 0) 100%)
	}

	#about-dmitry .about-photo:before {
		content: '';
		display: block;
		width: 150px;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: linear-gradient(to right, var(--cream) 0%, rgba(var(--cream-rgb), 0) 100%)
	}

	#about .about-img,
	#about-dmitry .about-img {
		padding-top: 2rem;
		position: absolute;
		top: 0;
		bottom: 0;
		width: min(42vw, (var(--wrap-max) - 2 * var(--wrap-pad)) * 5 / 12);
		height: 100%
	}

	#about .about-img {
		left: calc(max((100vw - var(--wrap-max)) / 2, 0px) + var(--wrap-pad))
	}

	#about-dmitry .about-img {
		right: calc(max((100vw - var(--wrap-max)) / 2, 0px) + var(--wrap-pad));
		width: 100%;
		right: -50px;
	}

	.whom-text {
		width: 80%;
		position: relative;
		z-index: 2
	}

	.whom-media {
		margin-top: 0
	}

	.whom-photo {
		position: absolute;
		right: 0;
		bottom: 0;
		width: 40%;
		min-height: 0;
		max-height: max-content;
		border-radius: 0;
		z-index: 1
	}

	.whom-photo:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 35%;
		background: linear-gradient(to right, var(--cream) 0%, rgba(var(--cream-rgb), 0) 100%);
		z-index: 1;
		pointer-events: none
	}

	.quote-text {
		padding-right: 2rem
	}

	.program-info {
		height: calc(100% - 1.5rem);
		border-left: 1px solid var(--border-color);
		padding-left: 1.5rem
	}

	.program-list {
		padding-left: 1.5rem
	}

	.programs-nav-col {
		margin-bottom: 0
	}
}

@media (min-width: 1200px) {
	.menu-links {
		gap: 1rem
	}
}

@media (max-width: 1199.98px) {
	.navbar .brand {
		width: 145px;
		background-image: url(../img/logo_m.svg)
	}
}

@media (max-width: 991.98px) {
	section {
		padding: 2.5rem 0;
		margin: 1rem 0
	}

	.menu {
		position: fixed;
		top: var(--header-h, 96px);
		right: 0;
		bottom: 0;
		width: min(86vw, 360px);
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 2rem;
		background-color: var(--cream);
		padding: 2.5rem;
		transform: translateX(100%);
		overflow-y: auto;
		z-index: 1055;
		transition: var(--transition)
	}

	.menu.is-open {
		transform: translateX(0)
	}

	.menu-links {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
		margin: 0
	}

	.menu-cta {
		width: 100%;
		text-align: center
	}

	.hero {
		display: flex;
		flex-direction: column;
		padding: 3rem 0 0
	}

	.hero > .hero-media {
		margin-top: 3rem;
		order: 2
	}

	.hero-img {
		max-height: 350px
	}

	.hero > .wrap {
		order: 1
	}

	section.about {
		padding: 2.5rem 0
	}

	.about-photo {
		width: 100%;
		max-width: 100%;
		aspect-ratio: 1
	}

	.about-photo:before	{
		/* content: ''; */
		display: block;
		width: 100%;
		height: 125px;
		position: absolute;
		bottom: -25px;
		background: linear-gradient(to top, var(--light) 0%, var(--light) 20%, rgba(var(--light-rgb), 0) 100%);
		z-index: 1
	}

	.about-img {
		max-width: 80%;
		margin: 0 auto
	}

	.whom-media {
		display: none
	}

	.quotes {
		margin-top: 4rem
	}

	.quotes > * {
		margin-bottom: 2rem
	}

	.quote:before {
		top: -2rem
	}

	.whom-closing {
		margin-top: 0
	}

	.tg-inner {
		margin: 0 auto;
		text-align: center
	}

	.tg-inner .tg-icon {
		margin: 0 auto
	}

	.tg-header {
		flex-direction: column
	}
}

@media (max-width: 575.98px) {
	.hero-badge {
		position: static;
		max-width: none
	}
}
.policy-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1300;
	background-color: rgba(20, 20, 15, .45);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition)
}

.policy-overlay.show {
	opacity: 1;
	visibility: visible
}

.policy-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 1301;
	width: 100%;
	max-width: 640px;
	max-height: 82vh;
	display: flex;
	flex-direction: column;
	background-color: var(--white);
	border-radius: 4px;
	box-shadow: 0 25px 60px rgba(20, 20, 15, .25);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -48%);
	transition: var(--transition)
}

.policy-modal.show {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%)
}

.policy-modal-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem 1.75rem;
	border-bottom: 1px solid var(--border-color)
}

.policy-modal-title {
	margin: 0;
	font-family: var(--font-fraunces);
	font-size: 20px;
	color: var(--text-color)
}

.policy-modal-close {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin-top: .3rem;
	padding: 0;
	border: 0;
	background-color: transparent;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M315.3 411.3c-6.253 6.253-16.37 6.253-22.63 0L160 278.6l-132.7 132.7c-6.253 6.253-16.37 6.253-22.63 0c-6.253-6.253-6.253-16.37 0-22.63L137.4 256L4.69 123.3c-6.253-6.253-6.253-16.37 0-22.63c6.253-6.253 16.37-6.253 22.63 0L160 233.4l132.7-132.7c6.253-6.253 16.37-6.253 22.63 0c6.253 6.253 6.253 16.37 0 22.63L182.6 256l132.7 132.7C321.6 394.9 321.6 405.1 315.3 411.3z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
	opacity: .55;
	transition: var(--transition)
}

.policy-modal-close:hover {
	opacity: 1
}

.policy-modal-body {
	padding: 1.5rem 1.75rem 1.75rem;
	overflow-y: auto;
	font-family: var(--font-manrope);
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--text-color)
}

.policy-modal-body p {
	margin: 0 0 1rem
}

.policy-modal-body p:last-child {
	margin-bottom: 0
}

.policy-modal-body strong {
	color: var(--green)
}

@media (max-width: 575.98px) {
	.policy-modal {
		max-width: calc(100% - 2rem);
		max-height: 85vh
	}

	.policy-modal-header,
	.policy-modal-body {
		padding-left: 1.25rem;
		padding-right: 1.25rem
	}
}

.programs-swiper-wrap {
	position: relative
}

.pc-swiper {
	padding-bottom: .25rem
}

.pc-swiper .swiper-wrapper {
	align-items: stretch
}

.pc-swiper .swiper-slide {
	height: auto;
	display: flex
}

.program-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: var(--light);
	border: 1px solid var(--border-color);
	border-radius: .75rem;
	padding: 2rem
}

.program-card-head {
	display: flex;
	align-items: center;
	gap: .85rem;
	margin-bottom: 1.5rem
}

.program-card-num {
	width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "Times New Roman", serif;
	font-size: 1.35rem;
	color: var(--white);
	background-color: var(--green)
}

.program-card-title {
	margin: 0;
	font-size: 1.65rem;
	color: var(--green)
}

.program-card-body {
	flex: 1
}

.pc-step-top {
	display: flex;
	align-items: flex-start;
	gap: .75rem;
	margin-bottom: .5rem
}

.pc-step-index {
	font-family: "Times New Roman", serif;
	font-size: 1.4rem;
	line-height: 1.3;
	color: var(--terracotta-dark);
	flex-shrink: 0
}

.pc-step-title {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-color)
}

.pc-step-meta {
	margin: 0;
	font-family: var(--font-manrope);
	font-weight: 500;
	color: var(--green-light)
}

.pc-step-quote {
	font-family: var(--font-cormorant);
	font-style: italic;
	font-weight: 600;
	font-size: 22px;
	line-height: 1.4;
	color: var(--terracotta-dark);
	margin: .5rem 0 .85rem
}

.pc-step-list {
	margin: 0
}

.pc-step-list li {
	position: relative;
	font-family: var(--font-manrope);
	font-size: 14px;
	line-height: 1.55;
	color: var(--text-color);
	padding-left: 1rem;
	margin-bottom: .4rem
}

.pc-step-list li:before {
	content: "";
	position: absolute;
	left: 0; top: .55em;
	width: 4px; height: 4px;
	border-radius: 50%;
	background-color: var(--green)
}

.pc-step-divider {
	margin: 1.25rem 0;
	border-top: 1px solid var(--border-color)
}

.program-card-cta {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	margin-top: 1.5rem
}

.program-card-cta .btn-split-text {
	width: 100%
}

.program-card-short .program-card-head {
	margin-bottom: 1.25rem
}

.pc-short-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .9rem;
	flex: 1
}

.pc-short-list li {
	display: flex;
	align-items: baseline;
	gap: .65rem
}

.pc-short-index {
	font-family: "Times New Roman", serif;
	font-size: 1.1rem;
	color: var(--terracotta-dark);
	flex-shrink: 0
}

.pc-short-list div {
	font-family: var(--font-manrope);
	font-size: 15px;
	line-height: 1.5;
	color: var(--text-color)
}

.pc-short-list strong {
	color: var(--green)
}

.pc-swiper .swiper-pagination {
	position: static;
	margin-top: 1.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .4rem
}

.pc-swiper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: var(--border-color);
	opacity: 1;
	margin: 0 !important;
	transition: var(--transition)
}

.pc-swiper .swiper-pagination-bullet-active {
	background: var(--terracotta);
	width: 22px;
	border-radius: 4px
}

.pc-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--white);
	border: 1px solid var(--border-color);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: var(--transition)
}

.pc-nav:hover {
	background: var(--terracotta);
	border-color: var(--terracotta)
}

.pc-nav:hover:before {
	border-color: var(--white)
}

.pc-nav:before {
	content: "";
	display: block;
	width: 9px;
	height: 9px;
	border-top: 2px solid var(--green);
	border-right: 2px solid var(--green);
	transition: var(--transition)
}

.pc-nav-prev {
	left: -.25rem
}

.pc-nav-prev:before {
	transform: rotate(-135deg);
	margin-left: 3px
}

.pc-nav-next {
	right: -.25rem
}

.pc-nav-next:before {
	transform: rotate(45deg);
	margin-right: 3px
}

@media (max-width: 991.98px) {
	.program-card {
		padding: 1.5rem
	}
}

.pc-nav.swiper-button-disabled,
.pc-nav.swiper-button-lock {
	opacity: .3;
	pointer-events: none
}

.swiper-pagination-lock {
	display: none !important
}

@media (min-width: 992px) {
	.pc-swiper .swiper-slide {
		height: auto
	}

	.programs-swiper-wrap {
		padding: 0 3.25rem
	}

	.pc-nav-prev {
		left: 0
	}

	.pc-nav-next {
		right: 0
	}
}

.pc-phase-block {
	margin-bottom: 3rem
}

.pc-phase-block:last-child {
	margin-bottom: 0
}

.pc-phase-head {
	display: flex;
	align-items: center;
	gap: .85rem;
	margin-bottom: 1.5rem
}

.pc-phase-title {
	margin: 0;
	font-size: 1.65rem;
	color: var(--green)
}

.program-card-step {
	align-items: flex-start
}

.program-card-step-index {
	font-family: "Times New Roman", serif;
	font-size: clamp(2.5rem, 6vw, 4rem);
	line-height: 1;
	color: var(--green);
	display: block;
	margin-bottom: .5rem
}

.program-card-step-title {
	margin: 0 0 .35rem;
	font-size: 1.5rem;
	color: var(--text-color)
}

.program-card-step .pc-step-meta {
	margin-bottom: .75rem
}

.program-card-step .pc-step-quote {
	margin-top: 0
}

.program-card-step .pc-step-list {
	flex: 1
}

.pc-stage-badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	font-family: var(--font-manrope);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--green-light);
	background-color: var(--cream);
	border: 1px solid var(--border-color);
	border-radius: 100px;
	padding: .35rem .75rem;
	margin-bottom: 1rem
}

.pc-single-slide .pc-nav,
.pc-single-slide .swiper-pagination {
	display: none
}

.pc-single-slide .pc-swiper {
	cursor: default
}

@media (min-width: 992px) {
	.pc-single-slide .pc-swiper .swiper-wrapper {
		justify-content: flex-start
	}

	.pc-single-slide .pc-swiper .swiper-slide {
		max-width: 33.333%
	}
}