/*** Head ***/
.ancla{
    position: absolute;
    top: -100px;
    padding-top: 100px;
}
header{
    width: 100%;
    padding: 10px 0;
    position: fixed;
    top: 0;
    z-index: 100;
    box-sizing: border-box;
    background: rgba(32, 32, 32, 0.9);
}
.box_head{
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    height: auto;
}
.cont_logo{
    width: 240px;
    float: left;
}
.box_tels{
    float: right;
    right: 0;
    padding:10px 0 10px 40px;
    border-left: 1px solid #009D00;
    margin-left: 50px;
    margin-top: 7px;
}
.box_tels a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-family: 'open_sanssemibold';
}
.box_tels a:hover{
    color: #009D00;
}
.box_tels img{
    width: 30px;
}
/*-----------*/
.logo-nav {
    position: relative;
}
.logo-nav > .fa {display: none}
.nav-two {
    float: right;
    position: relative;
    margin: 0;
    padding: 30px 10px 0 0; /***Nuevo parametro**/
    /*top: 15px;
    right: 0;*/
}
.nav-two li {
    /*height: 70px;
    line-height: 70px;*/
    display: inline-block;
    padding: 0 30px 0 30px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    box-sizing: border-box;
}
.nav-two li a{
    font-family: 'open_sanssemibold';
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    color:#fff;
}
.nav-two li a:hover{
    color: #009D00;
}
@media(max-width: 1080px) {
    .cont_logo{
        width: 200px;
        box-sizing: border-box;
    }
    .box_tels{
        display: none;
    }
    .nav-two {
        width: 250px;
        float: none;
        position: absolute;
        right:0;
        top: 60px;
        display: none;
        padding: 0 10px 0 0;
    }
    .nav-two li {
        display: block;
        width: 100%;
        background:#009D00;
        padding: 0;
        border-bottom:1px solid #019901;
    }
    .nav-two li a{
        font-weight: normal;
        display: block;
        height: 40px;
        line-height: 40px;
        color: #fff;
        text-align: right;
        padding: 0 25px;
        transition-property: all;
        transition-duration: 0.4s;
    }
    .nav-two li a:hover{
        color: #fff;
        background: #000;
    }
    .nav-two li.slide {
        display: none
    }
    .logo-nav{
        height: 50px;
    }
    .logo-nav > .fa {
        display: block;
        position: absolute;
        right: 20px;
        bottom: 0;
        color: #fff;
        transition-property: all;
        transition-duration: 0.4s;
    }
    .logo-nav > .fa:hover {
        cursor: pointer;
        color: #009D00;
    }
}