.binary-services{
    display: flex;
    width: 100%;
}

.binary-service{
    width: 50%;
}

.binary-service img{
    width: 100%;
    height: auto;
}

.binary-service__info{
    padding: 50px 70px;
}

.binary-service__info h4{
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    color: #009FE3;
}

.binary-service__info-support h4{
    font-size: 18px;
    line-height: 24px;
}

.binary-service__info p{
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.binary-service__info-support p{
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 20px;
}

.hide-mobile{
    display: block;
}

.hide-desktop{
    display: none;
}

/* mobile */
@media (max-width: 992px) {

    .binary-services{
        display: block;
        width: 100%;
    }
    
    .binary-service{
        width: 100%;
    }
    
    .binary-service img{
        width: 100%;
        height: auto;
    }
    
    .binary-service__info{
        padding: 25px 35px;
    }
    
    .binary-service__info h4{
        display: block;
        position: relative;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        padding: 0 15px;
        color: #009FE3;
    }
    
    .binary-service__info p{
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        line-height: 20px;
    }

    .hide-mobile{
        display: none;
    }
    .hide-desktop{
        display: block;
    }
}