#IGENAS {
    display: flex;
    justify-content: center;
    width: 100%;
}
.row_software {
    width: 80%;
    max-width: 1755px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 75px;
    overflow-x: hidden;
    padding: 7.5rem 0;
}

.row_software .img_software {
    overflow: hidden;
}

.row_software .img_software img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.row_software .img_software:hover img {
    transform:scale(1.25);
}

.row_software .content_wrapper_software {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 45px;
}

.row_software .content_wrapper_software h2{
    font-size: 60px;
    font-weight: 700;
    color: #383f47;
    padding-bottom: 30px;
}

.row_software .content_wrapper_software p{
    font-size: 24px;
    line-height: 37.5px;
    padding-bottom: 37.5px;
}

.row_software .content_wrapper_software a{
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    background: #383f47;
    color: #fff;
    padding: 22.5px 60px;
    letter-spacing: 1px;
    user-select: none;
}

@media (max-width: 991px) {
    .row_software {
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }

    .row_software .content_wrapper_software {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .row_software {
        width: 90%;
    }

    .row_software .content_wrapper_software h2{
        font-size: 25px;
        padding-bottom: 20px;
    }

    .row_software .content_wrapper_software p{
        line-height: 24px;
        font-size: 15px;
    }

    .row_software .content_wrapper_software a{
        font-size: 15px;
    }
}

