html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    
    margin-bottom: 60px;
}
.navbar {
    background-color: #333;
    overflow: visible;
    position: relative;
    z-index: 1050;
    margin-bottom: 10px;
}
.carousel,
.carousel-item,
.carousel-inner {
    z-index: 1;
    position: relative;
    overflow: visible !important;
}



    .navbar .nav-item .nav-link {
        float: left;
        display: block;
        color: #f2f2f2;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
    }



    .navbar a:hover {
        background-color: #04AA6D;
        color: white
    }
    .navbar a.active {
        background-color: #04AA6D;
        color: white;
    }
    .navbar .navbar-brand a.active {
        background-color: #04AA6D;
        color: white;
    }

.dropdown-menu {
    position: absolute !important;
    z-index: 2000 !important;
    top: 100%; /* push it below the parent */
    left: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    display: block;
}
.navbar-nav > .dropdown:hover > .dropdown-menu {
    display: block;
}
.navbar-brand {
    color: #ffcc00 !important; /* Example: golden yellow */
}
