/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*
*/
.navbar {
    transition: all 0.4s;
}

.navbar .nav-link {
    color: #fff;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: rgb(206, 155, 74);
    text-decoration: none;
}

.navbar .navbar-brand {
    color: #fff;
    font: 35px/1.1 "Raleway", sans-serif;
    transition: color 0.3s linear;
}


/* Change navbar styling on scroll */
.navbar.active {
   background-color: rgba(10, 10, 10, 0.6);
}

.navbar.active .nav-link {
    color: white;
}

.navbar.active .navbar-brand {
    color: white;
}

.navbar .navbar-brand:hover,
.navbar .nav-brand:focus {
    color: rgb(206, 155, 74);
}

.navbar.active .nav-link:hover,
.navbar.active .nav-link:focus {
    color: rgb(206, 155, 74);
    text-decoration: none;
}

.navbar.active {
    padding-top: 0.5rem!important;
    padding-bottom: 0rem!important;
}



/* Change navbar styling on small viewports */
@media (max-width: 991.98px) {
    .navbar {
        background: #fff;
    }

    .navbar .navbar-brand, .navbar .nav-link {
        color: #555;
    }
}

@media (min-width: 992px) {
     .navbar-nav .nav-link {
         padding-right: 1rem !important;
    }
}
