:root {
    --primary-black: #000;
    --primary-blue: #083fa6;
    --light-blue: #ccdeff;
    --color-white: #fff;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item>.nav-item__btn {
    color: var(--primary-black) !important;
    line-height: 3.5rem !important;
}

.nav-item__btn:hover {
    background-color: var(--light-blue);
    color: var(--primary-blue) !important;
}

.nav-container-collapse {
    border-radius: 0 0 20px 20px;
    width: fit-content !important;
}

.nav-btn {
    background: none;
    outline: 0;
    border: none;
    font-size: 3.5rem;
}

.nav-container {
    height: 100vh;
}

.mobile-nav-animation {}

.mobile-container {
    z-index: 999;
    height: 100%;
    width: 100%;
    background-color: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

@keyframes fade-left {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-hide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.show-container {
    display: block;
    animation: fade-left 1s;
}

.hide-container {
    animation: fade-hide 1s;
    display: none;
}

.fixed-body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.collapsing {
    transition: none;
    animation: fade-inm,
        duration timing-function delay iteration-count direction fill-mode;
}