@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html, body{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    font-size: 14px;
}
body.overlay{
	position: relative;
	-webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
body.overlay:before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .7;
    z-index: 25;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/***************************************************************************** INTER HEADER *********************************************************************************/
.conten_nav{
    position: absolute;
    width: 100%;
    z-index: 10;
    background: transparent;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.conten_nav:before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8));
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8));
    background: linear-gradient(to top, rgba(255, 255, 255, 0), rgb(0 0 0 / 80%));
    z-index: -1;
}
.conten_nav.head-navfixed{
    position: fixed;
    width: 100%;
    z-index: 30;
    top: 0;
    background: #fff;
    box-shadow: -2px 5px 5px rgb(136 136 136 / 10%);
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.conten_nav.head-navfixed:before{
    opacity: 0;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.flex_menu_b{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}
/**/
.flex_menu_b .flex_logo{
    width: 250px;
    margin-top: 5px;
    position: relative;
}
.flex_menu_b .flex_logo img{
    position: relative;
    z-index: 2;
}
.conten_nav .logo_second{
    display: none;
}
.conten_nav.head-navfixed .logo_first{
    display: none;
}
.conten_nav.head-navfixed .logo_second{
    display: block;
}
/**/
.flex_menu_b .flex_menu_main{
    width: calc(100% - 250px);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
}
.flex_menu_b .flex_menu_main>ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.flex_menu_b .flex_menu_main>ul>li{
    display: inline-block;
    position: relative;
}
.flex_menu_b .flex_menu_main>ul>li>a{
    display: block;
    color: #fff;
    padding: 39px 10px;
    font-size: 15px;
    text-decoration: none;
    font-weight: 700;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.flex_menu_b .flex_menu_main>ul>li>a:hover,
.flex_menu_b .flex_menu_main>ul>li>a.active{
    color: #fad90e;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.conten_nav.head-navfixed .flex_menu_b .flex_menu_main>ul>li>a{
    color: #000;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.flex_menu_b .flex_contact{
    width: 150px;
}
.flex_menu_b .flex_contact a{
    display: block;
    padding: 15px 20px;
        color: #022c69;
    background: #e8f2f7;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.flex_menu_b .flex_contact a:hover{
    color: #fff;
    background: #f7a301;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/*DESPLEGABLE MENU */
.li_dropdown > ul {
    position: absolute;
    width: 200px;
    left: 0;
    top: 90%;
    right: 0;
    margin: 0 auto;
    transform: translate(-20%, 0px);
    padding-left: 0;
    z-index: -9;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    background: #ffffff none repeat scroll 0 0;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    overflow: hidden;
    -webkit-box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.175);
    -moz-box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.175);
    box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.175);
    opacity: 0;
    list-style: none;
}
.li_dropdown:hover ul {
    visibility: visible;
    z-index: 9;
    opacity: 1;
    top: 100%;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.li_dropdown>ul>li>a{
    padding: 10px;
    text-decoration: none;
    color: #000232;
    font-weight: 600;
    font-size: 15px;
    z-index: 11;
    text-decoration: none;
    position: relative;
    display: block;
    text-align: center;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.li_dropdown ul>li:before{
    content: "";
    position: absolute;
    top: 55%;
    left: -19%;
    width: 0%;
    height: 0%;
    background-color: #fff;
    z-index: -1;
    transition: all ease 500ms;
}
.li_dropdown ul>li:hover a {
    background: #f0f4fb;
    color: #00315a;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/******/
#btn_wsp{
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 10px;
    color: #fff;
    text-align: center;
    background: #3dcd30;
    z-index: 30;
    font-size: 35px;
    overflow: visible;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
#btn_wsp::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, transform .3s;
    transition: opacity .3s, transform .3s, -webkit-transform .3s;
    -webkit-animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: -1;
}
#btn_wsp:hover{
    background: rgb(0 2 50);
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
@keyframes pulse-animation{
    0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}
    50%{opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}
    100%{opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}
}
/**** REDES FIXED ****/
.list_redes_fixed{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    position: fixed;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 20;
}
.list_redes_fixed>li{
    width: 50px;
    height: 50px;
}
.list_redes_fixed>li>a{
    display: block;
    width: 50px;
    height: 100%;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.list_redes_fixed>li>a:hover{
    width: 60px;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.list_redes_fixed>li>a.facebook{
    background-color: #3b5998;
}
.list_redes_fixed>li>a.instagram{
    background-image: linear-gradient(60deg, #F9C556, #F97621, #EA484C, #D72F78, #A93AB5, #5B62D1);
}
/************** MENU CELULAR **************/
#toggle_cel{
    display: none;
    color: #ffffff;
    font-size: 35px;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
#close_menu_cel{
    position: absolute;
    top: 0px;
    right: 5px;
    font-size: 25px;
    color: #e8f2f7;
}
.conten_nav.head-navfixed #toggle_cel{
    color: #1858a4;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.menu_celular{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: 300px;
    height: 100%;
    background: #00346f;
    box-shadow: 0px 0px 16px 9px rgb(0 0 0 / 30%);
    -webkit-transform: translate(-100%,0);
    -ms-transform: translate(-100%,0);
    -o-transform: translate(-100%,0);
    transform: translate(-100%,0);
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.menu_celular.open{
    -webkit-transform: translate(0%,0);
    -ms-transform: translate(0%,0);
    -o-transform: translate(0%,0);
    transform: translate(0%,0);
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.menu_celular_head{
    position: relative;
}
.menu_celular_head img{
    width: 100%;
    padding: 20px;
}
/**/
.menu_celular_body h5{
    background: #ffa801;
    color: #ffffff;
    font-weight: 700;
    padding: 10px;
    margin-bottom: 0;
}
.menu_celular_body ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    padding: 20px;
}
.menu_celular_body>ul>li{
    margin-bottom: 15px;
}
.menu_celular_body>ul>li>a{
    display: block;
    padding: 15px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 3px;
    /* border-bottom: 1px solid rgb(204 204 204 / 53%); */
    text-decoration: none;
    position: relative;
}
.menu_celular_body>ul>li>a.active{
    background: #e8f2f7;
    color: #022c69;
}
.menu_celular_body>ul>li>a svg{
    float: right;
    background: #fff;
    color: #fba501;
    width: 40px !important;
    height: 40px;
    /* font-size: 15px; */
    padding: 10px;
    border-radius: 50%;
    margin-top: -7px;
}
/**/
.menu_celular_body .submenu{
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}
.menu_celular_body .submenu>li>a{
    display: block;
    background: #efefef;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    padding: 8px;
    border-bottom: 1px dashed #ccc;
}
/**/
.menu_celular_body .submenu .sub_sub_categoria>li>a{
    display: block;
    padding: 5px 10px;
    color: #000;
}
/**/
/*****/
@media(max-width: 1199px){
    .flex_menu_b .flex_menu_main>ul>li>a {
        font-size: 13px;
    }
}
@media(max-width: 991px){
    #toggle_cel{
        display: block;
    }
    .flex_menu_main>ul{
        display: none;
    }
    .flex_menu_b {
        padding: 24px 0px;
    }
    .order1{
        -moz-order: 1;
        -webkit-order: 1;
        order: 1;
    }
    .order2{
        -moz-order: 2;
        -webkit-order: 2;
        order: 2;
    }
    .order3{
        -moz-order: 3;
        -webkit-order: 3;
        order: 3;
    }
    .order4{
        -moz-order: 4;
        -webkit-order: 4;
        order: 4;
    }
}
@media(max-width: 500px){
    .flex_contact>a span{
        display: none;
    }
    .flex_menu_b .flex_contact {
        width: 70px;
    }
    .flex_menu_b .flex_menu_main {
        width: calc(100% - 250px);
        justify-content: flex-end;
        padding-right: 10px;
    }
}
/*************************************************************************** END INTER HEADER *******************************************************************************/


/***************************************************************************** TITLE GENERAL ********************************************************************************/
.sect_title_general{
	padding: 100px 0;
	padding-bottom: 50px;
}
/****/
.content_title_general{
	text-align: center;
}
.content_title_general h2{
	font-size: 60px;
    font-weight: 700;
    color: #00315a;
}
.content_title_general h2.white{
    color: #fff;
}
.content_title_general h5{
    color: #868686;
    font-size: 22px;
}
.content_title_general h5.white{
    color: #fff;
}
/******/
@media(max-width: 991px){
    .sect_title_general{
        padding-top: 50px;
    }
    .content_title_general h2 {
        font-size: 40px;
    }
}
@media(max-width: 767px){
    .content_title_general h2 {
        font-size: 30px;
    }
}
/*************************************************************************** END TITLE GENERAL ******************************************************************************/


/***************************************************************************** INTER FOOTER *********************************************************************************/
.sect_main{
        position: relative;
    padding: 50px 0;
    padding-top: 300px;
    background-image: url(../../../../public/img/fondo/fondo-footer.jpg);
    background-size: cover;
    background-position: center;
}
/******/
.sect_main_center{
    position: relative;
    background: #00315a;
    padding: 50px 0;
}
.sect_main_center:before{
    content: "";
    position: absolute;
    width: 100%;
    max-width: 1149px;
    height: 1px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    background: rgb(255 255 255 / 15%);
}
/******/
.box_footer{
    width: 100%;
    max-width: max-content;
    margin: 0 auto;
}
.box_footer .box_head h5{
    color: #f5f5f5;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
}
.box_footer .list_enlaces{
    list-style: none;
    padding-left: 10px;
}
.box_footer .list_enlaces>li{
    margin-bottom: 15px;
}
.box_footer .list_enlaces>li>a{
    display: block;
    color: #b0b9c1;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.box_footer .list_enlaces>li>a:hover{
    color: #e94e1b;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.box_footer .list_enlaces>li>a span{
    font-size: 10px;
}
/*****/
.list_contacto_footer{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap; 
}
.list_contacto_footer li{
    width: 33.3%;
}
.list_contacto_footer li .item_location{
    margin-bottom: 25px;
}
.list_contacto_footer li .item_phone{
    margin-bottom: 25px;
}
.list_contacto_footer li .item_location,
.list_contacto_footer li .item_phone,
.list_contacto_footer li .item_email{
    position: relative;
}
.list_contacto_footer li .item_location svg,
.list_contacto_footer li .item_phone svg{
    color: #f5f5f5;
    font-size: 50px;
    position: absolute;
    top: 0;
    left: 0;
}

.list_contacto_footer li .item_email svg{
    color: #f5f5f5;
    font-size: 40px;
    position: absolute;
    top: 0;
    left: 0;
}
.list_contacto_footer li .item_location a, .list_contacto_footer li .item_phone a, .list_contacto_footer li .item_email a{
    display: block;
    padding-left: 60px;
    text-decoration: none;
}
.list_contacto_footer li .item_location a h6,
.list_contacto_footer li .item_phone a h6,
.list_contacto_footer li .item_email a h6{
    color: #ffffff;
    font-weight: 700;
}
.list_contacto_footer li .item_location a p,
.list_contacto_footer li .item_phone a p,
.list_contacto_footer li .item_email a p{
    color: #ffffff;
    margin-bottom: 5px;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.list_contacto_footer li .item_location a:hover p,
.list_contacto_footer li .item_phone a:hover p,
.list_contacto_footer li .item_email a:hover p{
    color: #e94e1b;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/******/
.list_destacados{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.list_destacados>li{
    position: relative;
    padding-left: 120px;
    margin-bottom: 30px;
}
.list_destacados>li>a>img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    border-radius: 10px;
}
.list_destacados>li>a{
    text-decoration: none;
}
.list_destacados>li>a .content_destacados h6{
    color: #ffffff;
}
.list_destacados>li>a .content_destacados span{
    display: inline-block;
    padding: 2px 10px;
    color: #fff;
    background: #fddb0c;
    border-radius: 3px;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.list_destacados>li>a:hover .content_destacados span{
    background: #e94e1b;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/*** SECT SIGN***/
.sect_sign{
    padding: 30px 0;
    background: #00315a;
    position: relative;
}
/**/
.p_rights{
    margin-bottom: 0;
    color: #fff;
}
.logo_footer img{
    max-width: 150px;
}
.go_top{
    text-align: right;
}
.go_top a{
    display: block;
    background: #ffffff;
    padding: 5px;
    text-align: center;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 40px;
    margin-left: auto;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.go_top a:hover{
    background: #5a3733;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/*****/
.list_redes_foot{
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}
.list_redes_foot>li{
    display: inline-block;
    margin: 0 10px;
}
.list_redes_foot>li>a{
    color: #fff;
    display: block;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/*****/
@media(max-width: 991px){
    .order1{
        -webkit-order: 1;
        -moz-order: 1;
        -ms-order: 1;
        -o-order: 1;
        order: 1;
    }
    .order2{
        -webkit-order: 2;
        -moz-order: 2;
        -ms-order: 2;
        -o-order: 2;
        order: 2;
    }
    .order3{
        -webkit-order: 3;
        -moz-order: 3;
        -ms-order: 3;
        -o-order: 3;
        order: 3;
    }
    .box_footer{
        margin-bottom: 50px;
    }
}
@media(max-width: 767px){
    .logo_footer{
        text-align: center;
        margin-bottom: 20px;
    }
    .go_top a {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 30;
    }
    .p_rights {
        padding: 0 50px;
    }
    .list_contacto_footer li {
        width: 100%;
    }
}
@media(max-width: 575px){
    .box_footer {
        margin-left: 0;
    }
}

/*************************************************************************** END INTER FOOTER *******************************************************************************/