.mp-pitch {
	width: 100%;
	background-color: #f5f7fb;
	padding: 15px 10px 37px;
	box-sizing: border-box;
	margin-top: 84px;
}

.mp-pitch * {
	margin: 0;
	padding: 0;
}

.mp-pitch-card {
	background:
		linear-gradient(135deg, #188a9b 0%, #235788 100%);

	border-radius: 25px;
	position: relative;
	overflow: hidden;
	max-width: 1200px;
	margin: 0px auto;
}


.mp-pitch-wave {
	position: absolute;
	left: 0;
	bottom: -20px;
	width: 100%;
	height: auto;
	pointer-events: none;

	z-index: 1;

}

.mp-pitch-wave img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: bottom center;
}

.mp-pitch-container {
	display: flex;
	min-height: 520px;
}


.mp-pitch-content {
	flex: 1;
	padding: 50px 0px 50px 40px;
	color: #ffffff;
	z-index: 2;
	position: relative;
}

.mp-pitch-title {
	font-family: "Manrope", sans-serif;
	font-weight: 700;
	font-size: 48px;

	line-height: 50px;
	letter-spacing: -2.7px;
}

#mp-pitch-title-shift {
	position: relative;
	top: -5px;
}

.mp-pitch-badge {
	padding: 0px 5px 6px 1px;
	border-radius: 5px;
	display: inline-block;
}
.mp-pitch-badge-ya {
	background-color: #ff3f0a;
	color: #ffde00;
}
.mp-pitch-badge-ozon {
	background: linear-gradient(45deg, #0A06E8 0%, #FD3C84 100%);
	color: #ffffff;
}
.mp-pitch-badge-wb {
	background: linear-gradient(45deg, #8C0FFD 0%, #FF00D0 100%);
	color: #ffffff;
}

.mp-pitch-subtitle {
	font-family: "Manrope", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	max-width: 470px;
	margin-top: 16px;
	margin-bottom: 39px;
}

.mp-pitch-expert-ya {
	background-image: url("/img/mp-pitch-expert-photo-ya.png");
}
.mp-pitch-expert-ozon {
	background-image: url("/img/mp-pitch-expert-photo-ozon.png");
}
.mp-pitch-expert-wb {
	background-image: url("/img/mp-pitch-expert-photo-wb.png");
}

.mp-pitch-expert-desktop {
	position: relative;
	flex: 1;
	border-radius: 18px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	margin: 6px;
}


.mp-pitch-expert-mobile {
	display: none;
}


.mp-pitch-expert-label {
	position: absolute;
	bottom: 17px;

	left: 18px;
	display: flex;
	flex-direction: column;
	min-width: 220px;
	z-index: 5;
}

.mp-pitch-expert-name {
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 14px;
	color: #ffffff;
	margin-bottom: 7px;
}

.mp-pitch-expert-role {
	font-family: "Manrope", sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 12px;
	color: #ffffff;
	opacity: 0.8;
}


.mp-pitch-actions {
	display: flex;
	gap: 10px;
	margin-bottom: 62px;
	position: relative;
	left: -6px;
}

.mp-pitch-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 30px;
	border-radius: 30px;
	font-family: "Manrope", sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 21.7px;
	text-decoration: none;
	box-sizing: border-box;
	transition:
		background-color 0.3s ease,
		transform 0.1s ease;

}

.mp-pitch-btn:active {
	transform: scale(0.98);
}

.mp-pitch-btn--primary {
	width: 243px;
	height: 52px;
	background-color: #ff6b32;
	color: #ffffff;
}

.mp-pitch-btn--primary:hover {
	background-color: #d55b2b;
}

.mp-pitch-btn--secondary {
	width: 204px;
	height: 52px;
	background-color: #ffffff;
	color: #ff6b32;
}

.mp-pitch-btn--secondary:hover {
	background-color: #eaeaea;
}


.mp-pitch-features {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	position: relative;
	left: -6px;
}

.mp-pitch-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	font-size: 12px;
	line-height: 13px;
	color: #2f2f2f;
	background-color: #ffffff;
	border-radius: 10px;
	width: 194px;
	height: 43px;
	box-sizing: border-box;
}

.mp-pitch-feature img {
	width: 31px;
	height: 31px;
	margin-left: 6px;
}

@media (max-width: 978px) {
	.mp-pitch {
		margin-top: 38px;
	}
}

