/* Made by KodeWeb.net */
/* Imports and config */
:root {
    --navbar-padding: 10px 20px;
    --navbar-text-color: #fff;
    --navbar-text-color-fixed: #242424;
    --navbar-text-color-secondary: #3EACC4;
    --navbar-bg: linear-gradient(180deg, rgba(000, 000, 000, 0.6), rgba(000, 000, 000, 0));
}

.nav {
    position: fixed;
    width: 100%;
    z-index: 10;
}

.navbar {
    padding: var(--navbar-padding);
    background: var(--navbar-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .2s ease-in-out;
}

.navbar.scrolled {
    background: #fff;
}

.navbar.scrolled .nav-item {
    color: var(--navbar-text-color-fixed)
}

.nav-branding {
    display: flex;
    align-items: center;
}

.nav-logo .cls-2 {
    transition: fill .3s ease-in-out;
    fill: #fff;
}

.navbar.scrolled .nav-logo .cls-2 {
    fill: #2e3f55;
}

.nav-items {
    padding: 0 20px;
}

.nav-item {
    display: inline-block;
    margin: 0 10px;
    font-size: 17px;
    font-weight: 400;
    color: var(--navbar-text-color);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.nav-item:hover {
    color: var(--navbar-text-color-secondary);
}

.nav-btn {
    margin-left: 5rem;
}

/* Mobile Hamburger Menu */
.nav-menu {
    display: none;
}

.hamburger {
    stroke: white;
}

@media screen and (max-width: 65em) {
    .nav-logo {
        width: 215px;
    }

    .nav-items {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    /* Mobile Hamburger Menu */
    .nav-menu {
        display: block;
    }
}