/* =========================================
   NAVBAR
========================================= */

.navbar-wrapper {
    background-color: #070c26;
    width: 100%;
    min-height: 80px;

    display: flex;
    align-items: center;

    padding-top: 10px;
    padding-bottom: 10px;
}

/* Desktop Active Navbar Link */
.navbar-nav .nav-link {
    position: relative;
    color: #fff;
    padding-bottom: 12px;
}

/* Active underline */
.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #2f8cff;
    border-radius: 2px;
}

.desktop-menu .nav-link {
    position: relative;
    color: #fff;
    text-decoration: none;
    padding: 10px 0 !important;
}

/* Active page */
.desktop-menu .nav-link.active {
    color: #fff;
}

.desktop-menu .nav-link.active::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: #1677ff;
    border-radius: 10px;
}
/* =========================================
   LOGO
========================================= */

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand__logo {
    width: 150px;
    height: auto;
    display: block;
}


/* =========================================
   DESKTOP NAVIGATION
========================================= */

.desktop-navigation {
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    /* Space between menu and button */
    gap: 45px;
}


/* =========================================
   MENU
========================================= */

.desktop-menu {
    display: flex;
    align-items: center;
}

.desktop-menu .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 34px;
    margin: 0;
    padding: 0;
}

.desktop-menu .nav-item {
    white-space: nowrap;
}

.desktop-menu .nav-link {
    position: relative;

    padding: 10px 0 !important;

    color: #ffffff;
    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition: 0.3s ease;
}


/* Active underline */
.desktop-menu .nav-link.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: #1677ff;

    border-radius: 10px;
}


/* Hover */
.desktop-menu .nav-link:hover {
    color: #ffffff;
}


/* =========================================
   CTA
========================================= */

.desktop-cta {
    flex-shrink: 0;
}

.desktop-cta .btn-luma-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    white-space: nowrap;
}


/* =========================================
   MOBILE TOGGLE
========================================= */

.navbar-toggler {
    display: none;
    color: #ffffff;
}

.navbar-toggler i {
    color: #ffffff;
}


/* =========================================
   1280px AND BELOW
========================================= */

@media (max-width: 1280px) {

    .desktop-navigation {
        display: none;
    }

    .desktop-cta{
        display: none;
    }

    .navbar-toggler {
        display: block;
        margin-left: auto;
        padding: 0;
    }

    .brand__logo {
        width: 140px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .navbar-wrapper {
        min-height: 70px;

        padding-left: 15px;
        padding-right: 15px;
    }

    .brand__logo {
        width: 125px;
    }

    .navbar-toggler i {
        font-size: 32px !important;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .brand__logo {
        width: 120px;
    }

    .navbar-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }
}