.service-list {
    list-style: none;
    padding: 0;
}


.service-list li {
    font-size: 1em;
    /* margin: 10px 0; */
    display: flex;
    align-items: center;
}

/* .service-list li:before {
    content: '➔';
    padding: 5px;
    margin-right: 10px;
    color: #01250d;
    font-size: 1em;
    background-color: #96ff00;
    border-radius: 50%;
} */

#footer {
    color: white;
    background-color: #141900;
    /* background-image: url(/assets/images/bg-footer.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#footer .logo-footer {
    width: 70%;
}

#footer p {
    font-weight: 500;
    font-size: 1em;
    text-align: left;
}

#footer p span {
    color: #b4ff3f;
    font-weight: bold;
}

#footer h5 {
    font-size: 1.5em;
    font-weight: bolder;
}

#footer a {
    color: #fff;
    font-weight: 300;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* #footer a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #96ff00;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
} */

#footer a:hover {
    color: #96ff00;
    transform: scale(1.05);
}

#footer a:hover:before {
    visibility: visible;
    width: 100%;
}

#footer .logo-footer-t {
    width: 100%;
    height: auto;
}

@media only screen and (max-width:500px) {
    #footer .logo-footer-t {
        width: 35%;
    }
}