.empresa__page {
    padding: 5rem 0;
}
.empresa__page .content {
    display: flex;
    align-items: flex-start;
    max-width: 800px;
    width: 95%;
}
.empresa__page .content .images {
    /* display: none; */
    width: 30%;
    margin-right: 1.5rem;
}
.empresa__page .content .images div.line {
    height: 1px;
    width: 100%;
    background-color: red;
    margin: 1rem 0;
}

.empresa__page .content .images img {
    width: 100%;
    height: auto;
}

.empresa__page .content .images h5 {
    font-family: "Poppins Semibold";
    font-size: 1.1rem;
    text-align: right;
    margin-bottom: 1rem;
    color: #292929;
}
.empresa__page .content .text h1 {
    color: #df1806;
    font-family: "Poppins Semibold";
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.empresa__page .content .text h3 {
    color: #df1806;
    font-family: "Poppins Semibold";
    font-size: 1.5rem;
}


.empresa__page .content .text {
    flex: 1;
    text-align: left;
}
.empresa__page .content .text p {
    font-family: "Calibri", sans-serif;
    font-size: 1rem;
    color: #292929;
}
.empresa__page .content .text > img {
    width: 100%;
    height: auto;
}



@media screen and (max-width: 991px), (orientation: portrait) {
    .empresa__page .content {
        flex-direction: column;
        align-items: center;
    }
    .empresa__page .content .images {
        width: 70%;
        margin-right: 0;
    }
    .empresa__page .content .text h1 {
        text-align: center;
        font-size: 2.5rem;
        margin-top: 1.5rem;
    }
    .empresa__page .content .text h3 {
        text-align: center;
    }
    .empresa__page .content .text p {
        text-align: center;
    }
}


