:root {
	--white-1: #fef9ee;
	--white-2: #f7f0df;
	--green-1: #a8ad9b;
	--green-2: #777e64;
	--brown-1: #4c4637;
	--gray-1: #dcd6ca;
	--gray-2: #ede8dd;
}

.body-wrapper {
	position: relative;
	overflow: hidden;
}

body {
	font-family: "MTS Text";
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	color: var(--brown-1);
	background-color: var(--gray-2);
}

.section {
	padding-bottom: 180px;
}

.container {
	width: 1400px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.h1 {
	font-family: "MTS Wide";
	font-size: 120px;
	line-height: 100%;
}

.h2,
h2 {
	font-family: "MTS Wide";
	font-size: 50px;
	line-height: 105%;
}

.h3,
h3 {
	font-family: "MTS Wide";
	font-size: 40px;
	line-height: 105%;
}

.text-l {
	font-size: 22px;
	line-height: 130%;
}

.text-m {
	font-size: 20px;
	line-height: 130%;
}

.text-s {
	font-size: 17px;
	line-height: 135%;
}

.text-xs {
	font-size: 13px;
	line-height: 135%;
}

@media screen and (max-width: 1024px) {
	.h1 {
		font-size: 56px;
		line-height: 100%;
	}
}

@media screen and (max-width: 768px) {
	body {
		font-size: 17px;
		line-height: 130%;
	}

	.h2,
	h2 {
		font-size: 37px;
		line-height: 105%;
	}

	.h3,
	h3 {
		font-size: 37px;
		line-height: 105%;
	}

	.text-l {
		font-size: 20px;
		line-height: 130%;
	}
}

.fw-500 {
	font-weight: 500;
}

.fw-300 {
	font-weight: 300;
}

.tt-uc {
	text-transform: uppercase;
}

.green-text {
	color: var(--green-2);
}

.brown-text {
	color: var(--brown-1);
}

.white-text {
	color: var(--white-1);
}

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

.bg-green {
	background-color: var(--green-2);
	color: var(--white-1);
}

.content p:not(:last-child) {
	margin-bottom: 15px;
}

.content h3:not(:last-child) {
	margin-bottom: 20px;
}

.content h3:not(:first-child) {
	margin-top: 30px;
}

.content b,
.content strong {
	font-weight: 500;
}

.content table {
	border: 1px solid var(--brown-1);
	border-collapse: collapse;
	margin-top: 30px;
}

.content table td {
	border: 1px solid var(--brown-1);
	padding: 10px;
	vertical-align: top;
}

.content table th {
	border: 1px solid var(--brown-1);
	padding: 10px;
}

.content a {
	text-decoration: underline;
}

.btn {
	font-size: 17px;
	line-height: 135%;
	text-transform: uppercase;
	font-weight: 500;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 15px;
	position: relative;
	cursor: pointer;
	color: var(--green-2);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	font-family: "MTS Wide";
}

.btn__arrow {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	display: inline-block;
	min-width: 30px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid var(--green-2);
	position: relative;
	z-index: 1;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.btn__arrow::after {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	-webkit-mask-image: url(../img/icons/arrow.svg);
	mask-image: url(../img/icons/arrow.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	background-color: var(--green-2);
}

.btn__arrow_fill {
	background-color: var(--green-2);
}

.btn__arrow_fill::after {
	background-color: var(--white-1);
}

.btn__arrow_down {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.btn_border {
	padding: 15px 25px;
	border: 1px solid var(--green-2);
	border-radius: 100px;
	width: 100%;
}

.btn_border:hover {
	background-color: rgba(168, 173, 155, 0.5);
}

.btn_white {
	color: var(--white-1);
}

.btn_white .btn__arrow {
	border-color: var(--white-1);
}

.btn_white .btn__arrow::after {
	background-color: var(--white-1);
}

.btn_small {
	font-size: 13px;
	line-height: 100%;
}

.btn_small .btn__arrow {
	min-width: 24px;
	width: 24px;
	height: 24px;
}

.btn:hover .btn__arrow {
	-webkit-transform: translateX(10px);
	transform: translateX(10px);
}

.btn:hover .btn__arrow_down {
	-webkit-transform: rotate(90deg) translateX(10px);
	transform: rotate(90deg) translateX(10px);
}

.tag {
	color: var(--green-2);
	font-family: "MTS Wide";
	font-size: 13px;
	line-height: 120%;
	letter-spacing: 0.65px;
	text-transform: uppercase;
	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;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 8px 15px;
	border-radius: 100px;
	border: 1px solid var(--green-1);
}

.tag_white {
	color: var(--white-1);
	border-color: var(--white-1);
}

.social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.social__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-width: 60px;
	width: 60px;
	height: 60px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid var(--white-1);
	border-radius: 50%;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	cursor: pointer;
}

.social__link svg {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.social__link svg path {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

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

.social__link:hover svg path[fill="#777E64"] {
	fill: var(--white-1);
}

.social__link:hover svg path[fill="#FEF9EE"] {
	fill: var(--green-2);
}

.header {
	position: absolute;
	top: 55px;
	left: 0;
	width: 100%;
}

.header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header__logo-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 8px 12px;
	border-radius: 100px;
	border: 1px solid var(--green-1);
}

.header__panel {
	border: 1px solid var(--green-1);
	border-radius: 100px;
}

.header__menu-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 12px;
	border-radius: 50%;
	border: 1px solid var(--green-1);
	cursor: pointer;
	display: none;
	background-color: var(--gray-1);
	z-index: 10;
}

.header .nav__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header .nav__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 12px 20px;
	border-radius: 100px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header .nav__link:hover {
	background-color: rgba(168, 173, 155, 0.5);
}

.header .nav__link:active {
	color: var(--white-1);
	background-color: var(--green-2);
}

.entrance {
	padding: 220px 0 360px;
}

.entrance__wrapper {
	position: relative;
}

.entrance__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 15px;
	margin-left: 125px;
	margin-bottom: 30px;
}

.entrance__title span {
	white-space: nowrap;
}

.entrance__title span:last-child {
	margin-left: 175px;
}

.entrance__body {
	width: 100%;
	max-width: 510px;
	margin-left: 50%;
}

.entrance__btn {
	margin-top: 50px;
}

.entrance__img {
	width: 500px;
	height: 665px;
	position: absolute;
	bottom: -205px;
	left: -180px;
}

.entrance__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.statistic__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
}

.statistic__title {
	margin-bottom: 30px;
}

.statistic__btn {
	margin-top: 50px;
}

.statistic__tag {
	margin-bottom: 50px;
}

.statistic__body {
	width: 100%;
	max-width: 555px;
}

.statistic__slide {
	padding: 40px;
	border-radius: 20px;
	background-color: var(--green-2);
	color: var(--white-1);
	width: 380px;
	-webkit-box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
}

.statistic__desc {
	margin-top: 10px;
}

.statistic__num {
	font-family: "MTS Wide";
	font-size: 80px;
	line-height: 120%;
	text-transform: uppercase;
}

.statistic__slider {
	overflow: visible;
	overflow-x: clip;
	width: 100%;
	margin-right: -20px;
}

.statistic__pagination {
	margin-bottom: 50px;
}

.manifest__body {
	width: 100%;
	max-width: 650px;
	margin: 0 auto;
	border-radius: 20px;
	background-color: var(--white-1);
	-webkit-box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	padding: 70px;
}

.manifest__tag {
	margin: 0 auto;
	margin-bottom: 50px;
}

.manifest__title {
	text-align: center;
	margin-bottom: 30px;
}

.manifest__content {
	text-align: justify;
}

.fund {
	margin-bottom: 180px;
	border-radius: 0px 0px 180px 180px;
	position: relative;
	z-index: 1;
}

.fund__bg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	width: 100%;
	height: auto;
	bottom: 0px;
	left: 0;
	z-index: -1;
	border-radius: 0px 0px 180px 180px;
	overflow: hidden;
	pointer-events: none;
}

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

