#myBusiness{
    padding: 4em 10% 4em 15%;
    display: flex;
    align-items: center;
    background-color: var(--myblack);
}

#myBusiness .left-side{
    width: 40%;
    display: flex;
    justify-content: center;
}

#myBusiness .right-side{
    width: 60%;
    padding-left: 3vw;
}

#automatize_logo{
    width: 400px;
    height: 400px;
    border-radius: 20em;
}

#myBusiness .right-side h2{
    font-size: 2.3vw;
    padding-bottom: 4vh;
    text-align: center;
}

#services{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2%;
}

.service{
    width: 49%;
    min-height: 25em;
    list-style: none;
    margin-bottom: 2%;
    border-radius: 4px;
    padding: 1em;
    background-color: var(--myblack2);
    box-shadow: 0 0 10px #00000090;
    cursor: default;
    transition: ease .1s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service img{
    max-width: 100px;
}

.service:hover{
    transform: scale(1.01);
}

.service h3{
    margin-top: 15px;
    font-size: 1.7em;
    text-align: center;
}

.service p{
    font-size: 1.2em;
    text-align: justify;
    padding-top: .5em;
}

.businessHr{
    width: 60%;
    margin: 0 auto;
}

#linkInstituto{
    text-decoration: underline var(--myblue);
    transition: ease .2s;
}