.jbh-footer {
    margin-top: 5rem;
    color: white;
    font-family: inherit;
}

.jbh-footer h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}


.jbh-footer a {
    color: white;
    text-decoration: none;
    transition: opacity .2s ease;
}

.jbh-footer a:hover {
    color: white;
    opacity: .8;
}

.jbh-footer-bottom {
    background: #004a84;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 4px solid #00b7ff;
    padding: 14px 0;
}

.jbh-footer-bottom-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    font-size: 1.1rem;
}

.jbh-footer-left {
    justify-self: start;
}

.jbh-footer-center {
    justify-self: center;
}

@media (max-width: 991px) {
    .jbh-footer-bottom-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .jbh-footer-left,
    .jbh-footer-center {
        justify-self: center;
    }
}