.our-features__group{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: 0 10px 32px 0 rgba(0, 0, 0, 0.12);
    background: #f5fcff;
    border-radius: 28px;
    gap: 15px;
}
.our-features__item{
    display: flex;
    gap: 16px;
    align-items: center;
}
.our-features__item-icon{
    background: #83d400;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.our-features__item-icon img{
    display: block;
    flex-shrink: 0;
    height: 30px;
    width: auto;
}
.our-features__item-content__title{
    margin-bottom: 5px;
}
.our-features__item-content__text {
    color: rgba(82, 100, 135, 0.85);
    line-height: 150%;
}
@media screen and (min-width: 992px){
    .our-features__group{
        padding: 30px 25px;
    }
    .our-features__item{
       flex-basis: calc((100% - 45px)/4);
    }
}
@media screen and (max-width: 1024px){
    .our-features__item{
        flex-basis: calc((100% - 15px)/2);
    }
}
@media screen and (max-width: 991.98px){
    .our-features__group{
        padding: 27px 27px 30px 20px;
        margin-top: 40px;
    }

}
@media screen and (max-width: 767px){
    .our-features__group{
       flex-direction: column;
        align-items: normal;
    }

}