:root {
    --tb-navy: #0a406b;
    --tb-blue: #12458c;
    --tb-gold: #e1b852;

    --bs-body-bg: var(--tb-navy);
    --bs-primary: var(--tb-navy);
    --bs-primary-rgb: 10, 64, 107;
}

body {
    color: var(--bs-body-color);
}

.tb-maxw-750 {
    max-width: 750px;
}

.tb-minw-128 {
    min-width: 128px;
}

.bg-white {
    background: #fff !important;
    color: #212529;
}

.fs-xs {
    font-size: 0.75rem;
}

/* Custom Input Styles */

.form-control,
.form-select,
textarea.form-control {
    background-color: #fff !important;
    border: 1px solid #d7dee8;
    border-radius: 7px;
    padding: .75rem .9rem;
}

.form-check-input {
    background-color: #fff;
}

textarea.form-control {
    min-height: 94px;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
    border-color: rgba(11, 63, 122, .65);
    box-shadow: 0 0 0 .25rem rgba(11, 63, 122, .12);
}

.form-control::placeholder {
    color: #6c757d;
    opacity: .5;
}

select.form-select option {
    color: #212529;
}

.form-label {
    margin-bottom: .35rem;
    font-weight: 700;
    color: #0f172a;
}

.tb-card .card-body .form-label {
    font-size: .9rem;
}

/* Header */
.tb-hero-top {
    background: var(--tb-navy);
}

.tb-hero-inner {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}

.tb-logo {
    display: block;
    width: 100%;
    max-width: 750px;
    height: auto;
    margin: 0 auto;
}

.tb-hero-gold {
    background: var(--tb-gold);
    min-height: 250px;
    padding: 50px 330px 50px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: visible;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.tb-hero-title {
    margin: 0;
    font-size: 2.2rem;
    line-height: 1.25;
    letter-spacing: .5px;
    color: #000;
    font-weight: 400;
}

.tb-hero-subtitle {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 2px;
}

.tb-ribbon {
    position: absolute;
    right: 8px;
    top: 0;
    height: auto;
    width: 290px;
    z-index: 5;
    filter:
        drop-shadow(0 22px 22px rgba(0, 0, 0, .18)) drop-shadow(0 6px 10px rgba(0, 0, 0, .14));
}

.tb-card {
    border-radius: 0 0 7px 7px;
}

@media (max-width: 450px) {
    .tb-hero-gold {
        min-height: 145px;
        padding: 0 170px 0 0;
    }

    .tb-ribbon {
        width: 170px;
    }

    .tb-hero-title {
        font-size: 1.9rem;
        line-height: 1.15;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .tb-hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
        margin-bottom: 0;
    }
}

/* Buttons */
.btn-gradient {
    background: linear-gradient(to bottom,
            #1c5fb3 0%,
            #12458c 100%);
    border: 1px solid #0f3e7a;
}

.btn-gradient:hover {
    background: linear-gradient(to bottom,
            #1a58a6 0%,
            #0f3e7a 100%);
    border-color: #0c3466;
}

.btn-soft {
    background: linear-gradient(to bottom,
            #f9fafb 0%,
            #eef2f7 100%);
    border: 1px solid #d7dee8;
    color: #1f2937;
    font-weight: 500;
}

.btn-soft:hover {
    background: linear-gradient(to bottom,
            #ffffff 0%,
            #e5ebf2 100%);
    border-color: #cbd5e1;
}

.btn-soft:active {
    background: #e2e8f0;
}

/* Remove hover + click affordance from step indicators */
.nav-underline .nav-link {
    cursor: default;
    pointer-events: none;
}

.nav-underline .nav-link:hover {
    text-decoration: none;
}

@media (max-width: 450px) {
 .nav.nav-underline.nav-justified {
    /* display: flex; */
    /* flex-wrap: wrap; */
    gap: 0.1rem 0;
  }


  .nav.nav-underline.nav-justified .nav-link {
    padding-left: 0 !important;
    padding-right: 0 !important; 
    font-size: 0.75rem;
    font-weight: normal;
  }

  .nav.nav-underline.nav-justified .badge {
    margin-right: 0.10rem !important;
  }
}