
.lead-1{
    color: aqua;

}

.lead-2{
    color: rgb(7, 17, 53);
    font-size: large;
}
.lead-3{
    color: aliceblue;
    font-size: large;
}
.lead-4{
    color: aliceblue;
}
@keyframes slideInleft{
    from{
        transform: translateX(300px);

    }
    to{
        transform: translateX(0);
    }
}
.lead,.lead-1,.text-white{
    animation-name: slideInleft ;
    animation-duration: 0.9s ;
    animation-delay:0s ;
    animation-timing-function: ease-in-out ;
    animation-fill-mode:none ;
    animation-iteration-count:1 ;

}
.orange-light-bg{
    background-color: rgba(228, 158, 30, 0.658);

}
.card{
    transform: translateX(100px);
    transition: 150ms;
}
.card.show{
    transform: translateX(0);
    opacity: 1;
}
.red-light-bg{
    background-color: rgb(247, 166, 16);

}
.black-light-bg{
    background-color: rgba(0, 0, 0, 0.815);
}
.blue-light-bg{
    background-color:rgb(27, 27, 226)
}
.img-bg{
background-color: rgb(223, 138, 35);
}
.gray-black-bg{
    background-color: rgba(212, 129, 21, 0.89);
}
.gradient-white-right{
    background-color: aliceblue;
}

