/**
 * Referenced often
 */

/** Mobile */
@media only screen and (max-width: 767px) {

    .nav-link {
        font-size: 22px;
    }
}

/** Tablet */
@media only screen and (max-width: 991px) {

}

/** Desktop */
@media only screen and (min-width: 767px) {

}

.width100 {
    width: 100% !important;
}

.textCenter {
    text-align: center;
}
.textRight {
    text-align: right;
}
.textLeft {
    text-align: left;
}
.textJustify {
    text-align: justify;
}

.textShadow {
    text-shadow: 2px 2px 5px black;
}

.boxShadow {
    box-shadow: 2px 2px 5px black !important;
}

.noWrap {
    white-space: nowrap;
}

.hoverPoint:hover {
    cursor: pointer;
}

.round {
    border-radius: 25px;
}

.verticalTop {
    vertical-align: top;
}

.pad20 {
    padding: 20px;
}
.pad40 {
    padding: 40px;
}



/**
 * Baseplate
 */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Maven Pro', sans-serif;
}

p, li, a, button, div, span, .btn {
    font-size: 16px;
}

a:hover {
    text-decoration: none;
}

footer .vibrantWebDesign > a {
    font-weight: bold;
    color: white;
}

footer .vibrantWebDesign > a:hover {
    color: deeppink;
}

footer .row {
    min-height: 300px;
}

.modal-header {
    border-bottom: 0 none;
}

.modal-footer {
    border-top: 0 none;
}

.btn {
    border-radius: 0;
}

/**
 * Integrity-specific styles
 */
.integrityCharcoal {
    color: #212121;
}
.integrityCharcoalBg {
    background-color: #212121;
}

.integrityDarkBlue {
    color: #023971;
}
.integrityDarkBlueBg {
    background-color: #023971;
}

.integrityLightBlue {
    color: #0057B0;
}
.integrityLightBlueBg {
    background-color: #0057B0;
}

.integrityExtraLightBlue {
    color: #256ADF;
}
.integrityExtraLightBlueBg {
    background-color: #256ADF;
}

.integrityLightGray {
    color: lightgray;
}
.integrityLightGrayBg {
    background-color: lightgrey;
}

.integrityWhite {
    color: white !important;
}
.integrityWhiteBg {
    background-color: white;
}

.integrityGray {
    color: gray;
}
.integrityGrayBg {
    background-color: gray;
}

.integrityOrange {
    color: #FF8C00;
}
.integrityOrangeBg {
    background-color: #FF8C00;
}

.whiteHover:hover {
    color: white;
}
.yellowHover:hover {
    color: yellow;
}
.orangeHover:hover {
    color: #FF8C00;
}
.blueAnimateHover:hover {
    background-color: #023971;
}
.extraLightBlueAnimateHover:hover {
    background-color: #256ADF;
}

.bolder {
    font-weight: bolder;
}

.thickExtraLightBlueBorder {
    border: 5px solid #256ADF !important;
}
.thickDarkBlueBorder {
    border: 5px solid #023971 !important;
}

/**
 * Buttons
 */
.integrityDarkBlueButton {
    background-color: #023971;
    padding: 20px;
    color: white;
}
.integrityDarkBlueButton:hover {
    background-color: #256ADF;
}

.integrityExtraLightBlueButton {
    background-color: #256ADF;
    padding: 20px;
    color: white;
}
.integrityExtraLightBlueButton:hover {
    color: white;
    background-color: #023971;
}

.gridBg {
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.98),
            rgba(255, 255, 255, 0.90)
        ),
        url('/images/circuit-board.jpg') repeat;
}

.orbitron {
    font-family: 'Orbitron', sans-serif;
}

.thinExtraLightBlueBorder {
    border: 2px solid #256ADF;
}
.thinExtraLightBlueBorder td {
    border: 1px solid #256ADF;
    padding: 3px;
}
.thinExtraLightBlueBorder th {
    text-align: center;
    background-color: #256ADF;
}

.thinDarkBlueBorder {
    border: 2px solid #023971;
}
.thinDarkBlueBorder td {
    border: 1px solid #023971;
    padding: 3px;
}
.thinDarkBlueBorder th {
    text-align: center;
    background-color: #023971;
}

.card, .card-img-top {
    border-radius: 0 !important;
}

.modal-content {
    color: white;
    border-radius: 0 !important;
    background: #256ADF;
}

a.nav-link.active {
    font-weight: bolder;
    text-decoration: underline;
}