/*SECTION TITLE INTERNA*/
.sect_title_interna{
    padding: 50px 0;
    position: relative;
    background-position: center;
    background-size: cover;
}
.sect_title_interna:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
}
.row_height{
    height: 115px;
    align-items: flex-end;
}
.sect_title_interna h1{
    color: #fff;
    font-weight: 700;
    text-align: center;
}
@media(max-width: 991px){
    .sect_title_interna h1 {
        font-size: 30px;
    }
    .row_height {
        height: 140px;
    }
}
@media(max-width: 767px){
    .sect_title_interna h1 {
        font-size: 25px;
    }
    .row_height {
        height: 130px;
    }
    .sect_title_interna {
        padding: 20px 0;
    }
}
@media(max-width: 500px){
    .sect_title_interna h1 {
        font-size: 18px;
    }
}
/*END SECTION TITLE INTERNA*/   

/*SECTION NOSOTROS*/
.sect_nosotros{
    padding: 50px 0;
}
.list_nosotros .nav-item{
    width: 33.3%;
    border: 1px solid #dee2e6;
    background: #fff;
}
.list_nosotros .nav-item>a{
    text-align: center;
    font-weight: 800;
    border-radius: 0;
    font-size: 15px;
    color: #000;
    transition: all ease 500ms;
}
.list_nosotros .nav-item>a:hover, .list_nosotros .nav-item>a:active, .list_nosotros .nav-item>a:focus,
.list_nosotros .nav-item>a.active{
    border-color: transparent;
    background: #97BE27;
    color: #fff !important;
    transition: all ease 500ms;
}
.box_nosotros {
    padding: 20px;
}
.box_nosotros h5{
    color: #000;
    font-weight: 600;
}
.box_nosotros p{
    font-size: 16px;
    text-align: justify;
    color: #000;
}
.box_nosotros article{
    margin-top: 25px;
}
/**/
/*SECTION VALORES*/
.sect_valores{
    padding: 50px 0;
    position: relative;
    background-image: url(../../../../public/img/fondo/fondo-nosotros.jpg);
    background-size: cover;
    background-position: center;
}
.sect_valores:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
}
.box_valor .box_header img{
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    display: block;
}
.box_valor .box_body h5{
    color: #fff;
    font-weight: 700;
    text-align: center;
    margin-top: 30px;
}
.hr_valor{
    width: 50px;
    border-top: 3px solid #97BE27;
}

.info-nosotros p
{
    color: #fff;
    text-align: center;
}

.box_body {
    height: 100%;
}

.box_valor {
    height: 100%;
}

.info-nosotros {
    height: calc(100% - 100px);
    display: flex;
    align-items: center;
}

@media(max-width: 380px)
{
    .nav-tabs
    {
        display: flex;
        flex-direction: column;
    }

    .list_nosotros .nav-item
    {
        width: 100%;
    }
}