/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');



.circular-progress{
    position: relative;
    height: 266.66px;
    width: 266.66px;
    border-radius: 50%;
    background: conic-gradient(rgb(28, 87, 96) 3.6deg,rgb(237, 237, 237) 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 10px !important;

}
.circular-progress::before{
    content: "";
    position: absolute;
    height: 195.54px;
    width: 195.54px;
    border-radius: 50%;
    background-color: #fff;
    padding: 10px !important;
}   
.progress-value{
    position: relative;
    font-size: 71.10px;
    font-weight: 600;
    color: #1C5860;
}
.text{
    font-size: 20px;
    color: #606060;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3px;
    position: absolute; 
    margin-top: 65%;
}

/* Adicione margem à esquerda em dispositivos xs (extra small) */


@media (min-width: 300px) and (max-width: 400px) {
    .text {
        margin-top: 85%;
        
    }
}

@media (min-width: 405px) and (max-width: 466px) {
    .text {
        margin-top: 73%;
        
    }
}

@media (min-width: 470px) and (max-width: 700px) {
    .text {
        margin-top: 55%;
        
    }
}

