.test{
    color: #f1592a;
    /*danger*/
    background-color: #ffcb08;
    /*warning*/
    border-color: #0e76bc;
    /*primary*/
}
p h1 h2 h4{
    font-family: 'Ibarra Real Nova', serif;
    font-size: 40px;
    color: #000;
    
}

.text-col{
    color: purple;
}
.icon{
    color: #127ba3;
}

.h-full{
    min-height: 100vh;
}

.top-header{
    position: fixed;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 1010;
}

.bg-color{
    background-color: #f7f6f5;
;
}

.home{
    min-height: 100vh;
    background-image: url(../img/bg-home.png);
    background-size: 100%;
    /*background-attachment: fixed;*/
    background-repeat: no-repeat;
    background-position: bottom;
}
.nav-item.active a{
    color: #0e76bc !important;
}
.navbar-brand{
    padding:0;
}

@keyframes bb {
    from{
        border-bottom-color: transparent;
    }to{
         border-bottom-color: #343a40;
     }
}

.scroll-to-top{
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    animation: aa 1s ease-in-out;
    background-color: #127ba3;
    border-radius: 0.25rem;
}
@keyframes aa {
    from{
        transform: translateY(150px);
    }to{
         transform: translateY(0);
     }
}

