.elementor .circle_box_wrapper
{
	width: 200px;
	position: relative;
	margin: 0 auto;
}
.elementor .circle_title
{
	width: 200px;
	height: 200px;
	background-color: orange;
	color: white;
	border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.elementor .circle_title h3
{
	font-size: 30;
	z-index: 10;
}
.elementor .circle_title .overlay
{
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
}
.elementor .circle_box_wrapper::before,
.elementor .circle_box_wrapper::after
{
	content: '';
	position: absolute;
	z-index: -10;
	width: 30px;
	height: 30px;
	background-color: darkorange;
	border-radius: 50%;
}
.elementor .circle_box_wrapper::before
{
	top: 5%;
    right: -10px;
	width: 10px;
	height: 10px;
}
.elementor .circle_box_wrapper::after
{
	top: 80%;
    left: -20px;
    width: 20px;
    height: 20px;
}