/*------------------------------------*\
	Logo
\*------------------------------------*/
nav{
    font-family: 'Varela Round', sans-serif;
}
.navbar-brand {
    display: block !important;
    padding-bottom: 0 !important;
}

.navbar-brand .logo, .navbar-brand .logo-alt {
    max-height: 50px;
    display: block;
}

#nav:not(.nav-transparent):not(.fixed-nav) .navbar-brand .logo-alt {
    display: none;
}

#nav.nav-transparent:not(.fixed-nav) .navbar-brand .logo {
    display: none;
}

#nav.fixed-nav .navbar-brand .logo-alt {
    display: none;
}

@media only screen and (max-width: 767px) {
    #nav.nav-transparent .navbar-brand .logo-alt {
        display: none !important;
    }
    #nav.nav-transparent .navbar-brand .logo {
        display: block !important;
    }
}


/*------------------------------------*\
	Navigation
\*------------------------------------*/
.dropdown{
    color: white;
}

#nav {
    padding: 0px 0px;
    background: #FFF;
    -webkit-transition: 0.2s padding;
    transition: 0.2s padding;
    z-index: 999;
}

.navbar{
    position: absolute;
    width: 100%;
}

#nav.navbar {
    border: none;
    border-radius: 0;
    margin-bottom: 0px;
}
/* cuando se le hace el scroll */
#nav.fixed-nav {
    position: fixed;
    left: 0;
    right: 0;
    padding: 0px 0px;
    background-color: #FFF !important;
    border-bottom: 1px solid #EEE;
}
/* texto cuando se hace scroll */
#nav.fixed-nav li a{
    color: #6b7777;
}
#nav.nav-transparent {
    background: transparent;
}
/*barrita de opcion del menu*/
.ml-auto>li>a::after{
    content: "";
    display: block;
    background-color: #10447c;
    height: 2px;
    width: 0%;
    -webkit-transition: 0.2s width;
    transition: 0.2s width;
}
/*cuando se activa opcion en menu*/
.nav-link.active{
    color: #10447c !important;
    font-weight: 400;
}

#nav .ml-auto>li>a:hover:after{
    width: 100%;
}

.nav-link{
    padding: 1.2rem;
    outline: none !important;
}
/*color cuando esta en la vista principal*/
li a{
    color: #ffffff;
}

/*Vista telefono*/
@media (max-width: 1199px) {
    header .navbar .nav-link {
      padding: .5rem 0rem;
    }
    #nav.nav-transparent {
        /* background: transparent; */
        background: #fff;
    }
    li a, .dropdown{
        color: #6b7777;
    }
    .container{
        padding-right: 3px !important;
        padding-left: 5px !important;
    }
  }

  
/*icono del menu responsive*/
.navbar-toggler{
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    color: #10447c !important;  
}
.navbar-toggler:hover{
    /* border: 1px solid #435f7e; */
    color: #435f7e !important;
}