/* ------ A EMPRESA ------ */

#empresa {
    width:80%;
    margin:auto;
    text-align:center;
    padding-top:100px;
}

.titulo-empresa {
    font-size:36px;
    font-weight:600;
    text-transform:uppercase;
    font-family:'Poppins';
}

.subtitulo-empresa {
    padding-top:1px;
}

.line {
    width:10%;
    margin:auto;
    height:1px;
    background:#777;
}

.sobre-empresa {
    width:80%;
    margin:auto;
    border-bottom:1px solid #383838;
    margin-top:60px;
    margin-bottom:40px;
}

.sobre-empresa-p {
    text-transform:none;
    text-align:left;
    padding:20px;
}

p {
    color:#777;
    font-size:14px;
    font-weight:400;
    line-height:22px;
    padding:10px;
    text-transform:uppercase;
}

.row {
    margin-top:5%;
    display:flex;
    justify-content:space-between;
}

.title-empresa {
    font-family:'Poppins';
    text-align:center;
    font-weight:700;
    margin:10px 0;
    text-transform:uppercase;
}

.text-empresa {
    text-transform:none;
}

.empresa-col {
    flex-basis:31%;
    background:#285caa2d;
    border-radius:10px;
    margin-bottom:5%;
    padding:20px 12px;
    box-sizing:border-box;
    transition:0.5s;
}

.empresa-col:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width:700px) {
    .row {
        flex-direction:column;
    }
}