.badges{
    display: flex;
    justify-content: center;
    gap: 21px;
    padding: 85px 0;
}
.badges .badge img{
    vertical-align: middle;
    max-width: 40px;
}
.badges .badge {
    padding: 20px;
    background: radial-gradient(156.62% 162.27% at 31.3% 34.55%, #002E5F 0%, #20A68D 100%);
    border-radius: 16px;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    line-height: 25px;
    vertical-align: middle;
    width: 223px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

@media(max-width:1024px){
    .badges {
        justify-content: space-evenly;
        padding: 85px 0;
    }
    .badges .badge {
        padding: 10px 15px;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        min-width: 120px;
        display:block;
        width: 100%;
    }
    .badges .badge img {
        display: block;
        margin: auto auto 20px;
    }
}

@media(max-width:767px){
    .badges {
        flex-direction: column;
        padding: 50px 0;
    }
}