.fund__heading {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}

.fund__tag {
	margin: 0 auto;
	margin-bottom: 50px;
}

.fund__title {
	text-align: center;
	margin-bottom: 30px;
}

.fund__list {
	margin-top: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.fund__card {
	border-radius: 20px;
	background: var(--white-1);
	-webkit-box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	padding: 20px 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 440px;
	width: 100%;
}

.fund__img {
	margin: 0 -10px;
	margin-bottom: 20px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	width: calc(100% + 20px);
	height: 260px;
}

.fund__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.fund__logo {
	position: absolute;
	width: 60px;
	height: 60px;
	top: 10px;
	left: 10px;
}

.fund__logo img {
	-o-object-fit: contain;
	object-fit: contain;
}

.fund__name {
	margin-bottom: 25px;
}

.fund__desc {
	margin-bottom: 40px;
}

.fund__btn {
	margin-top: auto;
}

.analitics__heading {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	margin-bottom: 60px;
	text-align: center;
}

.analitics__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
}

.analitics__tag {
	margin: 0 auto;
	margin-bottom: 50px;
}

.analitics__title {
	margin-bottom: 30px;
}

.analitics__desc {
	padding: 40px 60px;
	-webkit-box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	border-radius: 20px;
	background-color: var(--green-2);
	color: var(--white-1);
	width: 100%;
	max-width: 640px;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

.analitics__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	width: 100%;
	max-width: 670px;
}