@media (max-width: 900px) {

	.mp-pitch-container {
		flex-direction: column;
		min-height: auto;
	}

	.mp-pitch-content {
		flex: 1 1 auto;
		padding: 40px 20px;
		text-align: center;

		justify-content: center;
	}

	.mp-pitch-subtitle {
		width: 90%;
		max-width: none;
		margin: 10px auto 24px;
	}


	.mp-pitch-expert-desktop {
		display: none;
	}

	.mp-pitch-expert-mobile {
		position: relative;
		display: block;
		width: 100%;
		min-height: 480px;
		border-radius: 18px;
		background-repeat: no-repeat;
		background-size: cover;

		background-position: center top;
		margin: 10px auto 0;
		box-sizing: border-box;
	}

	.mp-pitch-expert-label {
		left: 28px;

		transform: none;


		bottom: 17px;

	}

	.mp-pitch-expert-name {
		font-size: 16px;
		line-height: 16px;
	}


	.mp-pitch-actions {
		align-items: center;
		width: 100%;
		position: static;
		left: auto;
		margin-bottom: 19px;

		flex-direction: row;

		justify-content: center;

		flex-wrap: nowrap;
	}


	.mp-pitch-btn {
		width: 243px;
	}

	.mp-pitch-feature {
		width: 249px;
		height: 54px;
		text-align: left;
		font-size: 14px;
		line-height: 15px;
		gap: 13px;
	}

	.mp-pitch-features {
		position: static;
		left: auto;
		gap: 10px;

		flex-direction: row;

		justify-content: center;

		flex-wrap: nowrap;
	}

	.mp-pitch-feature img {
		width: 39px;
		height: 39px;
	}
}

@media (max-width: 600px) {

	.mp-pitch-container {
		flex-direction: column;
		min-height: auto;
	}

	.mp-pitch-content {
		flex: 1 1 auto;
		padding: 52px 5px 39px;
		text-align: center;
	}

	.mp-pitch-expert-mobile {
		min-height: 383px;
	}

	.mp-pitch-title {
		font-size: 31px;
		line-height: 33px;
	}


	.mp-pitch-actions {
		flex-direction: column;
		width: 100%;
	}


	.mp-pitch-features {
		flex-direction: column;
		align-items: center;
	}
}


.mp-mis-section {
	width: 100%;
	background-color: #F5F7FB;
	display: flex;
	justify-content: center;
	align-items: flex-start;

	min-height: 615px;
	padding: 40px 10px;

	box-sizing: border-box;
}

.mp-mis-section * {
	font-family: 'Manrope', sans-serif;
	margin: 0;
	padding: 0;
}

.mp-mis-wrapper {
	width: 100%;
	max-width: 1200px;

	display: flex;
	flex-direction: column;
	align-items: center;
}


.mp-mis-title {
	font-size: 42px;
	font-weight: 800;

	line-height: 42px;
	letter-spacing: -2px;
	color: #2F2F2F;
	text-align: center;
	max-width: 672px;
	margin-bottom: 22px;

}


.mp-mis-subtitle {
	font-size: 14px;
	font-weight: 500;

	line-height: 20px;
	letter-spacing: 0%;
	color: #2F2F2F;
	text-align: center;
	max-width: 498px;
	margin-bottom: 32px;

}


.mp-mis-cards-container {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 12px;

}


.mp-mis-card {
	width: 594px;
	min-height: 317px;
	background-color: #FFFFFF;
	border-radius: 25px;
	padding: 26px;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	box-sizing: border-box;
}


.mp-mis-card-top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 30px;
	flex-grow: 1;
}


.mp-mis-card-text {
	display: flex;
	flex-direction: column;
	gap: 20px;

}


.mp-mis-card-title {
	font-size: 25px;
	font-weight: 600;

	line-height: 25px;
	letter-spacing: -1px;
	color: #2F2F2F;
}


.mp-mis-card-descr {
	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
	color: rgba(47, 47, 47, 0.8);

}


.mp-mis-card-img {
	width: 114px;
	height: 116px;
	border-radius: 12px;
	object-fit: cover;
	flex-shrink: 0;

}


.mp-mis-card-badge {
	width: 100%;
	height: 112px;
	background-color: #F3E7F5;
	border-radius: 15px;
	padding: 34px 22px;

	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
	color: rgba(47, 47, 47, 0.8);
	box-sizing: border-box;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}


