.mp-sector {
	width: 100%;
	position: relative;
	color: #ffffff;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	border-radius: var(--nut-radius-lg, 8px);

	.mp-sector__title {
		position: relative;
		color: rgba(78, 73, 69);
		font-size: 16px;
		font-weight: bold;
		padding: 10px 10px 5px;
		&::before {
			content: " ";
			position: absolute;
			z-index: 1;
			left: -5px;
			top: 13px;
			width: 10px;
			height: 17px;
			border-radius: 5px;
		}
	}

	.mp-sector__description {
		color: var(--mp-gray-7, #6d6d6d);
		font-size: 15px;
		padding: 0 10px 10px;
	}

	&:before {
		content: " ";
		position: absolute;
		bottom: 40%;
		left: 60%;
		width: 60%;
		padding-bottom: 60%;
		height: 0;
		border-radius: 50%;
	}

	&:after {
		content: " ";
		position: absolute;
		top: 50%;
		right: 35%;
		width: 80%;
		padding-bottom: 60%;
		height: 0;
		border-radius: 50%;
	}

	&.mp-sector__green {
		background: var(--mp-sector-title-green, rgba(232, 251, 247));

		&:before {
			background: linear-gradient(135deg, rgba(77, 209, 198, 0.33), rgba(79, 211, 200, 0));
		}

		&:after {
			background: linear-gradient(255deg, rgba(77, 209, 198, 0.33), rgba(79, 211, 200, 0));
		}
		.mp-sector__title::before {
			background: var(--mp-sector-title-block-green, rgba(84, 216, 186));
		}
	}

	&.mp-sector__orange {
		background: var(--mp-sector-title-orange, rgba(252, 248, 236));

		&:before {
			background: linear-gradient(135deg, rgba(255, 197, 158, 0.33), rgba(255, 197, 158, 0));
		}

		&:after {
			background: linear-gradient(235deg, rgba(255, 197, 158, 0.33), rgba(255, 197, 158, 0));
		}
		.mp-sector__title::before {
			background: var(--mp-sector-title-block-orange, rgba(247, 178, 70));
		}
	}

	&.mp-sector__red {
		background: var(--mp-sector-title-red, rgba(249, 234, 231));

		&:before {
			background: linear-gradient(135deg, rgba(255, 150, 142, 0.33), rgba(255, 197, 158, 0));
		}

		&:after {
			background: linear-gradient(235deg, rgba(255, 150, 142, 0.33), rgba(255, 197, 158, 0));
		}
		.mp-sector__title::before {
			background: var(--mp-sector-title-block-red, rgba(245, 105, 96));
		}
	}

	&.mp-sector__blue {
		background: var(--mp-sector-title-blue, rgba(241, 245, 254));

		&:before {
			background: linear-gradient(135deg, rgba(172, 209, 255, 0.33), rgba(172, 209, 255, 0));
		}

		&:after {
			background: linear-gradient(235deg, rgba(172, 209, 255, 0.33), rgba(172, 209, 255, 0));
		}
		.mp-sector__title::before {
			background: var(--mp-sector-title-block-blue, rgba(124, 165, 250));
		}
	}
}
