@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Trade+Winds&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Signika:wght@700&display=swap');
html, body{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Signika', 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;
}



/******/
#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)}
}
/***************************************************************************** INTER HEADER *********************************************************************************/
/*TOP HEADER*/
.sect_top_header{
    background: #3f9e21;
}
.sect_top_header .list_contact_top_header,
.sect_top_header .list_icons_top_header{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.sect_top_header .list_contact_top_header>li,
.sect_top_header .list_icons_top_header>li{
    display: inline-block;
    margin-right: 25px;
    position: relative;
}
.sect_top_header .list_contact_top_header>li>a{
    display: block;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.sect_top_header .list_contact_top_header>li>a:hover{
    color: #f4811f;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.sect_top_header .list_contact_top_header>li>a>svg{
    color: #ffffff;
}
/**/
.sect_top_header .list_icons_top_header{
    text-align: right;
}
.sect_top_header .list_icons_top_header>li>a{
    font-size: 17px;
    color: #ffffff;
    display: block;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -moz-transition: all ease 500ms;
    -ms-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.sect_top_header .list_icons_top_header>li>a:hover{
    color: #fea701;
    /* background: #ffa801;*/
    -webkit-transition: all ease 500ms;
    -moz-transition: all ease 500ms;
    -ms-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.sect_top_header .list_icons_top_header>li.whatsapp>a{
    background: #aac300;
    color: #fff;
    font-weight: 600;
    padding: 10px 15px;
}
.sect_top_header .list_icons_top_header>li.whatsapp>a:hover{
    background: #fff;
    color: #000;
}
/**/
@media(max-width: 767px){
    .sect_top_header .list_icons_top_header>li{
        display: none;
    }
    .sect_top_header .list_icons_top_header>li.whatsapp{
        display: inline-block;
    }
    .sect_top_header .list_contact_top_header>li>a span{
        display: none;
    }
}
/*END TOP HEADER*/
/**/
.conten_nav{
   /*-webkit-box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 0 5px rgba(0,0,0,.2);
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    background-image: url(../../../../public/img/fondo/fondonature.jpg);*/
    position: relative;
    z-index: 10;
   /* background-size: cover;*/
    /*background-position: center;*/
    /*border-top: 2px solid #aac300;*/
    border-bottom: 4px solid #aac300;
    background:#ffffff;
}
/*.conten_nav:before{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background: black;
}*/
/**/
.flex_menu_b{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    /*background: #fff;*/
}
.conten_nav.head-navfixed{
    position: fixed;
    width: 100%;
    z-index: 30;
    top: 0;
    border-top: 0;
}
/**/
.flex_menu_b .flex_logo{
    width: 174px;
    /*margin-top: 5px;*/
    position: relative;
}
.flex_menu_b .flex_logo img{
    position: relative;
    z-index: 2;
}
/**/
.flex_menu_b .flex_menu_main{
    width: calc(100% - 324px);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    font-family: 'Balsamiq Sans', cursive;
}
.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;
}
.flex_menu_b .flex_menu_main>ul>li>a{
    display: block;
    color: #3f9e21;
    padding: 39px 15px;
    font-size: 18px;
    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{
    color: #aac300;
    -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: #ffffff;
    background: #aac300;
    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: #3f9e21;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/****/
/************** MENU CELULAR **************/
#toggle_cel{
    display: none;
    font-size: 30px;
    color: #aac300;
}
#close_menu_cel{
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 25px;
    color: #aac300;
}
/**/
.menu_celular{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    height: 100%;
    background: #fff;
    -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{
    width: 300px;
    box-shadow: 5px 1px 5px rgb(0 0 0 / 22%);
    -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%;
    max-width: 300px;
    padding: 20px;
}
/**/
.menu_celular_body h5{
    background: #aac300;
    color: #fff;
    font-weight: 700;
    padding: 10px;
    margin-bottom: 0;
}
.menu_celular_body ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.menu_celular_body>ul>li>a{
    display: block;
    padding: 15px;
    color: #000;
    font-weight: 700;
    border-bottom: 1px solid rgb(204 204 204 / 53%);
    text-decoration: none;
    font-family: 'Balsamiq Sans', cursive;
}
/**/
.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: 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{
    position: relative;
    text-align: center;
}
/*.content_title_general:before{
        content: "";
    position: absolute;
    top: -90px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 300px;
    height: 186px;
    background-image: url(../../../../public/img/logo/favicon-grande.png);
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: .3;
}*/
/**/
.content_title_general h2{
    font-size: 60px;
    font-weight: 700;
    color: #3f9e21;
    font-family: 'Signika', sans-serif;
}
.content_title_general h2.white{
    color: #fff;
}
.content_title_general h5{
    color: #aac300;
    font-size: 22px;
}
.content_title_general h5.white{
    color: #aac300;
}
/*******/
@media(max-width: 991px){
    .sect_title_general{
        padding-top: 50px;
    }
    .content_title_general h2 {
        font-size: 50px;
    }
}
@media(max-width: 767px){
    .content_title_general h2 {
        font-size: 35px;
    }
}
/*************************************************************************** END TITLE GENERAL ******************************************************************************/


/***************************************************************************** INTER FOOTER *********************************************************************************/
.sect_main{ 
    position: relative;
    padding: 100px 0;
    background: #262b2b;
    /*background-image: url(../../../../public/img/fondo/fondo-footer.png);
    background-repeat: no-repeat;
    background-position: right;*/
}
.sect_main:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background-image: url(../../../../public/img/fondo/fondo-footer.png);
    background-repeat: no-repeat;
    background-size: cover;
    top: 0px;
    opacity: 0.2;
}
/******/
.box_footer{
    width: 100%;
    max-width: max-content;
    margin: 0 auto;
}
.box_footer .box_head h5{
    color: #aac300;
    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;
    display: block;
}
.box_footer .list_enlaces>li>a{
    display: block;
    color: #fff;
    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: #c7f1a0;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.box_footer .list_enlaces>li>a span{
    font-size: 10px;
}
/**/
.box_footer .list_redes_foot{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.box_footer .list_redes_foot>li {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 10px;
}
.box_footer .list_redes_foot>li>a {
    display: block;
    color: #f3eddb;
    background: #aac300;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.box_footer .list_redes_foot>li>a:hover{
    background: #ffffff;
    color: #262b2b;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/*****/
.list_contacto{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.list_contacto li .item_location{
    margin-bottom: 25px;
}
.list_contacto li .item_phone{
    margin-bottom: 25px;
}
.list_contacto li .item_location,
.list_contacto li .item_phone,
.list_contacto li .item_email{
    position: relative;
}
.list_contacto li .item_location svg,
.list_contacto li .item_phone svg{
    color: #fff;
    font-size: 50px;
    position: absolute;
    top: 0;
    left: 0;
}

.list_contacto li .item_email svg{
    color: #fff;
    font-size: 40px;
    position: absolute;
    top: 0;
    left: 0;
}
.list_contacto li .item_location a, .list_contacto li .item_phone a, .list_contacto li .item_email a{
    display: block;
    padding-left: 60px;
    text-decoration: none;
}
.list_contacto li .item_location a h6,
.list_contacto li .item_phone a h6,
.list_contacto li .item_email a h6{
    color: #aac300;
    font-weight: 700;
}
.list_contacto li .item_location a p,
.list_contacto li .item_phone a p,
.list_contacto li .item_email a p{
    color: #fff;
    margin-bottom: 5px;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.list_contacto li .item_location a:hover p,
.list_contacto li .item_phone a:hover p,
.list_contacto li .item_mail a:hover p{
    color: #c7f1a0;
    -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: #fff;
}
.list_destacados>li>a .content_destacados span{
    display: inline-block;
    padding: 2px 10px;
    color: #fff;
    background: rgb(170 195 0);
    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: #fff;
    color: #262b2b;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/*** SECT SIGN***/
.sect_sign{
    padding: 20px 0;
    background: #3f9e21;
    position: relative;
}
/**/
.p_rights{
    margin-bottom: 0;
    text-align: left;
    font-size: 15px;
    color: white;
}
.logo_footer img{
    max-width: 150px;
}
.go_top{
    text-align: right;
}
.go_top a{
    display: block;
    background: #57905c;
    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: #ac8c2f;
    -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;
    }
    .sect_main {
        padding: 50px 0;
    }
}
@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;
    }
    .box_footer{
        max-width: inherit;
    }
    .marg_bottom_0{
        margin-bottom: 0;
    }
}


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