.com-main-objects{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}
.com-main-objects .-item{
    width: 50%;
    background-position: center left;
    background-size: 13px auto;
    background-repeat: no-repeat;
    padding-left: 25px;
    margin: 15px 0;
}
.com-main-objects .-btn-box{
    width: 50%;
}
.com-main-objects .-btn{
    display: flex;
    width: 370px;
    max-width: 100%;
    background: #0079c2;
    color: white;
    text-decoration: none;
    font-family: 'HeliosCond', sans-serif;
    padding: 12px 24px;
    border-radius: 5px;
    text-align: center;
    justify-content: center;
}
@media(max-width: 1000px){
    .com-main-objects{
        justify-content: space-between;
    }
    .com-main-objects .-item,
    .com-main-objects .-btn-box{
        width: calc(50% - 45px);
    }
}
@media(max-width: 768px){
    .com-main-objects .-item,
    .com-main-objects .-btn-box{
        width: 100%;
    }
    .com-main-objects .-item:nth-child(odd){
        order: 1;
    }
    .com-main-objects .-item:nth-child(even){
        order: 2;
    }
    .com-main-objects .-btn-box{
        order: 3;
        margin-top: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}