@media (max-width: 768px) {
	.mp-mis-section {
		padding: 40px 12px;
	}


	.mp-mis-title {
		font-size: 30px;
		font-weight: 800;
		line-height: 32px;
		letter-spacing: -2px;
		color: #2F2F2F;

		margin-bottom: 18px;
	}


	.mp-mis-subtitle {
		font-size: 14px;
		font-weight: 500;
		line-height: 20px;
		letter-spacing: 0%;
		color: #2F2F2F;

		margin-bottom: 27px;
	}


	.mp-mis-cards-container {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.mp-mis-card {
		width: 100%;


		min-height: auto;
		padding: 28px 34px;
	}

	.mp-mis-card-top {
		gap: 12px;
		margin-bottom: 16px;
	}

	.mp-mis-card-text {
		gap: 12px;

	}

	.mp-mis-card-title {
		font-size: 22px;
		line-height: 22px;
	}

	.mp-mis-card-descr {
		font-size: 14px;
		line-height: 20px;
	}

	.mp-mis-card-img {
		width: 80px;

		height: 82px;
	}

	.mp-mis-card-badge {
		padding: 25px 25px 33px;

		font-size: 14px;
		line-height: 20px;
		height: auto;

	}
}






.mp-prof-section {
	background-color: #F5F7FB;
	padding: 5px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Manrope', sans-serif;
	box-sizing: border-box;
}

.mp-prof-section * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}


.mp-prof-panel {
	position: relative;

	width: 100%;
	max-width: 1200px;
	min-height: 779px;
	background: linear-gradient(45deg, #493379 0%, #7E5ECA 100%);
	border-radius: 25px;
	padding: 65px 25px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	overflow: hidden;

}


.mp-prof-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 690px;

	z-index: 2;

	margin-bottom: 40px;

}


.mp-prof-title {
	font-weight: 700;
	font-size: 42px;
	line-height: 42px;
	letter-spacing: -2px;
	color: #FFFFFF;
	margin-bottom: 23px;
}


.mp-prof-subtitle {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
	max-width: 500px;

}


.mp-prof-wave {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: auto;
	pointer-events: none;

	z-index: 1;
}


.mp-prof-cards-container {
	display: flex;
	gap: 12px;
	justify-content: center;
	align-items: stretch;

	width: 100%;
	z-index: 2;

}


.mp-prof-item-card {
	width: 284px;
	min-height: 432px;
	background: #FFFFFF;
	border-radius: 25px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 5px;

}


.mp-prof-item-img {

	width: calc(100% - 10px);

	height: auto;
	aspect-ratio: 274 / 233;
	border-radius: 18px;
	object-fit: contain;
}


.mp-prof-item-content {
	display: flex;
	flex-direction: column;
	padding: 20px 20px;
	width: 100%;
	text-align: left;
}


.mp-prof-item-title {
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	letter-spacing: -0.5px;
	color: #2F2F2F;
	margin-bottom: 5px;
}


.mp-prof-item-desc {
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: rgba(47, 47, 47, 0.8);

}


@media (max-width: 768px) {

	.mp-prof-panel {
		min-height: auto;

		padding: 40px 20px;
		border-radius: 25px;
	}

	.mp-prof-wave {
		width: 200%;
		bottom: 0;
	}

	.mp-prof-header {
		max-width: 100%;
		margin-bottom: 28px;
	}

	.mp-prof-title {
		font-size: 30px;
		line-height: 30px;
		letter-spacing: -2px;
		margin-bottom: 10px;
		margin-top: 7px;
	}

	.mp-prof-subtitle {
		font-size: 14px;
		line-height: 20px;
		max-width: 100%;
	}

	.mp-prof-cards-container {
		flex-direction: column;
		align-items: center;
		gap: 11px;

		margin-bottom: 17px;
	}

	.mp-prof-item-card {
		width: 100%;
		max-width: 325px;

		height: auto;

	}


}






.mp-circle-section {
	display: flex;
	justify-content: center;
	background-color: #F5F7FB;
	padding: 65px 20px;
	width: 100%;
	box-sizing: border-box;
}

.mp-circle-section * {
	margin: 0;
	padding: 0;
}

.mp-circle-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1200px;
}


.mp-circle-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 42px;
	line-height: 42px;
	text-align: center;
	letter-spacing: -2px;
	color: #2F2F2F;
	margin-bottom: 40px;
	padding: 0;
}


