.nav li, .nav-mobile li {
    list-style-type: none;
}

.nav li a:hover {
    color: var(--primary-color);
    filter: brightness(2.5);
}
a{
    text-decoration: none;
    color: inherit;
}
button{
    font-size: 1.1em;
    color: #ffffff;
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}
section#services .service {
    overflow-x: hidden;
}
section#services img {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
section#services .service:nth-child(even) img{
    transform: translateX(200px);
}
section#services .service:nth-child(odd) img{
    transform: translateX(-200px);
}
section#services img.animate{
    opacity: 1;
    transform: initial !important;
}















section#reviews .review{
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
section#reviews .review:nth-child(1){
    transition-delay: 0s;
}
section#reviews .review:nth-child(2){
    transition-delay: 0.1s;
}
section#reviews .review:nth-child(3){
    transition-delay: 0.2s;
}
section#reviews .review.animate{
    opacity: initial;
    transform: initial;
}
.text-highlight{
    color: orange;
}

#typed-skills-br{
    display: none;
}