/* NAVBAR */
.division{
    height: 50%;
    width: 1px;
    vertical-align: middle;
    display: inline-block;
    margin: auto .5vw;
    background-color: #ffffff;
}

a{
    color: #ffffff;
    transition: 0.35s ease-out;
}

a:hover{
    color: white;
    text-decoration: none;
}

a.inactivo{
    color: #ED2729;
}
.row.azul{
    background-color: #073763;
}
.navbar{
    padding: 0;
    font-size: 14px;
    font-weight: bolder;
}

.nav-item{
    padding: 1.5rem 0;
}

.navbar-brand img{
    height: 2vw;
}

.header_top{
    padding: .4vw 0;
}

.header_top span{
    color: #fff;
}

.navbar-brand{
    margin-right: 2vw;
    padding: 0;
}

.nav-item *{
    color: #6b777e;
    outline: none;
}

.nav-item.active *{
    color: #073763;
}

.navbar-nav .nav-item{
    margin: 0 1vw;
}

.navbar-nav .nav-item:first-of-type{
    margin-left: 0;
}

.navbar-nav .nav-item:last-of-type{
    margin-right: 0;
}

.header_drop:hover::after{
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    position: absolute;
    background-color: #073763;
    bottom: 0;
}

.dropdown-item{
    padding: 1rem 1.75rem;
    transition: .15s;
    font-weight: bold;

    transition: 0.2s ease-out;
}


.dropdown-item:hover{
    background-color: rgb(241, 241, 241);
    color: #073763;
}

.dropdown-menu {
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;

    box-shadow:
    0 2.8px 2.2px rgba(0, 0, 0, 0.034),
    0 6.7px 5.3px rgba(0, 0, 0, 0.048),
     0 12.5px 10px rgba(0, 0, 0, 0.06),
    0 22.3px 17.9px rgba(0, 0, 0, 0.072),
     0 41.8px 33.4px rgba(0, 0, 0, 0.072),
     0 100px 80px rgba(0, 0, 0, 0.12)
    ;
}

.navbar_container{
    position: fixed;
    display: block;
    top: 0;
    left: 0%;
    z-index: 999999999;
    width: 100%;
    height: auto;
    background-color: #fff;
}

.navbar a{
    -webkit-transition: color 0.3s ease-out;
    -moz-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    -ms-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;

}

.navbar a:hover{
    color: #073763;

    -webkit-transition: color 0.3s ease-out;
    -moz-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    -ms-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;

}

.navbar-toggler-icon{
    background-image: url('../img/menu_movil.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 7vw;
    height: 5vw;
    outline: none;
}

.language_mobile{
    display: none;
}


/*landscape adaptation
@media (max-width: 1450px) {
    .navbar-nav .nav-item{
        font-size: 12px;
    }
}
*/


/* Boton? */

@media (min-width: 992px) {
.btn{
    padding-right: 2rem !important;
    padding-left: 2rem !important;
}

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 992px) {
    .langcontainer{
        display: none !important;
    }  

    .header_top{
        padding: 15px 0 15px 15px;
    }

    .navbar{
        padding: 16px 24px 16px 24px;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .navbar-brand img{
        height: 8vw;
    }

    .dropdown-item:hover{
        background-color: rgba(212, 212, 212, 1);
        color: inherit;
    }

    .header_drop:hover::after{
        display: none;
    }
    .dropdown-menu{
        box-shadow: none;
    }
    .navbar-nav .nav-link{
        font-size: 18px;
    }
    .nav-item{
        padding-bottom: 0;
    }
    .nav-item:first-of-type{
        padding-top: 50px;
    }
    .navbar .btn{
        font-size: 14px !important;
    }
    .language_mobile{
        display: block;
        color: #073763;
        text-align: center;
        font-size: 14px !important;
        padding-top: 20px;
    }
} 

@media only screen and (max-width: 1024px){

}

/* FIN NAVBAR */