.mp-circle-grid {
	display: flex;
	flex-wrap: wrap;

	justify-content: center;

	row-gap: 33px;
	column-gap: 42px;

	width: 100%;
}


.mp-circle-card {
	box-sizing: border-box;
	width: 372px;
	height: 258px;
	background-color: #FFFFFF;
	border-radius: 25px;
	padding: 32px 27px 27px;

	position: relative;


	background-image: url('/img/mp-circle-check.png');
	background-repeat: no-repeat;
	background-position: right 21px top 20px;
	background-size: 91px 91px;
}


.mp-circle-card--pink {
	background-color: #F3E7F5;
}


.mp-circle-card-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 25px;
	line-height: 25px;
	letter-spacing: -1px;
	color: #2F2F2F;
	margin-bottom: 20px;
	padding: 0;
}


.mp-circle-card-text {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	color: rgba(47, 47, 47, 0.8);

	margin: 0;
	padding: 0;
}


@media (max-width: 768px) {
	.mp-circle-section {
		padding: 50px 16px;

	}

	.mp-circle-title {
		font-size: 30px;
		line-height: 30px;
		letter-spacing: -2px;
		margin-bottom: 30px;
	}

	.mp-circle-grid {
		flex-direction: column;
		align-items: center;
		gap: 13px;

	}

	.mp-circle-card {
		width: 100%;

		max-width: 376px;

		height: auto;

		min-height: 227px;

		padding: 32px 30px;
	}


	.mp-circle-card-title {

		font-size: 23px;
		line-height: 23px;
		margin-bottom: 23px;
	}


	.mp-circle-card-text {
		font-size: 16px;
		line-height: 22px;
	}
}






.mp-work-section {
	display: flex;
	justify-content: center;
	width: 100%;
	background-color: #F5F7FB;

	padding: 5px 0 25px 0;

	box-sizing: border-box;
	overflow: hidden;
}

.mp-work-section * {
	margin: 0;
	padding: 0;
}

.mp-work-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	background-color: #FFFFFF;
	border-radius: 25px;

	padding: 65px 20px 25px;

	box-sizing: border-box;
	margin: 0 auto;

}


.mp-work-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 513px;

	width: 100%;
	margin-bottom: 28px;

}


.mp-work-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;

	font-size: 42px;
	line-height: 42px;

	letter-spacing: -2px;

	color: #2F2F2F;

	margin-bottom: 25px;

}


.mp-work-subtitle {
	font-family: 'Manrope', sans-serif;
	font-weight: 400;

	font-size: 14px;
	line-height: 20px;

	color: #2F2F2F;

}


.mp-work-grid {
	display: flex;
	flex-wrap: wrap;

	justify-content: center;
	gap: 21px;

	width: 100%;
	margin-bottom: 23px;

}


.mp-work-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;


	flex: 0 0 270px;
	width: 270px;

	min-height: 235px;


	background-color: #F5F7FB;
	border-radius: 15px;
	padding: 20px;
	box-sizing: border-box;
}


.mp-work-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 23px;
	background: linear-gradient(45deg, #493379 0%, #7E5ECA 100%);

	border-radius: 30px;

	font-family: 'Manrope', sans-serif;
	font-weight: 600;

	font-size: 11px;
	line-height: 13.2px;
	color: #FFFFFF;
	margin-bottom: 41px;

}


.mp-work-card-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;

	font-size: 20px;
	line-height: 24px;
	letter-spacing: -0.5px;
	color: #2F2F2F;
	margin-bottom: 14px;

}


.mp-work-card-text {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;

	font-size: 14px;
	line-height: 18px;
	color: rgba(47, 47, 47, 0.8);

	margin: 0;
}


.mp-work-banner {
	position: relative;
	display: flex;
	width: 100%;
	max-width: 1140px;

	min-height: 270px;

	background: linear-gradient(90deg, #188A9B 0%, #23578B 100%);

	border-radius: 18px;

	padding: 25px 21px 20px 21px;

	box-sizing: border-box;
	overflow: visible;

}


.mp-work-banner-wave {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 610px;
	height: auto;
	pointer-events: none;

	z-index: 1;
}


.mp-work-banner-shield {
	position: absolute;
	right: -65px;

	top: calc(50% + 15px);
	transform: translateY(-50%);

	width: 280px;

	height: auto;
	pointer-events: none;
	z-index: 2;
}


.mp-work-banner-content {
	position: relative;
	display: flex;
	flex-direction: column;

	width: 100%;
	z-index: 3;

}


.mp-work-banner-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;

	font-size: 36px;
	line-height: 36px;

	letter-spacing: -1px;

	color: #FFFFFF;
	margin-bottom: 23px;

}


