/* cmsms stylesheet: SECI_BS4_styles modified: Friday, July 25, 2025 12:07:50 PM */
:root {
    --primary: #2b61a1;
    --secondary: #6c757d;
    --success: #339999;
    --info: #7cb3d3;
    --warning: #ffc107;
    --danger: #f24e1e;
    --light: #f8f9fa;
    --dark: #343a40;
}
h1,h2,h3,h4,h5,h6 {
    font-family: oswald, sans-serif;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background: #e6e7e8 linear-gradient( 180deg,#f9fafb,#e6e7e8 ) repeat-x;
}
/* taken from refactoring proof @ https://www.codeply.com/v/nQKgr31Vcg */

.bg-gradient {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3c3c3c+0,222222+100 */
background: #3c3c3c; /* Old browsers */
background: -moz-linear-gradient(top,  #3c3c3c 0%, #222222 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #3c3c3c 0%,#222222 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #3c3c3c 0%,#222222 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c3c3c', endColorstr='#222222',GradientType=0 ); /* IE6-9 */
/* This is used for the navbar background */
}
.bg-carouselcaption {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#406b8e+0,406b8e+51,406b8e+100&0+0,0.7+20,0.7+81,0+100 */
background: -moz-linear-gradient(left,  rgba(64,107,142,0) 0%, rgba(64,107,142,0.7) 20%, rgba(64,107,142,0.7) 51%, rgba(64,107,142,0.7) 81%, rgba(64,107,142,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  rgba(64,107,142,0) 0%,rgba(64,107,142,0.7) 20%,rgba(64,107,142,0.7) 51%,rgba(64,107,142,0.7) 81%,rgba(64,107,142,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  rgba(64,107,142,0) 0%,rgba(64,107,142,0.7) 20%,rgba(64,107,142,0.7) 51%,rgba(64,107,142,0.7) 81%,rgba(64,107,142,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00406b8e', endColorstr='#00406b8e',GradientType=1 ); /* IE6-9 */
}
.carousel-indicators {
    top: 1rem;
    bottom: initial;
}
.carousel-item { 
    background-size: cover;
    background-position: center center; /* was bottom center - 2024-10-10 srg */
    /* background-attachment: fixed; removed for improvement of mobile experience - 2024-10-19 srg */
}
.carousel-item img {
    /* object-fit: cover;
    object-position: center center; */
    /* need it present to give the container its size but allow the bg image to show instead for parallax */
    visibility : hidden; 
}
.jumbotron .list-inline-item::before {
    content: "• ";
}
.list-group-horizontal .far {
    padding-right: 0.33em;
}
.meta .date {
    /*background: #406b8e;
    color: white; 
    border-radius: 2.5rem;*/
    font-family: "oswald", sans-serif;
    /* width: 5rem; */
    padding: 4px;
    /*float: left;
    margin-right: 2em; */
}
.meta .date .day {
    font-size: 1.4em;
    line-height: 1;
    padding: 2px 0;
    /* font-style: italic; */
}
.meta .date .month {
    /* margin-top: -4px;
    padding-bottom: 3px; */
}
.meta .date .year {
    font-size: 1.2em;
    line-height: 1.2;
    /* color: #23527c;
    background: #fff; */
    letter-spacing: -0.05em;
    font-weight: 400;
    font-family: 'oswald', sans-serif;
    /* text-shadow: 1px 2px 1px #a9a9a9;
    padding: 0 28px;
    margin-bottom: -5px; */
}
.meta .author, .meta .category {
    font-size: smaller;
    font-style: italic;
}
.articlelink + .fas {
    font-size: 0.8rem;
    vertical-align: super;
}

.footer .byline a img { display: inline-block; border: 0; vertical-align: middle; transition: all 300ms ease-in 0s; border-radius: 16px;}
.footer .byline a:hover img { background-color: rgba(67,32,119,1);}
.footer .byline a:link span, .footer .byline a:visited span {
    margin-right: 0.33em;
    opacity: 0;
    transition: all 300ms ease-in 0s;
    font-family: oswald, "pt sans narrow", sans-serif;
}
.footer .byline a:hover span, .footer .byline a:active span { opacity: 1; }
.breadcrumb-item+.breadcrumb-item::before { content: "\bb"; }
.jumbotron { padding: 3rem 2rem; }
.figure-caption { font-size: 0.9rem; }
.social-icons a {
    text-decoration: none;
    color: #23527c;
    background: white;
    border: 1px solid #23527c;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    padding: .2rem;
}
.social-icons a:link { border-radius: 32px; }
.socal-icons a:focus, .social-icons a:hover {
    background-color: #23527c;
    color: white;
    transition: all 200ms ease-in 0s;
    border: 1px solid transparent;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.social-icons a:focus .fab, .social-icons a:hover .fab {
    -webkit-text-stroke: 1px #23527c;
}

.img-thumbnail {
    margin-bottom: 1em;
}

/* make cards more interesting if they have stretched-links - per SH 2024-11-29 */
.card:has(.stretched-link):hover {
    border-color: var(--info);
    box-shadow: inset 0px 0px 8px 2px var(--primary);
}

footer .vcard div.adr div, footer .vcard .tel {
    display: inline-block;
    margin-right: 0.33em;
}
/* dim placeholder text when input is focused */
*:focus::placeholder {
    color: rgba(238,238,238,0.95);
}
@media only screen and (max-width: 576px) {
    .carousel-caption h2 {
        font-size: 1.3rem;
    }
}
@media (min-width: 1200px) {
    .carousel-item {
        max-height: 592px;
    }
    body { 
        font-size: 18px;
    }
}
/* BS4 Grid Gallery https://codepen.io/bmcarthur/pen/vQrpYY */
.gallery-block.grid-gallery {
    padding-bottom: 60px;
    padding-top: 60px;
}

.gallery-block.grid-gallery .heading {
    margin-bottom: 50px;
    text-align: center;
}

.gallery-block.grid-gallery .heading h2 {
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.gallery-block.grid-gallery a:hover {
    opacity: 0.8;
}

.gallery-block.grid-gallery .item img {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
}

.gallery-block.grid-gallery .item {
    margin-bottom: 20px;
}

@media (min-width: 576px) {

  .gallery-block.grid-gallery .scale-on-hover:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15) !important;
  }
}
/* End BS4 Grid Gallery */

@media (min-width: 99999999px) { /* styles from mockup no longer being used */
    .bg-secisolid {
        background-color: #406b8e !important;
    }
    .jumbotron.bg-seci {
        color: white;
        background-color: hsla(207, 38%, 40%, 1) !important;
    }
    .btn-primary{
        background-color: #066ca9;
        background-image: -webkit-linear-gradient(top, rgb(6, 108,169) 0, rgb(4, 75, 118) 100%);
        background-image: -o-linear-gradient(top,rgb(6, 108,169) 0,rgb(4, 75, 118) 100%);
        background-image: -webkit-gradient(linear,left top,left bottom,from(rgb(6, 108,169)),to(rgb(4, 75, 118)));
        background-image: linear-gradient(to bottom,rgb(6, 108,169) 0,rgb(4, 75, 118) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff066ca9', endColorstr='#ff044b76', GradientType=0);
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
        background-repeat: repeat-x;
    }
    .btn-primary:focus, .btn-primary:hover {
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#406b8e+0,0d4e87+100 */
        background: #406b8e; /* Old browsers */
        background: -moz-linear-gradient(left,  #406b8e 0%, #0d4e87 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(left,  #406b8e 0%,#0d4e87 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right,  #406b8e 0%,#0d4e87 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#406b8e', endColorstr='#0d4e87',GradientType=1 ); /* IE6-9 */
    }
    .btn-info {
        background-image: -webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);
        background-image: -o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);
        background-image: -webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));
        background-image: linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
        background-repeat: repeat-x;
        border-color: #28a4c9;
    }
    .btn-info:hover {
        background-image: none;
    } 
} /* end media query hide */
