.pieChart__legend li{
    position: relative;
    padding-left: 1.8rem;
    color: #123a6d;
    font-weight: 600;
    line-height: 1.5; 
    font-size: 1.1rem;
}
.pieChart__legend li::before{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border: 1px solid #000;
    width: 14px;
    height: 14px;
    background: #2081c4;
    margin-top: 3px
}
.pieChart__legend li span{
    margin: 0 2px 0 7px;
    font-size: 1.7rem;
    letter-spacing: -1px;
}
li.pieChart__legend-01::before{
    background: #2081c4; 
}
li.pieChart__legend-02::before{
    background: #409ad3; 
}
li.pieChart__legend-03::before{
    background: #5fb2e1; 
}
li.pieChart__legend-04::before{
    background: #9fe4ff; 
}
li.pieChart__legend-05::before{
    background: #e9f7ff; 
}
.generalComp:last-child {
    padding-bottom: 1rem;
}


@media screen and (min-width: 768px){
    .generalComp__img.pieChart {
        gap: 0 4rem;
        grid-template-columns: 35.2% 45%;
        justify-content: flex-end
    }
    .pieChart__legend li{
        font-size: 2rem;
        padding-left: 3rem;
    }
    .pieChart__legend li::before{
        content: "";
        width: 22px;
        height: 22px;
        margin-top: 5px
    }
    .pieChart__legend li span{
        font-size: 3rem;
        margin-left: 1.4rem;
        margin: 0 2px 0 7px;

    }
    .generalComp:last-child {
        padding-bottom: 2.8rem;
    }
    
}
@media screen and (max-width: 767px){
    .generalComp__img.pieChart {
        max-width: 100%;
    }
   
    .generalComp__img.pieChart img{
        max-width: 56.25%;

    }
    .pieChart__legend{
        margin: -5px auto 0;
    }

}
