/* HERO BUTTON CSS */
.hero {
    display: block;
    width: 100%;
    height: auto;
    background-color: rgb(0, 59, 115);
    background-image: url('/media/collegesschools/sjmc/images/homepage/bg-tile-dark3.jpg');
    background-attachment: fixed;
    background-size: cover;
}

.hero .content {
    max-width: initial;
}

.dropdown_programs_container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.dropdown_programs_box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.dropdown_programs_box .bucket_container {
    width: 100%;
    padding: 20px 0 30px;
    max-width: 1360px;
}

.dropdown_programs_box .bucket {
    width: 48%;
    min-width: 340px;
    padding: 0.5em 0.5em 3em;
    box-sizing: border-box;
    margin-top: 2em;
}

.dropdown_programs_box .bucket:nth-child(2) {
    border-left: 4px solid #fff;
    /**border-right: 4px solid #fff;**/
}

.dropdown_programs_box .bucket .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.dropdown_programs_box .bucket a {
    font-family: 'proxima-nova', 'Whitney SSm A', 'Whitney SSm B', 'Whitney', Arial, sans-serif;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    width: 80%;
    box-sizing: border-box;
    margin: 0 auto
}

.dropdown_programs_box .bucket a.halfsize {
    width: 40%;
    margin: .25%;
    padding: .35em 0;
}

.hero h4 {
    color: rgb(255, 255, 255);
    font-family: 'harfang-pro', 'Bookman Old Style', Bookman, 'Iowan Old Style', serif;
    font-weight: 100;
    font-size: 24px;
    color: #fff;
    margin: 0 0 1em 0;
    text-align: center;
}

/* HERO IMAGE CSS */
.hero_image_box {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto 5em;
    position: relative;
}

.hero_image_box .hero_image {
    overflow: hidden;
    margin: 0 1.5em 1em 1.5em;
}

.hero_ladder {
    position: absolute;
    width: 60px;
    height: auto;
    bottom: 5em;
    right: 0em;
}

span.ladder.rung {
    display: block;
    background-color: #ffcd00;
    height: 4px;
    width: 100%;
    margin-bottom: 2em;
}

.hero_message {
    position: absolute;
    bottom: -.7em;
    left: 0em;
    height: 40px;
}

.hero_message h1 {
    text-transform: uppercase;
    font-family: 'proxima-nova', 'Whitney SSm A', 'Whitney SSm B', 'Whitney', Arial, sans-serif;
    font-size: 1em;
    font-weight: 900;
    color: #003b73;
    background-color: #ffcd00;
    display: block;
    padding: 0.75em 1.5em;
}

/* HERO CSS MEDIA QUERIES */
@media (max-width: 1020px) {
    .hero {
        padding: 2em 0 0 0;
        box-sizing: border-box;
    }

    .dropdown_programs_box .bucket_container {
        width: 400px;
        /* padding: 0px 0 0px; */
        position: absolute;
        left: 0;
        top: 50px;
        z-index: 0;
        margin-top: 2em;
    }

    .dropdown_programs_box .bucket {
        width: 33.333%;
        min-width: 340px;
        padding: 0.5em 0.5em 1em;
        box-sizing: border-box;
        margin-top: 2em;
    }

    .hero_image_box {
        width: auto;
        margin: 0 auto 5em 400px;
    }

    .dropdown_programs_box .bucket:nth-child(2) {
        border-left: 0;
        border-right: 0;
    }
}

@media (max-width: 1020px) {
    .hero_message {
        font-size: .75em;
    }
}

@media (max-width: 767px) {
    .hero_image_box {
        display: none;
    }

    .dropdown_programs_box .bucket_container {
        position: static;
        margin-top: 0;
        padding-top: 0;
    }
}

/* ==========================
    Generic
  ========================== */
/* button/link transitions */
.dropdown .dropbtn, a {
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

/*buttons*/
.button, .button:visited {
    display: inline-block;
    background: rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
    width: auto;
    padding: 0.35em 2.25em;
    text-decoration: none;
    color: rgb(0, 59, 115);
    border-radius: 4px;
    margin: 0 .5em 1em;
}

.button:hover {
    background: transparent;
    color: rgb(255, 255, 255);
}

.redbutton, .redbutton:visited {
    font-size: 1.25em;
    font-weight: 200;
    display: inline-block;
    background-color: rgb(203, 51, 59);
    color: rgb(255, 255, 255);
    padding: .25em 3em;
    box-sizing: border-box;
    text-decoration: none;
}

.redbutton:hover {
    padding-left: 4em;
    background: rgba(203, 51, 59, .8);
}

@media (max-width: 479px) {
    .redbutton {
        padding: .25em 1em;
        width: 100%;
    }
}

/* Multiple use utilities */
.content {
    width: 100%;
    max-width: 1024px;
    height: auto;
    margin: 0 auto;
}

.block_it {
    display: inline-block;
}

/*Buckets - Default 25%*/
.bucket_container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 0 50px 0;
}

