.pie-chart1 {
	background:
		radial-gradient(
			circle closest-side,
			transparent 100%,
			white 0
		),
		conic-gradient(
			#4e79a7 0,
			#4e79a7 38%,
			#f28e2c 0,
			#f28e2c 61%,
			#e15759 0,
			#e15759 77%,
			#76b7b2 0,
			#76b7b2 87%,
			#59a14f 0,
			#59a14f 93%,
			#edc949 0,
			#edc949 100%
	);
	position: relative;
	width: 350px;
	aspect-ratio: 1/1;
	margin: 0;
	border-radius: 50%;
}
figcaption {
	/*position: absolute;*/
	bottom: 1em;
	right: 1em;
	font-size: smaller;
	text-align: right;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	gap: 6px;
}

figcaption p{
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
figcaption span:after {
	display: inline-block;
	content: "";
	width: 0.8em;
	height: 0.8em;
	margin-left: 0.4em;
	height: 0.8em;
	border-radius: 0.2em;
	background: currentColor;
}

.empty-circle{
    width: 70%;
  	aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 15.5%;
    left: 15.5%;
}

@media screen and (max-width: 1440px){
    .pie-chart1{
        width: 250px;
    }
    
    .recent-projects .pie-chart{
        padding: 2rem;
    }
}

@media screen and (max-width: 1200px){
    .pie-chart1{
        width: 200px;
    }
}

@media screen and (max-width: 600px){
    .pie-chart1{
        width: 270px;
        height: 270px;
    }
}