/* NAVBAR INDEX */

.navbar-transparent {
    background-color: transparent;
}

.navbar-transparent {
    background-color: transparent;
}

.navbar-collapse {
    display: flex;
    align-items: center;
}

.navbar-links-wrapper {
    max-width: 1200px;
    width: 100%;
}

.navbar-cta {
    white-space: nowrap;
}

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

.navbar-transparent .nav-link:hover {
    color: rgba(255, 255, 255, 0.75);
}

.navbar-transparent .btn-primary {
    background-color: rgba(180, 120, 80, 0.95);
    border: none;
}

.navbar-transparent .btn-primary:hover {
    background-color: rgba(180, 120, 80, 1);
}

.nav-link {
    color: white !important;
    transition: 0.3s;
}

.nav-link:hover {
    opacity: 0.7;
}

.navbar-transparent .nav-link {
    position: relative;
    padding-bottom: .25rem;
    color: #fff;
}

.navbar-transparent .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width .25s ease;
}

.navbar-transparent .nav-link.active::after,
.navbar-transparent .nav-link:hover::after {
    width: 100%;
}

.navbar-transparent {
    background: transparent;
    transition: background-color .3s ease, backdrop-filter .3s ease;
}

.navbar-transparent.navbar-open {
    background-color: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(6px);
}
