:root {
    --dark-primary: #1b254b;
    --primary: rgb(51, 45, 87);
    --deep-dark-primary: #a3b1cc;
    --light-gray: #F9F9F9;
    --container-text: #3599db;
    --light: #fff;
    --btn-feature-bgcolor: #323e69;
}


body {
    font-family: "Rubik", sans-serif !important;
}

.active {
    /* color: #3599db !important; */
    font-weight: bold !important;
    border-bottom: 1px solid black  !important;
}

/* Start NavBr */
.navbar-brand {
    /* color: var(--deep-dark-primary) !important; */
    color: black !important;
    font-size: 2.1875rem !important;
}

.nav-link {
    padding-inline: 1.875rem !important;
}

.navbar-nav {
    --bs-nav-link-color: var(--primary);
}

.icon-il>a {
    color: var(--dark-primary);
}

.bottom-bar {
    background-color: var(--light-gray);
    margin-block: 1.25rem;
}

.bottom-bar ul>li>a {
    color: var(--primary);
}

.bottom-bar ul>li>a:active {
    border: 1px solid black;
    color: red !important;
}


.bottom-bar .nav-link {
    padding-inline: 0.6875rem !important;
}

.navbar-toggler {
    border: 0;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* ul span i {
    color: #3599db;
} */

.form-control:focus {
    box-shadow: none;
}

.logout-link {
    width: fit-content;
    color: #dc3545 !important;
    display: inline-block;
    cursor: pointer;
}

.logout-link:hover {
    color: #fff !important;
    background-color: #dc3545 !important;
}

.modal-dialog {
    margin-top: 50px !important;
}

@media (max-width: 991px) {
    .logout-link {
        width: fit-content;
        margin-left: 1.875rem;
    }
}

/* End NavBra */


/* Start Footer */
footer {
    /* background-color: var(--dark-primary); */
    color: var(--light);
    padding: 2.5rem 0.625rem;
}

footer input {
    /* background-color: var(--btn-feature-bgcolor); */
    padding: 1.25rem;
    border-color: transparent;
}

/* footer input::placeholder {
    color: var(--light);
} */

footer button {
    color: var(--dark-primary) !important;
    border-color: transparent !important;
}

.after-brdr {
    position: relative;
    padding-bottom: 1.25rem;
    width: 95%;
    text-align: center;
}

.after-brdr::after {
    content: '';
    background-color: #fff;
    /* background-color: var(--primary); */
    width: 100%;
    height: 0.125rem;
    position: absolute;
    bottom: 0;
    left: 0;
}

hr {
    background-color: #fff;
}
/* hr {
    background-color: var(--primary);
} */

footer ul>li i {
    font-size: 1.5625rem;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

footer ul>li i:hover {
    color: var(--primary)
}

footer a {
    text-decoration: none;
    color: white;
}

footer a:hover {
    text-decoration: underline;
    opacity: 0.8;
}


/* End Footer */


@media screen and (min-width: 992px) {
    .bottom-bar {
        margin-block: 0px;
    }

    .bottom-bar .nav-link {
        padding-inline: 30px !important;
    }

}