:root,
[data-bs-theme=dark] {
    --bs-body-bg: #40506a;
    --bs-body-bg-rgb: 64, 80, 106;
    --bs-secondary-bg: #36445a;
    --bs-secondary-bg-rgb: 54, 68, 90;
    --bs-tertiary-bg: #2a3950;
    --bs-tertiary-bg-rgb: 42, 57, 80;
    --bs-border-radius: 0;
    --bs-border-color: var(--bs-primary);
    --bs-primary-color-contrast: #2a3950;
}

body {
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
}

.btn {
    font-weight: bold;
}

h1 {
    position: relative;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
}

h1::after {
    position: absolute;
    left: 5%;
    right: 25%;
    height: 4px;
    bottom: -10px;
    border-radius: 2px;
    background-color: var(--bs-primary);
    content: "";
    clear: both;
}

.header {
    position: relative;
}

.lime-home .header {
    min-height: 650px;
}

.lime-home .header-title {
    margin-top: 7rem;
}

.navbar .navbar-nav .nav-link.active,
.navbar .dropdown-toggle::after {
    color: var(--bs-primary);
}

.navbar .nav-item {
    margin-right: 0.25rem;
    margin-left: 0.25rem;
}

.navbar .nav-item .nav-link {
    color: #fff;
    text-transform: uppercase;
}

.footer {
    position: relative;
}