/*SECTION TITULO INTERNA*/
.sect_title_interna {
    padding: 50px 0;
    padding-bottom: 120px;
    background-image: url(../../../../public/img/galeria/galeria1.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 SERVICIOS ********************************************/
.sect_servicios{
    padding: 80px 0;
}
.sect_servicios .title_general{
    margin-bottom: 60px;    
}
.title_service h2{
    margin-bottom: 30px;
    color: #04172a;
    font-weight: 700;   
}
.nav-tabs .nav-item {
    margin-bottom: -1px;
    width: 100%;
}
.list_services{
    box-shadow: 0px 0px 15px #d4d4d4;
}
.list_services li a{
    padding: 20px;
    border-bottom: 1px solid #e2e2e2 !important;
    color: #28221a;
    font-weight: 700;
}
.list_services li a.active{
    color: #ffc815 !important;
    background-color: #04172a !important;
}
.descripcion{
    padding-top: 30px;
    text-align: justify;
    color: #848484;
    font-weight: 300;
}
.box_fb{
    margin-top: 25px;
}
/*

/**
.box_servicios{
    overflow: hidden;
    display: block;
    position: relative;
}
.box_servicios svg {
    position: absolute;
    opacity: 0.8;
    top: -1px;
    z-index: 10;
    width: 100%;
    height: 100%;
}
.box_servicios svg path {
    fill: #fff;
}
/*
/*
.box_servicios .title{
    position: absolute;
    top: 21px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    z-index: 20;
    color: #000;
    font-weight: 700;
    -webkit-transition: all cubic-bezier(0.25, 0.1, 0.3, 0.71) 150ms;
    -o-transition: all cubic-bezier(0.25, 0.1, 0.3, 0.71) 150ms;
    transition: all cubic-bezier(0.25, 0.1, 0.3, 0.71) 150ms;
}
.box_servicios:hover .title{
    top: -20px;
    -webkit-transition: all cubic-bezier(0.25, 0.1, 0.3, 0.71) 150ms;
    -o-transition: all cubic-bezier(0.25, 0.1, 0.3, 0.71) 150ms;
    transition: all cubic-bezier(0.25, 0.1, 0.3, 0.71) 150ms;
}
/*
.box_servicios .box_img{
    position: relative;
    display: block;
}
.box_servicios .box_img:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.box_servicios:hover .box_img:before{
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
    opacity: .4;  
}