
.navbar_underlined {
    height: 60px;
    background: #009cde;
    display: flex;
    justify-content: space-between;
    margin: 30px;
}

.navbar_underlined a{    
    color:#fff;
    text-decoration: none;
    border-right: 2px solid #fff;
    flex:1;
    display: flex;    
    justify-content: center;
    align-items: center;
    font: 16px 'arial';
    min-width: 60px;
    position: relative;
}

.navbar_underlined a:hover:after{
    content:"";
    height: 4px;
    width: 80%;
    background:  #02648e;
    position: absolute;
    bottom:0;
    left:0px;
    right: 0px;
    margin: auto;        
}

.navbar_underlined a:hover{
    background: #fff;
    color: #009cde;
}

/*estilos para el type2*/
.navbar_underlined.type2{
    background: rgb(0, 34, 98);    
}

.navbar_underlined.type2 a{
    border: none;
}

.navbar_underlined.type2 a:hover:after{    
    background:  #00fadd;   
}

.navbar_underlined.type2 a:hover{
    background: rgb(0, 34, 98);
    color: #fff;
}

/*estilos para el type3*/
.navbar_underlined.type3{
    background: #fff;    
    border-bottom: 4px solid rgb(0, 34, 98);
}

.navbar_underlined.type3 a{
    border: none;
    color:#00fadd;
}

.navbar_underlined.type3 a:hover:after{    
    background:  #00fadd;   
    bottom:-4px;
}

.navbar_underlined.type3 a:hover{
    color: #00fadd;
}