.mp-work-banner-text {
	font-family: 'Manrope', sans-serif;
	font-weight: 400;

	font-size: 16px;
	line-height: 22px;

	color: #FFFFFF;
	margin: 0 0 28px 4px;

	max-width: 640px;
}


.mp-work-banner-note {
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 25px;
	color: #FFFFFF;
	margin-left: 4px;
	max-width: 740px;
}


@media (max-width: 1200px) {
	.mp-work-section {
		padding: 40px 16px;

	}

	.mp-work-container {
		margin: 0;
		padding: 40px 16px;
	}

	.mp-work-title {
		font-size: 32px;

		line-height: 36px;
	}
}

@media (max-width: 1000px) {
	.mp-work-banner-shield {
		display: none;

	}

	.mp-work-banner {
		height: auto;
	}
}

@media (max-width: 650px) {


	.mp-work-container {

		padding: 43px 20px 25px;
	}


	.mp-work-title {
		font-size: 30px;
		line-height: 30px;
		margin-bottom: 23px;
	}

	.mp-work-grid {
		flex-direction: column;

		align-items: center;

		gap: 10px;
	}

	.mp-work-card {

		flex: 0 1 202px;
		width: 100%;
		min-height: 202px;
	}


	.mp-work-badge {
		margin-bottom: 20px;
	}

	.mp-work-banner {
		display: none;

	}
}





.mp-cost-section {
	background-color: #F5F7FB;
	padding: 40px 10px 20px;
	width: 100%;
	box-sizing: border-box;
	font-family: 'Manrope', sans-serif;
}

.mp-cost-section * {
	margin: 0;
	padding: 0;
}

.mp-cost-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.mp-cost-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 40px;

}

.mp-cost-title {
	font-size: 42px;
	line-height: 42px;
	font-weight: 700;
	max-width: 525px;
	letter-spacing: -2px;
	color: #2F2F2F;
	margin-bottom: 22px;
}

.mp-cost-subtitle {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: #2F2F2F;
	margin: 0;
	max-width: 600px;
}


.mp-cost-grid {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;

	gap: 18px;

	width: 100%;
	box-sizing: border-box;
}


.mp-cost-card {
	background-color: #FFFFFF;
	border-radius: 25px;
	width: 388px;

	min-width: 388px;

	flex-shrink: 0;

	height: 508px;
	box-sizing: border-box;
	padding: 20px 24px 25px 25px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
	gap: 36px;
}

.mp-cost-badge-ozon {
	width: 167px;
	background: linear-gradient(45deg, #0A06E8 0%, #FD3C84 100%);
	color: #ffffff;
}
.mp-cost-badge-wb {
	width: 157px;
	background: linear-gradient(45deg, #8C0FFD 0%, #FF00D0 100%);
	color: #ffffff;
}

.mp-cost-badge-ya {
	width: 237px;
	background-color: #FF3F0A;
	color: #FFDE00;
}
.mp-cost-badge {
	height: 32px;
	position: absolute;
	text-align: center;
	top: -17px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	font-weight: 400;
	line-height: 18.6px;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 30px;
	white-space: nowrap;
	box-sizing: border-box;
}

.mp-cost-card-top {
	display: flex;
	flex-direction: column;
}


.mp-cost-card-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 17px;
	margin-bottom: 15px;
}

.mp-cost-card-icon {
	width: 74px;
	height: 74px;
	border-radius: 12px;
	object-fit: contain;
}

.mp-cost-card-title {
	font-size: 25px;
	line-height: 28px;
	letter-spacing: -1px;
	font-weight: 700;
	color: #2F2F2F;
	margin: 0;
}


.mp-cost-card-descr {
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	color: rgba(47, 47, 47, 0.8);

	margin-bottom: 22px;
	min-height: 44px;

}


.mp-cost-card-price {
	font-size: 36px;
	line-height: 36px;
	letter-spacing: -1px;
	font-weight: 700;
	color: #4F3A79;
	margin-bottom: 33px;
}


.mp-cost-card-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mp-cost-card-item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: #2F2F2F;
}

