/*SECTION TITULO INTERNA*/
.sect_title_interna {
    padding: 50px 0;
    padding-bottom: 120px;
    background-image: url(../../../../public/img/fondo/fondo-nosotros.jpeg);
    background-size: cover;
    background-position: center 30%;
    position: relative;
}
.sect_title_interna:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: .5;
}
.sect_title_interna:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 28px;
    background-image: url(../../../../public/img/fondo/nubes2.png);
    background-size: cover;
    background-repeat: repeat;
    transform: rotate(180deg);
}
.row_height {
    height: 200px;
    align-items: flex-end;
}
.row_height h2 {
    color: #fff;
    font-weight: 700;
}
@media(max-width: 600px){
    .row_height {
        height: 100px;
    }
    .sect_title_interna {
        padding: 107px 0;
        padding-bottom: 70px;
    }
    .row_height h2 {
        font-size: 25px;
    }
}
/**/

/*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: #ffc815;
    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/galeria/galeria2.jpeg);
    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 {
    color: #fff;
    text-align: center;
    font-size: 50px;
}
.box_valor .box_body h5{
    color: #fff;
    font-weight: 700;
    text-align: center;
    margin-top: 30px;
}
.hr_valor{
    width: 50px;
    border-top: 3px solid #ffc815;
}
