.list-container .icon-list-icon {
    display: flex;
    align-items: center;
    justify-content: center
}
.list-items .icon-wrapper{
    transition: all 0.4s;
}
.list-container .list-items {
    list-style: none;
    margin: 0;
    padding: 0; 
}
.list-container .list-items li {
    margin: 0;
    padding: 0;
    position: relative;
    align-items: center;
    display: flex; 
}
.icon-list-text{
    transition: all 0.4s;
}
.list-items li:last-child{
    margin: 0!important;
    padding: 0!important;
}
.list-container .list-items li:after {
    bottom: 0;
    display: block;
    position: absolute;
    margin-bottom: -5px; 
    content: "";
}
.list-container .list-items .fa {
    text-align: center; 
}
.list-container .list-items a {
    display: inherit;
    align-items: center;
}
.list-items.inline-items {
    display: flex;
    flex-wrap: wrap; 
}
.list-items.inline-items li:not(:last-child) {
    margin-right: 8px; 
}
.underline-animation{
    position: relative;
}
.underline-animation::before{
    content: '';
    position: absolute;
    bottom: -3px;
    left: auto;
    right: 0;
    height: 2px;
    width: 0;
    background-color: #fff;
    transition: all 0.3s ease;
}

.list-items li:hover .underline-animation::before {
    left: 0;
    right: auto;
    width: 100%;
}