/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 190%;
    top: 100%;
    left: 0;
    margin: 0.5rem 1px 12px -4rem;
    /*margin-left: -60px; !* Use half of the width (120/2 = 60), to center the tooltip *!*/
    background-color: #016699;
    color: #fff;
    text-align: center;
    padding: 1rem;
    border-radius: 6px;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}



/* new site */
.btn-primary {
    background-color: #005ea2 !important;
    border: none !important;
    text-decoration: none;
}
.contact-us-button, .usa-button:hover, .btn-primary:hover, .main-background:hover {
    background-color: #F5CB5C !important;
    color: #1b1b1b !important;
}
.hr-title {
    border: 2px solid #97d4ea !important;
    background-color: #97d4ea;
    flex:1;
}
.card {
    height: -webkit-fill-available;
}
.fa {
    text-decoration: none;
}
.hero-image {
    background-image: url("/images/dnp/homepage-hero-data-people.svg");
    background-color: #F6FAFC;
    background-size: cover;
    justify-self: center;
    background-repeat: no-repeat;
    width: 50%;
}