/*** Head ***/
.ancla{
    position: absolute;
    top: -85px;
    padding-top: 85px;
}
header{
    width: 100%;
    padding: 10px 0;
    position: fixed;
    top: 0;
    background: #0D1821;
    z-index: 100;
    box-sizing: border-box;
}
.box_head{
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    height: auto;
}
.cont_logo{
    width: 110px;
    float: left;
}
/*-----------*/
.logo-nav {
    position: relative;
}
.logo-nav > .fa {display: none}
.nav-two {
    float: right;
    position: relative;
    margin: 0;
    top: 15px;
    right: 0;
}
.nav-two li {
    /*height: 70px;
    line-height: 70px;*/
    display: inline-block;
    padding: 0 10px 0 10px;
    -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: 'proxima_novasemibold';
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color:#fff;
}
.nav-two li a:hover{
    color: #4486C6;
}
@media(max-width: 1080px) {
    .cont_logo{
        width: 90px;
        padding: 10px;
        box-sizing: border-box;
    }
    .nav-two {
        width: 250px;
        float: none;
        position: absolute;
        right:0;
        top: 60px;
        display: none;
    }
    .nav-two li {
        display: block;
        width: 100%;
        background:#4486C6;
        padding: 0;
        border-bottom:1px solid #445AC6;
    }
    .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: 10px;
        color: #fff;
        transition-property: all;
        transition-duration: 0.4s;
    }
    .logo-nav > .fa:hover {
        cursor: pointer;
        color: #4486C6;
    }
}