/* Navbar */

.navbar {
    padding: 18px 0;
    border-bottom: 1px solid #f0f2f5;
}

.navbar .container {
    display: flex;
    align-items: center;
}


/* Navigation links */

.nav-link {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #24324a;
    margin-left: 28px;
    transition: color .25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #4b6bff;
}


/* Contact button */

.btn-primary-custom {
    background: #5b6cff;
    color: white !important;
    padding: 11px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    transition: all .25s ease;
}

.btn-primary-custom:hover {
    background: #4658e8;
    transform: translateY(-1px);
}


/* Mobile menu */

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}