/* Updated 2-22-23 -JJ */

body {
    background-color: #999;
}

h1 {
    font-size: 28px;
}

.text-primary {
    color: #0A4595;
}

.hp-heading {
    font-size: 28px;
}

/* HOMEPAGE FEATURED PRODUCT CARDS */
.content--cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(290px,1fr));
    grid-column-gap: 2rem;
    position: relative;
}
.content--cards-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    grid-column-gap: 1.5rem;

    position: relative;
}
.content--cards .card-outer {
    position: relative;
    height: 225px;
    margin-bottom: 2.5rem;
}
.content--cards .card-wrapper:before {
    content: "";
    left: 0px;
    position: absolute;
    top: 0px;
    z-index: 1;
    height: 100%;
    width: 100%;
}
.content--cards .card-wrapper {
    position: absolute;
    top: 0%;
    left: 0%;
    height: 225px;
    width: 100%;
    background-position: center center;
    overflow: visible;
    border-radius: 12px;
}

.usa-card__container{
    box-shadow: 0px 3px 8px #969595;
    border: none !important;
}
.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr)) !important;
    grid-column-gap: 2rem;
    position: relative;
    margin-left: 2em;
    margin-right: 2em;
}
.card-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr)) !important;
    grid-column-gap: 1.5rem;
    position: relative;
    margin-left: 0;
    margin-right: 0;
}
.usa-card .link {
	color:#0A4595;
	font-weight:700;
	text-decoration: none;
}
.usa-card .link:hover {
	color:#0099E8;  
}
.featured-products .program-card .img {
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}
.featured-cards .link{
    font-size: .9em;

}
.usa-card .usa-card__body p{
    font-size: .9rem;
}
.usa-card .title {
    color: #0A4595;
    /* font-weight: 700; */
    line-height: 1.8rem;
    font-size: 1.4em;

}

.usa-card .title h4 {
    font-size: 20px !important;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.featured-products .program-card .description {
    padding: 0 1rem;
}

.featured-products .program-card .link {
    font-size: .8rem;
    padding: 0 1rem;

}
@media screen and (min-width: 1023px) {
    .card-ratio-1 {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .card-ratio-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .card-ratio-3 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .card-ratio-4 {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}
.card-wrapper  .cards--content {
    border-radius: 8px;
    background-color: #f1f1f1;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}
.card-wrapper .cards--topic {
    border-radius: 12px;
    display: grid;
    overflow: visible;
    min-height: 225px;
    position: relative;
    background-size: cover;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
    margin-bottom: 2.5rem;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.card-wrapper .cards--topic:before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}
.card-wrapper .cards--topic {
    text-decoration: none !important;

}
.card-wrapper .cards--topic .card-title {
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
    align-self: center;
    justify-self: center;
    color: white;
    z-index: 10;
    border-bottom:none !important;
    padding: 1rem;
    text-decoration: none;
    border-bottom: none;
}
.card-wrapper .cards--topic .card-title:hover{
    color: #0099E8;
}
.card-wrapper .cards--topic:hover {
    text-decoration: none !important;
}
.card-wrapper .cards--topic .card-title {
    background-color: rgba(11, 30, 66, 0.7);
    border-radius: 12px;
    text-decoration: none !important;

    padding: 1rem 1rem 0.6rem 1rem;
}
.card-wrapper .cards--topic .card-title  {
    text-decoration: none !important;
}
.card-wrapper .cards--topic .card-title:after {
    display: block;
    content: "";
    /* border-bottom: solid 3px #f2cd07; */
    transform: scaleX(0);
    transition: transform 150ms ease-in-out;
    transform-origin: 0% 50%;
    padding-bottom: 5px;
    line-height: 30px;
    text-decoration: none !important;

}
.card-wrapper .cards--topic .card-title:hover:after {
    transform: scaleX(1);
    transform-origin: 0% 50%;
}
.card-wrapper .cards--topic:hover {
    position: absolute;
    background-size: cover;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    transition: width 0.25s, height 0.25s, top 0.25s, left 0.25s;
    text-decoration: none !important;

}

/* SWIPER SLIDER 
    https://swiperjs.com/
*/

.swiper{
    height: 400px;
}

.swiper-pagination-bullet {
    background: #fff !important;
}

.swiper-pagination-bullet-active {
    background: #0A4595 !important;
}

.swiper-slide {
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/* ALERT MESSAGE */
#alert-message-wide {
    display: block;
    width: 100%;
    margin: 0 auto;
    background-color: #fdf5bd;
}

/*NAVBAR*/
/* #dropdown-box {
    width: 100% !important;
} */

/*NAVBAR*/
/* #dropdown-box-trop {
    width: 1050px !important;
} */



/* WIDE PAGE RETURN LINK */

.return-full-wide {
    font-size: 10px;
    font-weight: normal;
    width: 80%;
    text-align: right;
    margin: 20px auto 0 auto;
}

.return-full-wide-100 {
    font-size: 10px;
    font-weight: normal;
    width: 100%;
    text-align: right;
    margin: 0 auto;
    padding: 2% 4% 0 0;
}


/* Footer */


#footer {
    background: #0A4595;
    width: 100%;
    padding: 1rem;
    padding-top: 1.5rem;
    color: #fff;
}

.grid-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.grid-row.grid-gap {
    margin-left: 0rem;
    margin-right: 0rem;
}

.grid-row {
    display: flex;
    flex-wrap: wrap;
}

#footer .title {
    font-weight: 700;
    display: block;
    padding: 0;
    margin-bottom: 14px;
    margin-top: 1.3rem;
    text-decoration: none;
    font-size: 1.06rem;
}

.footer-menu {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 1rem;
}

.footer-dropdown-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-dropdown-menu li:before {
    content: ">";
    font-weight: 900;
    display: inline-block;
    width: 1em;
}

/* .footer-dropdown-menu li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  display: inline-block;
  width: 1em;
  color: white;
  } */

#footer a {
    color: #fff;
    text-decoration: none;
}

#footer a:hover {
    text-decoration: underline;
}

