:root{
    --color-primario:#009fc2;
}
.open-sans{
    font-family: 'Open Sans Condensed', sans-serif;
}
/*Nav Bar*/
#main-nav{
    flex-wrap: wrap;
    padding: 23px 0;
    background: white;
    box-shadow:
        5px 2px 12px 0 rgba(0, 0, 0, 0.10),
        20px 8px 22px 0 rgba(0, 0, 0, 0.09),
        46px 19px 30px 0 rgba(0, 0, 0, 0.05),
        82px 34px 35px 0 rgba(0, 0, 0, 0.01),
        128px 53px 339px 0 rgba(0, 0, 0, 0);

}

#wrapper-navbar{
    position: relative;
    z-index: 100;
}
.custom_nav{
    max-width: none;
    padding: 0 45px;

}
.custom_nav li a{
    text-transform: uppercase;
    color: #0a0a0a;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0px;
    text-decoration: none;
}
.custom_nav-link1{
    text-decoration: none;
    height: 24px;
    width: 25.5px;
    color: black;
    border: 1px solid black;
    font-weight: 500;
}
.active_lang{
    background-color: black;
    color: white !important;
}
.navbar-expand-lg .navbar-nav .nav-link{
    padding: 0;
}
#main-menu li {
    position: relative;
    padding: 0 10px;
}

#main-menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%; /* Ajusta el tamaño de la línea */
    width: 1px;
    background-color: rgba(0, 0, 0, 0.5);
}

.custom_nav .active a, .custom_nav li a:hover{
    color: var(--color-primario) ;
}
.custom_nav .active a{
    font-weight: 700;
}


.custom_nav li a:last-child {
    border-right: none;
}
.navbar .custom_nav--buttom{
    background-color: var(--color-primario);
    padding: 4px 18px 4px 18px !important;
    text-align: center;
    display: inline-block;
    margin-right: 9px;
    text-decoration: none;
    height: 44px;
}


@media (max-width: 767px) {
    .navbar-collapse{
        width: 100%;
        background: white;
        margin: 0;
        padding: 0 24px;
        position: absolute;
        top: 107px;
        left: 0;
    }
    .navbar-toggler{
        border: none;
    }
    .navbar-toggler-icon{
        background-image: url("https://i.ibb.co/KxXchDg4/bars.png");
    }
    .navbar-brand img{
        height:59px;
    }
}
