.navbar-big .navbar-nav {
    --bs-nav-link-color: #fff;
    --bs-nav-link-hover-color: transparent;
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
}

.navbar-big .navbar-nav {
    flex-direction: column;
}

.navbar-big .navbar-collapse {
    justify-content: center;
    text-align: center;
}

.navbar-big .navbar-nav .nav-link {
    position: relative;
}

.parallax-container {
    z-index: 1;
}

.navbar-big .navbar-nav .nav-link::before,
.navbar-big .navbar-nav .nav-link::after {
    content: '';
    display: block;
    position: absolute;
    height: 2px;
    width: 0;
    background-color: #fff;
    transition: width .25s ease, background-color .25s ease;
}

.navbar-big .navbar-nav .nav-link::before {
    top: 0;
    left: 5%;
}

.navbar-big .navbar-nav .nav-link::after {
    bottom: 0;
    right: 5%;
}


.big-frame {
    border: 10px solid #eadbb2;
    box-shadow: inset 0px 0px 0px 3px rgba(234, 219, 178, 0.5);
    overflow: auto;
}

.navbar-big .nav-link-skew,
.navbar-big .nav-link-skew span {
    position: relative;
}

.navbar-big .nav-link-skew span::before {
    content: '';
    position: absolute;
    display: block;
    left: 50%;
    right: 50%;
    top: 49%;
    background-color: #111;
    height: 3px;
    z-index: 2;
}



.navbar-big .nav-link-skew::before,
.navbar-big .nav-link-skew::after {
    content: attr(data-title);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    color: #fff;
}

.navbar-big .nav-link-skew::before {
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}

.navbar-big .nav-link-skew::after {
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}

.background-text {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 25vw;
    color: rgba(234, 219, 178, 0.05);
    font-family: 'Bebas Neue', cursive;
    white-space: nowrap;
    overflow: hidden;
    user-select: none;
}

@media (hover: hover) {

    .navbar-big .navbar-nav .nav-link:hover::before,
    .navbar-big .navbar-nav .nav-link:hover::after {
        width: 100%;
        background-color: #eadbb2;
    }

    .navbar-big .navbar-nav .nav-link:hover .nav-link-skew span::before {
        left: -16px;
        right: -16px;
    }

    .navbar-big .navbar-nav .nav-link:hover .nav-link-skew::before {
        transform: translateX(-2px);
        color: #eadbb2;
    }

    .navbar-big .navbar-nav .nav-link:hover .nav-link-skew::after {
        transform: translateX(2px);
        color: #eadbb2;
    }
}

@media screen and (max-width: 768px) {
    .background-text {
        display: none;
    }

    .navbar-big {
        line-height: 1.2 !important;
    }
}