.mp-cost-list-icon {
	width: 21px;
	height: 21px;
	flex-shrink: 0;
	margin-top: -1px;

}


.mp-cost-btn {
	width: 243px;
	height: 52px;
	border-radius: 30px;
	border: 1px solid #FF6B32;
	background-color: transparent;
	color: #FF6B32;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	align-self: center;

	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	transition:
		background-color 0.3s ease,
		transform 0.1s ease;
}

.mp-cost-btn:active {
	transform: scale(0.98);
}


.mp-cost-btn--primary {
	background-color: #FF6B32;
	color: #FFFFFF;
}

.mp-cost-btn--primary:hover {
	background-color: #d55b2b;
}

.mp-cost-btn--secondary:hover {
	background-color: #eaeaea;
}

@media (max-width: 828px) {
	.mp-cost-card--popular {
		margin-top: 15px;
	}
}

@media (max-width: 650px) {
	.mp-cost-title {
		font-size: 30px;
		line-height: 30px;
		font-weight: 700;
		margin-bottom: 15px;
	}

	.mp-cost-header {
		margin-bottom: 20px;

	}

	.mp-cost-card-title {
		font-size: 23px;
		line-height: 25px;
	}

	.mp-cost-card-price {
		font-size: 32px;
		line-height: 32px;
		margin-bottom: 27px;
	}


}






.mp-ask-section {
	display: flex;
	justify-content: center;
	background-color: #F5F7FB;

	padding: 40px 0 60px;
	width: 100%;
	box-sizing: border-box;
}

.mp-ask-section * {
	margin: 0;
	padding: 0;
}

.mp-ask-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1200px;

	padding: 0 20px;
	box-sizing: border-box;
}


.mp-ask-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 42px;
	line-height: 42px;
	letter-spacing: -2px;
	color: #2F2F2F;
	margin-bottom: 35px;

	text-align: center;
}


.mp-ask-accordion {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 4px;

}


.mp-ask-item {
	display: flex;
	flex-direction: column;
	background-color: #FFFFFF;
	border-radius: 10px;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	transition: background-color 0.3s ease;
}


.mp-ask-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 17px 18px 15px 30px;

	cursor: pointer;
	user-select: none;
}


.mp-ask-question {
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 32.4px;
	letter-spacing: -0.5px;
	color: #212121;
	padding-right: 20px;

}


.mp-ask-toggle-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	min-width: 40px;
	background-color: #FFFFFF;


	border: none;

	cursor: pointer;
	padding: 0;
	position: relative;
	transition: background-color 0.3s ease;
}


.mp-ask-toggle-btn img {
	position: absolute;
	width: 40px;

	height: 40px;
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}


.mp-ask-icon-plus {
	opacity: 1;
	transform: rotate(0deg);
}

.mp-ask-icon-close {
	opacity: 0;
	transform: rotate(-90deg);
}


.mp-ask-active .mp-ask-icon-plus {
	opacity: 0;
	transform: rotate(90deg);
}

.mp-ask-active .mp-ask-icon-close {
	opacity: 1;
	transform: rotate(0deg);
}


.mp-ask-content-wrapper {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease-out;
}


.mp-ask-active .mp-ask-content-wrapper {
	grid-template-rows: 1fr;
}


.mp-ask-content {
	overflow: hidden;
}


.mp-ask-answer {
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24.8px;
	color: #212121;
	margin: 0;
	padding: 0px 30px 17px;

}


@media (max-width: 650px) {

	.mp-ask-header {
		padding: 19px 18px 15px 20px;
	}

	.mp-ask-title {
		font-size: 30px;

		line-height: 30px;
		margin-bottom: 28px;
	}


	.mp-ask-question {
		font-size: 20px;
		line-height: 27px;

	}

	.mp-ask-answer {
		font-size: 12px;
		line-height: 17.4px;
		padding: 5px 20px 19px;
	}
}






.mp-calc-section {
	display: block;
	width: 100%;
	background-color: #FBF7F8;
	padding: 10px 10px;

	box-sizing: border-box;
	font-family: 'Manrope', sans-serif;
	overflow: hidden;
}

.mp-calc-section * {
	margin: 0;
	padding: 0;
}

