.img-icon:hover{
    transition: all .4s ease;
    transform: scale(1.1);
}
.img-icon{
    transition: all .4s ease;
}
.li-hov:hover{
    color: rgb(201, 201, 201) !important;
}
.fa-arrow-left:hover, .fa-arrow-right:hover{
    transition: all .2s ease;
    transform: scale(1.1);
}
/* ANIMACAO LINHAS */
.anim-underline {
    transition: all 0.30s ease-out;
}

.anim-underline:hover {
    transform: scale(1.1);
    transition: all 0.30s ease-out;
}


/* Media query que troca de tema conforme a cor que estiver sendo usada pelo navegador*/
@media (prefers-color-scheme: light){
    .bg-dark{
        background-color:  ghostwhite !important;
    }
    .text-white{
        color: black !important;
    }
    .bg-secondary{
        background-color: whitesmoke !important;
    }
    .border-dark{
        border-color: ghostwhite !important;
    }
}