.nav_sticky{
    gap: 10px;
    font-weight: 400;
    font-size: 13px;
    display: flex;
    justify-content: flex-end;
}
.nav_sticky div a{
    padding: 9px;
    box-sizing: border-box;
}
.nav_sticky div a:hover{
    background-color: #ffe3c9;
    border-radius: 20px;
}
.nav_sticky div a.active{
    
    background-color: #ffe3c9;
    border-radius: 20px;
    line-height: 1.4;
}
.menu_sticky {
    display: none;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    z-index: 999;
    background-color: white;
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
}
.menu_link:hover .menu_link.active{
    background-color: #fcecee;
}
[id] {
  scroll-margin-top: 120px;
}
@media (min-width: 1025px) {
    .menu_sticky{
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #dddd;
    }
    .contenedor_sticky{
        margin-right: 20px;
    }
}
@media (min-width: 1440px) {
    
    .contenedor_sticky{
        width: 70%;
        margin-right: 60px;
    }
}