.bucket_row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: baseline;
}

.bucket {
    width: 25%;
    padding: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 667px) {
    .bucket {
        width: 45%;
    }
}

@media (max-width: 479px) {
    .bucket {
        width: 80%;
    }
}

/* ==========================
    Infographic Section
  ========================== */
.infographic {
    width: 100%;
    height: auto;
    padding: 2em 0;
    background-color: rgb(255, 255, 255);
    background-image: url('/media/collegesschools/sjmc/images/homepage/cement1.jpg');
    background-size: cover;
    /*display: -ms-flexbox;*/
    /*display: flex;*/
    /*-ms-flex-direction: row;*/
    /*flex-direction: row;*/
    /*-ms-flex-pack: center;*/
    /*justify-content: center;*/
    /*background: rgb(0,59,115);*/
}

.bucket {
    color: rgb(255, 255, 255);
}

.credits .bucket_row {
    align-items: center;
}

.credits .bucket_container {
    padding-bottom: 0;
}

.credits .bucket {
    width: 42%;
    padding: 20px 4%;
}

.infographic img {
    margin: 0 auto 1.5em auto;
    width: 100%;
    height: auto;
}

.infographic h3, .infographic p {
    color: rgb(0, 59, 115);
    font-family: 'proxima-nova', 'Whitney SSm A', 'Whitney SSm B', 'Whitney', Arial, sans-serif;
    letter-spacing: 0px;
}

.ig_headline {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-item-align: center;
    align-items: center;
    font-size: 500%;
    font-weight: 800;
    line-height: 0.7;
}

.ig_headline span {
    font-size: 70%;
    vertical-align: text-top;
}

.ig_headline span i {
    color: rgb(0, 59, 115);
}

.ig_copy {
    font-size: 100%;
    line-height: 1.4;
    padding: 5px 0 0 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .ig_headline {
        font-size: 370%;
    }
}

/* ==========================
    Feature Section
  ========================== */
.featured_content {
    display: block;
    width: 100%;
    height: auto;
    background-color: rgb(0, 59, 115);
    background-image: url('/media/collegesschools/sjmc/images/homepage/bg-tile-dark3.jpg');
    background-attachment: fixed;
    background-size: cover;
}

.programs_container {
    height: auto;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.programs_box {
    width: 100%;
    height: auto;
    margin: 0 auto;
    max-width: 45em;
    text-align: center;
}

.featured_content h3 {
    color: rgb(255, 255, 255);
    font-family: 'harfang-pro', 'Bookman Old Style', Bookman, 'Iowan Old Style', serif;
    font-weight: 100;
    font-size: 3.7em;
    padding-bottom: .5em;
}

.featured_content p {
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-family: 'proxima-nova', 'Whitney SSm A', 'Whitney SSm B', 'Whitney', Arial, sans-serif;
    font-size: 1.25em;
    padding-bottom: 1em;
}

@media (max-width: 1024px) {
    .programs_box h3 {
        font-size: 3em;
    }

    .programs_box p {
        font-size: 1em;
    }
}

@media (max-width: 479px) {
    .programs_box h3 {
        font-size: 2em;
    }
}

/* ==========================
    News Section
  ========================== */
.news_section {
    padding: 4em 0;
}

.news_section h2 {
    color: rgb(0, 59, 115);
    font-size: 4.5em;
    font-family: 'harfang-pro', 'Bookman Old Style', Bookman, 'Iowan Old Style', serif;
}

.news_section h2:before {
    content: " ";
    background-color: rgb(255, 130, 0);
    height: .7em;
    width: .7em;
    display: inline-block;
    margin-right: .25em;
}

.news_section h2 img {
    height: .7em;
}

.bucket .date {
    color: rgb(255, 130, 0);
    margin: 0;
}

.bucket a {
    text-decoration: underline;
    color: rgb(0, 59, 115);
    font-family: 'harfang-pro', 'Bookman Old Style', Bookman, 'Iowan Old Style', serif;
    font-size: 1.6em;
    line-height: 1.2em;
}

.news_archive_container {
    padding: 0 4%;
}

.news_archive_container a {
    color: rgb(0, 59, 115);
}

@media (max-width: 667px) {
    .news_section h2 {
        font-size: 3em
    }

    .news_section .bucket a {
        font-size: 1.25em;
    }
}

@media (max-width: 320px) {
    .news_section h2 {
        font-size: 2em
    }

    .news_section .bucket a {
        font-size: 1em;
    }
}