.mp-calc-banner {
	display: flex;
	position: relative;
	width: 100%;
	max-width: 1200px;
	height: 358px;
	margin: 0 auto;
	background: linear-gradient(135deg, #188A9B 0%, #235788 100%);
	border-radius: 18px;
	box-sizing: border-box;
}

.mp-calc-bg-wave {
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	width: auto;
	height: auto;
	object-fit: cover;
	pointer-events: none;
	z-index: 1;
}

.mp-calc-content-left {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
	padding-top: 38px;
	padding-left: 39px;
	max-width: 750px;
	width: 100%;
	box-sizing: border-box;
}

.mp-calc-title {
	margin: 0;
	font-weight: 700;
	font-size: 41px;
	line-height: 45px;
	letter-spacing: -2px;
	color: #FFFFFF;
}

.mp-calc-badge-ozon {
	background: linear-gradient(45deg, #0A06E8 0%, #FD3C84 100%);
	color: #ffffff;
}
.mp-calc-badge-wb {
	background: linear-gradient(45deg, #8C0FFD 0%, #FF00D0 100%);
	color: #ffffff;
}
.mp-calc-badge-ya {
	background-color: #ff3f0a;
	color: #ffde00;
}

.mp-calc-badge {
	padding: 0px 10px 2px 7px;
	border-radius: 5px;
	display: inline-block;
	position: relative;
	left: -7px;
	top: 2px;
}
.mp-calc-subtitle {
	margin-top: 10px;
	font-weight: 500;
	font-size: 15px;
	line-height: 21px;
	letter-spacing: 0%;
	color: #FFFFFF;
	max-width: 590px;
}


.mp-calc-form {
	display: flex;
	flex-direction: column;
	margin-top: 68px;
	width: 100%;
}

.mp-calc-inputs-row {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
}

.contact-flag-icon {
	position: absolute;
	left: 25px;
	font-size: 13px;
	line-height: 30px;
}

.mp-calc-input {
	width: 235px;
	height: 50px;
	background-color: #FFFFFF;
	border: none;
	border-radius: 88px;
	padding: 0 24px;
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	font-size: 13px;
	color: #000000;
	box-sizing: border-box;
	outline: none;
}

.mp-calc-input:focus {
	box-shadow: 0 0 0 2px #ff6b32;

}

.mp-calc-input-phone {
	padding-left: 45px;

}

.mp-calc-input::placeholder {
	color: #808080;
	opacity: 1;
}

.mp-calc-phone-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.mp-calc-btn {
	width: 191px;
	height: 52px;
	background-color: #FF6B32;
	border: 1px solid #FF6B32;
	border-radius: 30px;
	color: #FFFFFF;
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease;
	box-sizing: border-box;
	transition:
		background-color 0.3s ease,
		transform 0.1s ease;
}

.mp-calc-btn:hover {
	background-color: #e55a23;
}

.mp-calc-btn:active {
	transform: scale(0.98);
}

.mp-calc-privacy {
	margin-top: 11px;
	font-weight: 400;
	font-size: 10px;
	line-height: 14px;
	color: #FFFFFF;
}

.mp-calc-privacy-link {
	color: #FFFFFF;
	text-decoration: underline;
}

.mp-calc-privacy a {
	text-decoration: underline;
	color: #FFFFFF;
}

.mp-calc-privacy a:hover {
	text-decoration: none;
}


.mp-calc-main-img {
	position: absolute;
	right: 21px;
	top: -2px;
	width: 376px;
	height: 376px;
	object-fit: contain;
	z-index: 2;
}

@media (max-width: 1090px) {


	.mp-calc-main-img {
		right: -30px;
	}
}

@media (max-width: 1056px) {


	.mp-calc-main-img {
		display: none;
	}
}


@media (max-width: 900px) {

	.mp-calc-bg-wave {
		position: absolute;
		top: 0;
		left: 0;
		right: auto;
	}

	.mp-calc-section {
		padding: 40px 30px;
	}

	.mp-calc-badge {
		padding: 0px;
		position: static;
		width: 95%;
	}

	.mp-calc-banner {
		flex-direction: column;
		height: auto;
		padding: 40px 30px;
		border-radius: 16px;
	}

	.mp-calc-content-left {
		padding: 0;
		max-width: 100%;
		align-items: center;
		text-align: center;
	}



	.mp-calc-form {
		margin-top: 40px;
		width: 95%;
	}


	.mp-calc-inputs-row {
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 10px;
	}


	.mp-calc-inputs-row>.mp-calc-input,
	.mp-calc-inputs-row>.mp-calc-phone-wrapper {
		flex: 1 1 calc(50% - 5px);
		width: auto;
	}


	.mp-calc-phone-wrapper .mp-calc-input {
		width: 100%;
	}


	.mp-calc-btn {
		width: 100%;
		max-width: 100%;

		border-radius: 88px;

	}

	.mp-calc-privacy {
		margin-top: 15px;
		text-align: center;
	}


}


@media (max-width: 650px) {

	.mp-calc-banner {
		padding: 22px 20px 16px;
	}

	.mp-calc-content-left {
		padding: 0px;
	}

	.mp-calc-title {
		font-size: 34px;
		line-height: 37px;
		width: 95%;
	}

	.mp-calc-subtitle {
		font-size: 12px;
		line-height: 17px;
		margin-top: 7px;
		width: 80%;
	}

	.mp-calc-form {
		margin-top: 9px;
	}

	.mp-calc-privacy {
		margin: 9px auto 16px;
		max-width: 182px;
	}



	.mp-calc-inputs-row>.mp-calc-input,
	.mp-calc-inputs-row>.mp-calc-phone-wrapper {
		flex: 1 1 100%;
		width: 100%;
	}

	.mp-calc-input {
		height: 50px;
	}
}






.mp-other-section {
	width: 100%;
	min-height: 525px;
	background-color: #F5F7FB;
	display: flex;
	justify-content: center;
	padding: 70px 20px 62px;
	box-sizing: border-box;
}

.mp-other-section * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.mp-other-container {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	overflow: hidden;
}


.mp-other-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 42px;
	line-height: 42px;
	letter-spacing: -2px;
	color: #2F2F2F;
	text-align: center;
	margin-bottom: 48px;
	max-width: 700px;
}


.mp-other-cards-wrap {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 12px;
}


.mp-other-card {
	flex: 1;

	max-width: 594px;

	min-height: 244px;

	background-color: #FFFFFF;
	border-radius: 25px;
	padding: 21px 20px 21px 26px;
	display: flex;
	justify-content: space-between;
}


.mp-other-card-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 1;

	margin-right: 15px;

}


.mp-other-card-mobile-header {
	display: none;
}


.mp-other-card-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 25px;
	line-height: 25px;
	letter-spacing: -1px;
	color: #2F2F2F;
	margin: 7px 0 14px 0;
}


