/* Header && Navigation */

/* Side Nav for mobile */
.offcanvas-list {
    list-style-type: none;
}

.offcanvas-list-item {
    background-color: var(--turquoise-faded);
}

.offcanvas-list-item:hover {
    background-color: var(--turquoise-light);
    cursor: pointer;
}

/* Navigation */
a {
    text-decoration: none !important;
    color: black !important;
}

ul {
    list-style-type: none;
}

.dropdown-nav:hover>.dropdown-sub {
    display: block !important;
}

.dropdown-sub {
    z-index: 3; 
    display: none;
    position: absolute;
    border-radius: 5px;
    background-color: white;
}

.dropdown-sub-item {
    border-radius: 5px;
}

.dropdown-sub-item:hover {
    background-color: var(--turquoise-light);
}

/* Footer */
footer {
    min-height: 20vh;
}

.fixed-top {
    box-shadow: 0 10px 10px 0 rgba(0,0,0,.2);
  }