.highlights22{
    margin-bottom: 80px;
}
.h22Inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}
.h22iBlock{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, #27201F 0%, rgba(36, 36, 36, 0) 100%);
    border-radius: 11px;
    padding: 25px;
}
.h22ibNumber{
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    position: absolute;
    left: calc(50% - 40px);
    top: -40px;
    color: var(--white);
    background: linear-gradient(154.72deg, #EE252A 16.04%, rgba(48, 8, 9, 0.89) 158.45%);
    border: 6px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.h22ibHeader{
    margin-top: 40px;
    margin-bottom: 17px;
    color: var(--white);
    text-align: center;
    line-height: 24px;
}
.h22ibText{
    color: var(--grey-text);
    line-height: 24px;
}

@media screen and (max-width: 1200px){
    .h22Inner{
        grid-template-columns: repeat(1, 1fr);
    }
    .h22iBlock{
        margin-bottom: 50px;
    }
    .h22iBlock:last-child{
        margin-bottom: 0px;
    }
}
@media screen and (max-width: 700px){
    .h22iBlock{
        margin-bottom: 30px;
    }
}