.analitics__item {
	padding: 30px;
	border-radius: 20px;
	background: var(--white-1);
	-webkit-box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
}

.analitics__item_wide {
	grid-column: span 2;
}

.analitics__item-desc {
	margin-top: 15px;
}

.analitics__item-subtitle {
	margin-top: 4px;
}

.accordion {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	color: var(--brown-1);
}

.accordion__item {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 20px;
	background: var(--white-1);
	-webkit-box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	padding: 30px 40px;
}

.accordion__item_open .accordion__body {
	margin-top: 20px;
}

.accordion__item_open .accordion__btn::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.accordion__body {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	overflow: hidden;
}

.accordion__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	cursor: pointer;
	position: relative;
}

.accordion__btn::after {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	content: "";
	min-width: 32px;
	width: 32px;
	height: 32px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	-webkit-mask-image: url(../img/icons/accordion-caret.svg);
	mask-image: url(../img/icons/accordion-caret.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	background-color: var(--green-2);
}

.accordion__btn::before {
	display: block;
	content: "";
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #a8ad9b80;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	opacity: 0;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.accordion__btn:hover::before {
	opacity: 1;
}

.accordion_green {
	color: var(--white-1);
}

.accordion_green .accordion__item {
	background-color: var(--green-2);
}

.accordion_green .accordion__btn::after {
	background-color: var(--white-1);
}

.myth__tag {
	margin-bottom: 50px;
}

.myth__title {
	margin-bottom: 30px;
	width: 100%;
}

.myth__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.myth__body {
	width: 100%;
	max-width: 555px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.myth__content {
	margin-bottom: 30px;
}

.myth__img {
	margin-top: 140px;
	height: 380px;
	width: 830px;
}

.myth__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center right;
	object-position: center right;
}

.myth__accordion {
	width: 100%;
	max-width: 670px;
}

.slider-pagination_bullets {
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 6px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.slider-pagination_bullets .swiper-pagination-bullet {
	margin: 0 !important;
	opacity: 0.3;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	width: 10px;
	height: 10px;
	background-color: var(--green-1);
}

.slider-pagination_bullets .swiper-pagination-bullet-active {
	opacity: 1;
}

.phrase__tag {
	margin-bottom: 50px;
}

.phrase__heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 60px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
}

.phrase__title {
	max-width: 555px;
}

.phrase__content {
	max-width: 670px;
}

.phrase__slider {
	color: var(--white-1);
	overflow: visible;
	overflow-x: clip;
}

.phrase__slide-tag {
	margin-bottom: 50px;
	text-transform: none;
	line-height: 100%;
	padding-top: 5px;
}

.phrase__slide-title {
	margin-bottom: auto;
	font-family: "MTS Wide";
	text-align: center;
}

.phrase__btn {
	margin-top: auto;
}

.phrase__slide-front {
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border-radius: 20px;
	background: var(--green-2);
	-webkit-box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	padding: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.phrase__slide-back {
	overflow: hidden;
	position: relative;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border-radius: 20px;
	background: var(--green-2);
	-webkit-box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	padding: 30px 40px;
}

.phrase__slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: auto;
	min-height: 300px;
}

.phrase__slide_flip .phrase__slide-front {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.phrase__slide_flip .phrase__slide-back {
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}

.tab {
	position: relative;
}

.tab__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 20px;
	position: absolute;
	top: 30px;
	left: 0;
	padding: 0 30px;
}

.tab__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	cursor: pointer;
	padding: 10px 20px;
	border-radius: 100px;
	border: 1px solid var(--green-2);
	color: var(--green-2);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	font-family: "MTS Wide";
}

