.stat-wrapper {
    border-radius: var(--border-radius);
    background: var(--white);
    box-shadow: 0px 3px 15px 0px rgba(1, 22, 39, 0.15);
    padding: 15px 32px;
    margin-top: -47px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 36px;
}

.stat {
    text-align: center;
}

.stat h3 {
    color: var(--dark-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.stat p {
    color: var(--dark-blue);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2em;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-color) 100%);
    background-position: 0 101%;
    background-repeat: repeat-x;
    background-size: 4px 8px;
    display: inline;
}

.company-stats--inner .stat-wrapper {
    margin: 40px 0 0 0;
}

@media (min-width: 320px) {
   .stat {
     line-height: 1.2em;
   }
   
    .stat p {
        font-size: 13.4px;
        
    }
}

@media (min-width: 768px) {
    .stat-wrapper {
        padding: 32px;
        margin-top: -70px;
        column-gap: 50px;
    }

    .stat h3 {
        font-size: 40px;
    }

    .stat p {
        font-size: 18px;
        background-size: 4px 16px;
        padding: 0 5px 3px;
    }

    .company-stats--inner .stat-wrapper {
        margin: 68px 0 0 0;
    }
}

@media (min-width: 1200px) {
    .stat-wrapper {
        padding: 50px 124px; 
        margin-top: -100px;
        justify-content: space-between;
    }

    .stat h3 {
        font-size: 60px;
        margin-bottom: 4px;
    }

    .stat p {
        font-size: 20px;
        padding: 0 0 3px;
    }

     .company-stats--inner .stat-wrapper {
        margin: 57px 0 20px 0; 

    }
}