.custom-icon {
    color: #92C80C;
}
.custom-icon::before{
  color: #92C80C;
}
.custom-icon::after{
  color: #92C80C;
}
.underline-effect {
    display: block;
    position: relative;
    padding: 0.2em 0;
  }
  
  /* Fade in */
  .underline-effect::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 0.1em;
    background-color: #92C80C;
    opacity: 0;
    transition: opacity 300ms, transform 300ms;

  }
  
  .underline-effect:hover::after,
  .underline-effect:focus::after {
    opacity: 1;
    transform: translate3d(0, 0.2em, 0);
  }
  li a{
    color: #92C80C;
  }