﻿@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&display=swap');
body {
    font-family: 'Rajdhani', sans-serif !important;
    background-color: #F7F7F7 !important;
}

navbar {
    background-color: #FFFFFF !important;
}

.nav-item {        
    cursor: pointer;   
    border: none;
    color:white !important;
    background-size: 500% 500%;    
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

    .nav-item:hover {
        background-position: 100% 0;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
        color: white !important;
    }

    .nav-item:focus {
        outline: none;
    }

    .nav-item.color-1 {
        color:white !important;
        background-image: linear-gradient(to right, #009245, #FCEE21, #00A8C5, #D9E021);
        /*box-shadow: 0 4px 5px 0 rgba(49, 196, 190, 0.75);*/
    }

    .nav-item.color-2 {
        color: white !important;
        background-image: linear-gradient(to right, #f5ce62, #e43603, #fa7199, #e85a19);
        /*box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75);*/
    }