section[id]{
    scroll-margin-top:80px ;
  }
  html{
    scroll-behavior: smooth;
  }
.navbar-toggler-icon{
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(255, 255, 255)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/*--------------------------------------------------------------
---- texto under line 
--------------------------------*/
.nav-link {
    position: relative;
  }
  
  .nav-link::after{
    content: "";
    width: 0;
    height: 4px;
    background-color: yellow;
    position: absolute;
    bottom: 0;
    right: 50%;
    transition: all .5s;
    will-change: width;
  }
  
  .nav-link:hover:after{
    width: 100%;
    right: 0;
  }

@media(max-width:991px){
    .sidebar{
        background-color: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
    }
}