.about_num{
    gap: 20px;
    flex-wrap: wrap;
}
.inf_blck_z{
    background: #EEF3F7;
    width: 100%;
    height: 100%;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    border-radius: 40px;
}
.infnum_blck {
    width: calc(100% / 4 - 38px);
    aspect-ratio: 1/1;
    position: relative;
    transition: 0.5s all linear;
    border: 4px solid transparent;
    animation: spin 3s infinite linear paused;
        background:
                conic-gradient(
                        from var(--bg-angle) in hsl shorter hue,
                        white,
                        var(--blueBrand)
                )
                border-box;
        animation-play-state: running;
    border-radius: 40px;
}
@property --bg-angle {
    inherits: false;
    initial-value: 0deg;
    syntax: "<angle>";
}
@keyframes spin {
    to {
        --bg-angle: 360deg;
    }
}
/*.infnum_blck::before{*/
/*    z-index: -1;*/
/*}*/
/*.infnum_blck::after{*/
/*  z-index: -2;*/
/*}*/
/*.infnum_blck::before,*/
/*.infnum_blck::after{*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: -5px;*/
/*  left: -5px;*/
/*  right: -5px;*/
/*  bottom: -5px;*/
/*  background: #fff;*/
/*  background: linear-gradient(0deg, #EEF3F7, #EEF3F7, var(--blueBrand));*/
/*  border-radius: 50px;*/
/*}*/
.numinif_{
    font-size: 80px;
    color: var(--blueBrand);
    font-weight: bold;
    /*font-family: 'k2d-Bold';*/
}
.infof_num{
    font-size: 28px;
    color: #10364E;
    /*font-family: 'k2d-Medium';*/
    text-align: center;
    font-weight: bold;
}
.grid_container {
    margin: 120px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto 1fr auto;
    grid-gap: 30px;
    border-radius: 80px;
    border: 4px solid #D7DCDF;
    background: #EEF3F7;    
    padding: 45px;
}
.salmon {
    grid-row: span 2;
}
.salmon_cut {
    grid-column: span 3;
}
.grid_item img{
    border-radius: 60px;
}
  





























