
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-VariableFont_opsz\,wght.ttf') format('truetype');
    font-weight: 100 900; /* Range for variable font */
    font-style: normal;
    font-display: swap;
  }
  
body {
    background-color: #f8f9fa;
    font-family: 'Inter', sans-serif;
}

.bg-brand-yellow {
    background-color: #FCD535 !important;
}
.bg-brand-yellow:hover {
    background-color: #f5c334 !important;
}

.text-brand-navy {
    color: #0f172a !important;
}

.bg-brand-navy {
    background-color: #0f172a !important;
}

.navbar {
    height: 70px;
}

#navbarNav {
    background-color: white;
}
.nav-link{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgb(55 65 81 /80) !important;
}
.nav-link:hover{
    color: #f1b91f !important;
}
.rounded-xl {
    border-radius: 1rem !important;
}
.btn-login,.btn-download{
    border-radius: 10px !important;
}
/* Desktop: remove background */
@media (min-width: 992px) {
    #navbarNav {
        background-color: transparent !important;
    }
}
/* for navbar mobile view  */
@media (max-width: 991px) {
    .navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        z-index: 9999;
    }
}