.hp-stats-row {
    display: flex;
    
    .hp-stats-col {
        margin-top: auto;
        margin-bottom: auto;
        
        .hp-stats-container {
            display: flex;
            justify-content: space-between;
            
            .hp-stat-container {
                .hp-stat-figure {
                    font-weight: 600;
                    font-size: 70px;
                    leading-trim: NONE;
                    line-height: 100%;
                    letter-spacing: 0%;
        
                }
                
                .hp-stat-unit {
                    font-weight: 400;
                    font-style: Regular;
                    font-size: 20px;
                    line-height: 100%;
                    letter-spacing: 0%;
                    text-transform: uppercase;
                    color: #6D6D6D;
        
                }
            }
        }
    }
    @media (max-width: 980px) {
        display: block;
        
        .hp-stats-col {
            margin-bottom: 40px;
            
            .hp-stats-container {
                .hp-stat-container {
                    .hp-stat-figure {
                        font-size: 50px;
                    }
                    
                }
            }
        }
    }
    
    @media (max-width: 479px) {
        .hp-stats-col {
            .hp-stats-container {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                
            }
        }
    }
}