.ospo-footer_second {
    padding: unset;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 1rem;
    border-top: 1px solid #fff;
    text-align: center;
}

.ospo-footer_second .grid-col-fill {
    display: grid;
    align-items: center;
}

.grid-col-fill {
    flex: 1 1 0%;
    width: auto;
    max-width: 100%;
    min-width: 1px;
}

.horizontal-list ul {
    margin: 0;
    padding: 0;
}

.horizontal-list li {
    display: inline;
    list-style: none;
}

.ospo-footer_second li {
    border-right: 1px solid #fff;
    padding: 0 1rem;
    line-height: 30px;
}

.ospo-footer_second li:last-child {
    border-right: unset;
    padding-right: unset;
}

#footer-wide-wrap {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0px auto;
    background: #0A4595;
}

#footer-wide-wrap #footer-box {
    height: auto;
}
.usa-site-alert--satellite .usa-alert .usa-alert__body{
    color:#1b1b1b;
    background-color:#e7f6f8;
    padding-left:2.9166666667rem;
  }
  .usa-site-alert--satellite .usa-alert .usa-alert__body::before{
    background:url("../img/satellite-solid.svg") no-repeat center/contain !important;
    display:inline-block;
    height:2rem;
    width:2rem;
    content:"";
    display:block;
    height:4;
    left:0.5rem;
    position:absolute;
    top:0.75rem;
  }
  @supports ((-webkit-mask: url("")) or (mask: url(""))){
    .usa-site-alert--satellite .usa-alert .usa-alert__body::before{
      background:none;
      background-color:#1b1b1b;
      -webkit-mask:url("../img/satellite-solid.svg") no-repeat center/contain !important;
              mask:url("../img/satellite-solid.svg") no-repeat center/contain !important;
    }
  }
  @media all and (min-width: 64em){
    .usa-site-alert--satellite .usa-alert .usa-alert__body::before{
      left:1.5rem;
    }
  }
  @media all and (min-width: 64em){
    .usa-site-alert--satellite .usa-alert .usa-alert__body{
      padding-left:4rem;
      padding-right:4rem;
    }
  }
  .usa-site-alert--satellite .usa-alert .usa-alert__body .usa-link{
    color:#005ea2;
  }
  .usa-site-alert--satellite .usa-alert .usa-alert__body .usa-link:visited{
    color:#54278f;
  }
  .usa-site-alert--satellite .usa-alert .usa-alert__body .usa-link:hover, .usa-site-alert--satellite .usa-alert .usa-alert__body .usa-link:active{
    color:#1a4480;
  }
  