body{
    font-family: "forma-djr-micro", sans-serif;
    font-weight: 400;
    font-style: normal;

}
.star-rating svg {
    opacity: 0;
    transform: scale(0.5);
    animation: fadeInGrow 0.5s ease forwards;
}
.star-rating svg:nth-child(1) {
    animation-delay: 0s;
}
.star-rating svg:nth-child(2) {
    animation-delay: 0.1s;
}
.star-rating svg:nth-child(3) {
    animation-delay: 0.2s;
}
.star-rating svg:nth-child(4) {
    animation-delay: 0.3s;
}
.star-rating svg:nth-child(5) {
    animation-delay: 0.4s;
}
.media-wrap{border: none !important;}
@keyframes fadeInGrow {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.nav-link{color:#1c75bc !important;}
.icon-link{color:#1c75bc !important;}
.btn-primary{background-color:#1c75bc !important;}
/* Open dropdown on hover for devices that support hover (desktop) */
@media (hover: hover) and (pointer: fine){
    .navbar .dropdown:hover > .dropdown-menu{
        display: block;
        margin-top: 0; /* align with toggle */
    }
    .navbar .dropdown-toggle.show + .dropdown-menu{ display:block; }
}