.tab__link:hover {
	background: rgba(168, 173, 155, 0.5);
}

.tab__link_active {
	background-color: var(--green-2);
	color: var(--white-1);
	cursor: default;
}

.tab__link_active:hover {
	background-color: var(--green-2);
}

.tab__item {
	display: none;
}

.tab__item_active {
	display: block;
}

.advice {
	position: relative;
}

.advice__tag {
	margin-bottom: 50px;
}

.advice__title {
	margin-bottom: 30px;
}

.advice__body {
	width: 100%;
	max-width: 500px;
}

.advice__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
}

.advice__tab {
	width: 100%;
	max-width: 670px;
}

.advice__tab-desc {
	padding: 30px;
	padding-top: 100px;
	background-color: var(--white-1);
	-webkit-box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	border-radius: 20px;
	margin-bottom: 20px;
}

.advice__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: auto;
	position: absolute;
	z-index: -1;
	top: 240px;
	left: 0;
}

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

.example {
	position: relative;
	z-index: 1;
	margin-top: 130px;
	padding-top: 120px;
	border-radius: 180px 180px 0px 0px;
}

.example__wrapper {
	max-width: 800px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

.example__tag {
	margin-bottom: 50px;
}

.example__desc {
	margin-bottom: 50px;
	max-width: 640px;
	text-align: center;
}

.example__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	bottom: 0;
	left: calc(100% + 60px);
	width: calc((100vw - 800px - 120px - 50px) / 2);
}

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

.footer {
	padding-bottom: 60px;
	background-color: var(--green-2);
	color: var(--white-1);
}

.footer .nav__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.footer .nav__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 12px 20px;
	border-radius: 100px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.footer .nav__link:hover {
	background-color: rgba(168, 173, 155, 0.5);
}

.footer .nav__link:active {
	color: var(--white-1);
	background-color: var(--green-2);
}

.read-more__text {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	min-height: 400px;
	max-height: 400px;
	overflow: hidden;
}

