/*SECTION TITULO INTERNA*/
.sect_title_interna {
    padding: 50px 0;
    padding-bottom: 120px;
    background-image: url(../../../../public/img/fondo/fondo-contacto.jpg);
    background-size: cover;
    background-position: center;
    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 CONTACTO ******************************/
.sect_contacto{
	padding: 80px 0;
}
.form_contacto .input_text{
    width: 100%;
    display: block;
    padding: 15px;
    border-radius: 5px;
    border: 0;
    box-shadow: 0px 2px 5px #bdbdbd;
    margin-bottom: 15px;
}
.form_contacto .input_text:focus{
    outline: none;
}
.form_contacto .txt_area{
    width: 100%;
    border: 0;
    border-radius: 5px;
    padding: 15px;
    min-height: 150px;
    box-shadow: 0px 2px 5px #bdbdbd;
}
.form_contacto .input_select{
    width: 100%;
    display: block;
    padding: 15px;
    border-radius: 5px;
    border: 0;
    margin-bottom: 15px;
    min-height: 54px;
    box-shadow: 0px 2px 5px #bdbdbd;
}
.form_contacto .txt_area:focus{
    outline: none;
}
.form_contacto .btn_enviar{
    display: block;
    padding: 20px;
    background: #ffc815;
    width: 100%;
    border: 0;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.form_contacto .btn_enviar:hover{
    background: #04172a;
    color: #ffffff;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.form_contacto .btn_enviar:focus{
    outline: none;
}
/**/
.list_contacto {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.list_contacto>li {
    margin-bottom: 30px;
}
.list_contacto>li h4 {
    color: #04172a;
}
.list_contacto>li a {
    color: #848484;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.list_contacto>li a:hover {
    color: #ffc815;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}

@media(max-width: 767px){
    .form_contacto{
        margin-bottom: 50px;
    }
}