:root {
    --navbarHeight: 70px;
    --navbarBoxShadow: 0px 5px 5px #1a1a1a;
}

.navbar {
    box-shadow: var(--navbarBoxShadow)
}

.navigation {
    box-shadow: var(--navbarBoxShadow);
    background-color: var(--smplr-navbar-color);
    color: var(--smplr-text);
    z-index: 999;
}

.navigation-scrolling {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    display: none;
    z-index: 9999999;
}

.navigation-mobile {
    display: none;
}

.navigation-mobile .navbar-brand {
    padding: 15px;
}

.navigation-content {
    width: 1200px;
    margin: auto;
}

.nav-header {
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.expander-area {
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 32px;
    padding: 30px;
}

.navigation nav {
    display: flex;
    align-content: center;
    justify-content: end;
    align-items: center;
    justify-items: center;
    flex-wrap: wrap;
}

.navigation ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
}

.navigation ul li {
    display: inline-block;
    padding: 0px 10px;
    font-size: 15px;
    color: #1a1a1a;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.navigation ul li a {
    color: var(--smplr-text);
    text-decoration: none;
    transition: 1s;
}

.navigation ul li:hover ul {
    display: flex;
}

.navigation ul li ul {
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: 9999;
    background-color: white;
    padding: 15px;
    min-width: 150px;
    border-radius: 5px;
    border: solid thin var(--bs-light);
    display: none;
}

.navigation ul li a:hover {
    background-image: var(--smplr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}