.read-more_open .read-more__caret {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.read-more_open .read-more__btn:hover .read-more__caret {
	-webkit-transform: rotate(-90deg) translateX(10px);
	transform: rotate(-90deg) translateX(10px);
}

.story__tag {
	margin-bottom: 50px;
}

.story__title {
	margin-bottom: 30px;
}

.story__body {
	width: 100%;
	max-width: 555px;
}

.story__desc {
	max-width: 500px;
}

.story__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.story__slider {
	overflow: visible;
	overflow-x: clip;
	width: 670px;
	margin-right: -20px;
	padding-right: 20px;
}

.story__slide {
	border-radius: 20px;
	background: var(--white-1);
	-webkit-box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	box-shadow: 0px 10px 20px 0px rgba(26, 26, 26, 0.08);
	color: var(--brown-1);
	padding: 40px;
	width: 670px;
	opacity: 0.3;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

.story__slide.swiper-slide-active {
	opacity: 1;
}

.story__slide-title {
	margin: 0 auto;
	margin-bottom: 20px;
	max-width: 400px;
	text-align: center;
}

.story__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 40px;
	min-height: 26px;
}

.story__pagination {
	padding: 0 30px;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.story__content {
	margin-bottom: auto;
}

.help__tag {
	margin: 0 auto;
	margin-bottom: 50px;
}

.help__title {
	margin-bottom: 30px;
}

.help__heading {
	margin: 0 auto;
	margin-bottom: 65px;
	max-width: 640px;
	text-align: center;
}

.help__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 50px;
}

.help__card {
	border-radius: 20px;
	border: 1px solid var(--white-1);
	padding: 30px;
	width: 100%;
	max-width: 440px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.help__card-logo {
	min-width: 60px;
	width: 60px;
	height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.help__card-logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.help__card-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 25px;
	margin-bottom: 30px;
}

.help__contact {
	margin-bottom: 30px;
	max-width: 280px;
}

.help__btn {
	margin-top: auto;
}

.help__link {
	margin-bottom: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.help__link_underline {
	text-decoration: underline;
	margin: 0;
	line-height: 100%;
}

.help__wrapper {
	position: relative;
	padding-bottom: 20px;
	z-index: 1;
	max-width: 930px;
	margin: 0 auto;
}

.help__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	z-index: -1;
	bottom: 0;
	right: calc(100% - 20px);
	width: calc((100vw - 930px) / 2);
	height: auto;
}

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

.about__tag {
	margin-bottom: 50px;
}

.about__title {
	margin-bottom: 50px;
}

.about__body {
	width: 100%;
	max-width: 555px;
}

.about__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 30px;
}

.about__content {
	width: 100%;
	max-width: 670px;
}

.about__img {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
	border-radius: 20px;
	overflow: hidden;
	background-color: var(--white-1);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.about__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

@-webkit-keyframes roundText {
	0% {
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		-webkit-transform: translate(-50%, -50%) rotate(-360deg);
		transform: translate(-50%, -50%) rotate(-360deg);
	}
}

@keyframes roundText {
	0% {
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		-webkit-transform: translate(-50%, -50%) rotate(-360deg);
		transform: translate(-50%, -50%) rotate(-360deg);
	}
}

.share__wrapper {
	padding: 175px 0;
	max-width: 490px;
	margin: 0 auto;
	position: relative;
}

.share__tag {
	margin: 0 auto;
	margin-bottom: 50px;
}

.share__content {
	margin-bottom: 60px;
	text-align: center;
}

.share__social {
	margin: 0 auto;
}

.share__title {
	margin-bottom: 20px;
	display: none;
}

.share__round-text {
	width: 785px;
	height: 785px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-animation: roundText 20s infinite linear;
	animation: roundText 20s infinite linear;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	pointer-events: none;
}

.share__round-text img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.popup {
	display: none;
	padding: 0;
}

.popup_content {
	max-width: 1000px;
	padding: 60px;
}

.popup iframe {
	max-width: 100%;
}

@media screen and (min-width: 1400px) {
	.statistic__slider {
		width: calc(50% + (100vw - 1360px) / 2);
		margin-right: calc((100vw - 1360px) / -2);
	}

	.statistic__pagination {
		margin-left: auto;
		margin-right: calc((100vw - 1360px) / 2);
	}

	.story__slider {
		width: calc(50% + (100vw - 1360px) / 2);
		margin-right: calc((100vw - 1360px) / -2);
		padding-right: calc((100vw - 1360px) / 2);
	}
}

@media screen and (max-width: 1700px) {
	.entrance__title {
		margin-left: 100px;
	}

	.entrance__img {
		left: -20px;
		width: 400px;
	}

	.advice__img {
		top: 280px;
	}
}

@media screen and (max-width: 1500px) {
	.fund__bg {
		left: -40px;
		width: calc(100% + 40px);
	}

	.example {
		margin-top: 0;
	}

	.example__img {
		width: 305px;
		height: auto;
		position: static;
		margin-top: -20px;
		margin-left: auto;
		margin-right: 25px;
	}

	.help__img {
		position: static;
		width: 250px;
		margin: 0 auto;
		margin-top: -10px;
	}
}

@media screen and (max-width: 1300px) {
	.entrance__title {
		margin-left: 0;
	}

	.entrance__img {
		width: 300px;
		bottom: -270px;
		left: 100px;
	}

	.story__slide {
		width: 100%;
	}
}

@media screen and (max-width: 1200px) {
	.entrance__title span {
		margin: 0 !important;
	}

	.analitics__list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.myth__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.myth__body {
		max-width: none;
	}

	.myth__accordion {
		max-width: none;
	}

	.myth__img {
		width: 650px;
		height: 300px;
		margin-top: 40px;
	}

	.phrase__slider {
		overflow: visible;
	}

	.advice {
		padding-bottom: 0;
		margin-bottom: -180px;
	}

	.advice__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.advice__body {
		max-width: none;
	}

	.advice__tab {
		max-width: none;
	}

	.advice__img {
		position: static;
		margin: 0 -20px;
		margin-top: 30px;
		width: calc(100% + 40px);
	}

	.story__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.story__body {
		max-width: none;
	}

	.story__desc {
		max-width: none;
	}

	.story__slider {
		padding: 0;
		margin: 0;
		width: 100%;
		overflow: visible;
	}

	.story__pagination {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media screen and (max-width: 1024px) {
	.section {
		padding-bottom: 80px;
	}

	.header {
		top: 30px;
	}

	.header__menu-btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		position: fixed;
		right: 20px;
		bottom: 20px;
	}

	.header__panel {
		position: fixed;
		z-index: 20;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-transition: all ease 0.5s;
		transition: all ease 0.5s;
		pointer-events: none;
		border: none;
		border-radius: 0;
	}

	.header .nav {
		padding: 40px 20px;
		border-radius: 20px 20px 0px 0px;
		background-color: var(--green-2);
		color: var(--white-1);
		margin-top: auto;
		pointer-events: all;
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
		-webkit-transition: all ease 0.5s;
		transition: all ease 0.5s;
		font-size: 17px;
		line-height: 120%;
	}

	.header .nav__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.header .nav__link {
		padding: 10px 20px;
	}

	.header-open .header__panel {
		background: rgba(34, 34, 34, 0.8);
	}

	.header-open .header .nav {
		-webkit-transform: none;
		transform: none;
	}

	.entrance {
		padding: 100px 0 80px;
	}

	.entrance__title {
		display: block;
	}

	.entrance__title span {
		white-space: unset;
	}

	.entrance__body {
		margin: 0;
	}

	.entrance__img {
		position: static;
		height: auto;
		margin: 0 auto;
		margin-top: 30px;
	}

	.entrance__btn {
		margin-top: 30px;
	}

	.statistic__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		gap: 65px;
	}

	.statistic__slider {
		width: 100%;
		margin: 0;
		overflow: visible;
	}

	.statistic__pagination {
		margin-bottom: 30px;
	}

	.statistic__tag {
		margin-bottom: 30px;
	}

	.statistic__title {
		margin-bottom: 20px;
	}

	.statistic__btn {
		margin-top: 20px;
	}

	.statistic__body {
		max-width: none;
	}

	.fund {
		border-radius: 0px 0px 60px 60px;
		margin-bottom: 80px;
	}

	.fund__bg {
		display: none;
	}

	.fund__list {
		gap: 30px;
	}

	.fund__card {
		padding: 15px;
	}

	.fund__img {
		margin: 0;
		margin-bottom: 15px;
		width: 100%;
	}

	.fund__name {
		margin-bottom: 20px;
	}

	.fund__desc {
		margin-bottom: 30px;
	}

	.analitics__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 20px;
	}

	.analitics__desc {
		max-width: none;
		padding: 40px 30px;
	}

	.analitics__list {
		max-width: none;
	}

	.phrase__heading {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.phrase__title {
		max-width: none;
	}

	.phrase__content {
		max-width: none;
	}

	.example {
		border-radius: 60px 60px 0px 0px;
		padding-top: 80px;
	}

	.about__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.about__content {
		max-width: none;
	}
}

@media screen and (max-width: 768px) {
	.manifest__body {
		padding: 40px 20px;
	}

	.manifest__tag {
		margin-bottom: 30px;
	}

	.manifest__title {
		margin-bottom: 20px;
	}

	.fund__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-top: 50px;
	}

	.fund__card {
		max-width: none;
	}

	.fund__title {
		margin-bottom: 20px;
		text-align: left;
	}

	.fund__tag {
		margin: 0;
		margin-bottom: 40px;
	}

	.fund__heading {
		max-width: none;
	}

	.analitics__tag {
		margin-bottom: 40px;
	}

	.analitics__title {
		margin-bottom: 20px;
	}

	.analitics__heading {
		margin-bottom: 50px;
	}

	.analitics__item-subtitle {
		margin-bottom: 15px;
	}

	.analitics__item-desc {
		margin-top: 10px;
	}

	.myth__tag {
		margin-bottom: 40px;
	}

	.phrase__tag {
		margin-bottom: 40px;
	}

	.phrase__heading {
		margin-bottom: 50px;
	}

	.advice__tag {
		margin-bottom: 40px;
	}

	.advice__title {
		margin-bottom: 20px;
	}

	.example__tag {
		margin-bottom: 40px;
	}

	.story__tag {
		margin-bottom: 40px;
	}

	.story__title {
		margin-bottom: 20px;
	}

	.story__slide {
		padding: 30px 20px;
	}

	.story__bottom {
		margin-top: 30px;
	}

	.help__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 20px;
	}

	.help__btn {
		margin-top: 20px;
	}

	.help__contact {
		margin-bottom: 20px;
	}

	.help__tag {
		margin-bottom: 40px;
	}

	.help__title {
		margin-bottom: 20px;
	}

	.about__body {
		max-width: none;
	}

	.about__tag {
		margin-bottom: 40px;
	}

	.about__title {
		margin-bottom: 20px;
	}

	.share__tag {
		margin: 0;
		margin-bottom: 40px;
	}

	.share__round-text {
		display: none;
	}

	.share__wrapper {
		padding: 0;
		max-width: none;
	}

	.share__content {
		text-align: left;
	}

	.share__title {
		display: block;
	}

	.tab__header {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.advice__tab-desc {
		padding-top: 170px;
	}
}

@media screen and (max-width: 570px) {
	.popup_content {
		padding: 20px;
	}

	.statistic__slide {
		width: 100%;
		padding: 40px 30px;
	}

	.statistic__num {
		font-size: 60px;
		line-height: 100%;
	}

	.accordion__item {
		padding: 30px 20px;
	}

	.phrase__slide-front {
		padding: 20px;
	}

	.phrase__slide-back {
		padding: 20px;
	}

	.phrase__slide-tag {
		margin-bottom: 65px;
	}

	.tab__header {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 10px;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.advice {
		margin-bottom: -60px;
		padding-bottom: 0;
	}

	.footer {
		padding-bottom: 30px;
	}

	.footer .nav__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}