.row.circle_metrics{
    position: relative;
    background-image: url('/wp-content/uploads/2025/06/watermark-color-rings.svg');
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-bottom: 8%;
}
.circle-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem; /* spacing between circles */
    padding: 2rem;
    text-align: center;
  }
  
  .circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    /* background-color: #e57b52; default color, override as needed */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: sans-serif;
    padding: 1rem;
    box-sizing: border-box;
    flex-shrink: 0;
    font-family: "freight-sans-pro", sans-serif !important;
  }
  .circles-large .circle{
    width: 260px;
    height: 260px;
  }
  .circles-small .circle{
    width: 165px;
    height: 165px;
  }
  .circle .amount{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .circles-large .circle .amount{
    font-size: 50px;
  }
  .circle .text{
    font-size: 15px;
    line-height: 1;
  }
  .circles-large .circle .text{
    font-size: 15px;
  }
.row.circle_metrics::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 144%;
    top: -24%;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(/wp-content/uploads/2024/05/pie-charts-watermark.svg);
    z-index: 0;
}
.pie-graphic {
    clip-path: url(#graph-path);
    -webkit-clip-path: url(#graph-path);
  }
  .graph{
    position: relative;
  }
.graphic-container{
    width: 278.01px;
}
.pie-graphic{
    width: 100%;
    /* height: 100%; */

    /* position: absolute; */
    top: 0;
    left: 0;
}
.pie-graphic::after{
    content: "";
    display: block;
    padding-bottom: 100%;
}
.graphs-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 30px;
    width: 60%;
    margin: 0 auto;
}
.graphs-container > .graphic{
    flex: 0 0 279px;
    display: flex;
    justify-content: center;
    text-align: center;
}
.graph-text{
    font-weight: 600;
    margin: 0;
    font-size: 18px;
    color: var(--denim);
}
.graph-title{
    color: #DB7B51 !important;
    width: 75%;
    margin: 0 auto 50px auto;
    text-align: center;
    font-weight: 800;
}
.source-text{
    margin-top: 50px;
}
.source-text,.source-text a{
    color: var(--grey4);
    font-weight: 600;
}
.source-text a{
    text-decoration: underline;
}
.source-text a:hover{
    text-decoration: none;
}
h3.percentage{
    font-size: 50px;
    font-weight: 700;
    margin: 26px 0 0 0;
    line-height: 1;
}

@media all and (max-width: 1440px){
    .circles-large .circle{
        width: 235px;
        height: 235px;
    }
}

@media all and (max-width: 1366px){
    .graphic-container {
        width: 245px;
    }
    .graphs-container > .graphic {
        flex: 0 0 250px;
    }
}

@media all and (max-width: 1120px){
    .graphic-container {
        width: 278px;
    }
    .graphs-container > .graphic {
        flex: 0 0 279px;
    }
}
@media all and (max-width: 600px){
    .row.circle_metrics{
        margin: 0 !important;
    }
}
@media all and (max-width: 375px){
    .graphic-container {
        width: 220px;
    }
}