.test-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;;
    margin-top: 3rem;
}
.test-card{
    background: var(--contrast-color);
    padding: 20px;
    line-height: 1.4;
    box-shadow: 2px 16px 123px -54px rgba(0,0,0,0.78);
}
.test-card p {
    margin-top: 1rem;
}
.test-card-flex {
    display: flex;
    gap: 10px;
}
.test-card-flex img {
    width: 8%;
    height: 8%;
    border-radius: 50%;
}
.test-card-content h3 {
    font-weight: 500;
    font-size: 0.9rem;
    color: var( --default-color);
}
.test-card-content i {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: orange;
}
.number {
   background: var(--contrast-color);
   margin-top: 2rem;
   height: 300px;
   
}
.number-flex {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.number-flex-p h1 {
    font-size: 3rem;
}