:root {
    --very-light-blue: #BFE2F8;
    --light-blue: #8DC5E8;
    --normal-blue: #106FB3;
    --dark-blue: #283184;
    --very-dark-blue: #25205D;
}

.bg-very-light-blue {
    background-color: var(--very-light-blue);
}

.bg-light-blue {
    background-color: var(--light-blue);
}

.bg-normal-blue {
    background-color: var(--normal-blue);
}

.bg-dark-blue {
    background-color: var(--dark-blue);
}

.bg-very-dark-blue {
    background-color: var(--very-dark-blue);
}

.text-very-light-blue {
    color: var(--very-light-blue);
}

.text-light-blue {
    color: var(--light-blue);
}

.text-normal-blue {
    color: var(--normal-blue);
}

.text-dark-blue {
    color: var(--dark-blue);
}

.text-very-dark-blue {
    color: var(--very-dark-blue);
}

.text-justify {
    text-align: justify;
}

.navbar a {
    color: var(--normal-blue);
    font-size: 16.5px;
    font-weight: 500;
    text-align: center;
}

.navbar a.nav-link.active {
    background-color: var(--dark-blue);
    color: white;
    border-radius: 20px;
}

.navbar a:hover:not(.navbar-brand):not(.active) {
    border-bottom: var(--dark-blue) solid 1px;
    color: var(--very-dark-blue);
}

footer .nav-link:hover {
    color: var(--very-dark-blue);
    font-weight: 600;
}

.list-group .list-group-item.list-group-item-action {
    font-size: 17px;
    font-weight: 500;
    text-align: center;

    background-color: white;
    color: var(--dark-blue);
}

.list-group .list-group-item.list-group-item-action.active {
    background-color: var(--dark-blue);
    border-color: var(--very-light-blue);
    color: white;
}

.card {
    height: 100%;
}

.tab-pane .card-body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.tab-pane .card-title {
    font-size: 18px;
    font-weight: 600;
}

.hover-effect {
    transition: all 0.2s ease;
}

.hover-effect:hover {
    transform: scale(1.07);
}


/* sm */
@media (min-width: 576px) {}

/* md */
@media (min-width: 768px) {}

/* lg */
@media (min-width: 992px) {}

/* xl */
@media (min-width: 1200px) {}

/* xxl */
@media (min-width: 1400px) {}