.nav-link {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #000000;
}

.navbar-nav {
    width: 100%;
}

.navbar {
    box-shadow: none;
}

.user-link {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    border-radius: 6px;
    font-weight: 500;
}

.user-link:hover {
    color: lightblue;
}

.user-link-left {
    background-color: #000000;
}

.user-link-right {
    background-color: #2AACF5;
}

.user-link-text {
    color: white;
}

.dropdown-text {
font-weight: bold;
}

.dropdown-item:hover {
color: #64A3F7;
}

.ekcolab-logo-span {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: black;
}

.navbar-mobile {
    display: none;
}

.white-logo {
    width: 150px;
    height: 89px;
    margin-left: -20px;
}

.white-hero-text {
    color: white;
}


/* Above 1024 < 1920 */
@media only screen and (max-width: 1919px) {
    .ekcolab-logo-span, .nav-link  {
        font-size: 15px;
    }

}

/* < 768 */
@media only screen and (max-width: 768px) {

    .navbar-toggler {
        float: right;

    }

    .navbar-nav {
        display: inline-block;

    }

    .user-link {
        margin-top: 10px;
        display: flex;
        justify-content: center;
    }

    .navbar-pc {
        display: none;
    }

    .navbar-mobile {
    display: inline;
}

}