.mp-other-card-text {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	color: #2F2F2F;
	opacity: 0.8;
	margin: 5px 0 25px 0;
}


.mp-other-card-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 243px;
	height: 52px;
	border: 1px solid #FF6B32;
	border-radius: 30px;
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 21.7px;
	color: #FF6B32;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;

	flex-shrink: 0;
	transition:
		background-color 0.3s ease,
		transform 0.1s ease;
}

.mp-other-card-btn:hover {
	background-color: #eaeaea;
}

.mp-other-card-btn:active {
	transform: scale(0.98);
}



.mp-other-card-right {
	display: flex;
	align-items: flex-start;
}

.mp-other-card-img {
	width: 114px;
	height: 116px;
	border-radius: 12px;
	object-fit: cover;
}





@media (max-width: 900px) {
	.mp-other-section {
		padding: 40px 10px 58px;
		min-height: auto;
	}

	.mp-other-title {
		font-size: 30px;
		line-height: 30px;
		margin-bottom: 25px;
	}


	.mp-other-cards-wrap {
		flex-direction: column;
		align-items: center;
		gap: 11px;
	}


	.mp-other-card {
		width: 100%;
		max-width: 500px;




		padding: 20px 20px;
	}


	.mp-other-card-right {
		display: none;
	}


	.mp-other-desktop-only {
		display: none;
	}



	.mp-other-card {
		padding: 21px 20px 29px 26px;
	}


	.mp-other-card-left {
		max-width: 100%;
		height: 100%;
	}



	.mp-other-card-mobile-header {
		display: flex;
		align-items: center;
		gap: 14px;
		margin-bottom: 6px;
		width: 100%;
	}


	.mp-other-card-img-mobile {
		display: block;
		width: 84px;
		height: 84px;
		border-radius: 12px;
		object-fit: cover;
	}


	.mp-other-card-mobile-header .mp-other-card-title {
		font-size: 21px;
		line-height: 21px;
		margin: 7px 0 0 5px;
		text-align: left;
		flex: 1;
		max-width: 200px;
	}


	.mp-other-card-text {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 13px;
		flex-grow: 1;

	}
}