:root {
    /** Fonts **/
    --primaryFont : "Source Sans Pro", sans-serif;
    --secondaryFont : "Buenard", serif;

    /** Colors **/
    --headerColor : #004b8b;
    --textColor : #45e6264;
    --white : #ffffff;
    --bgFill : #fafafa;
    --footerFill : #004a80;

    --grayColor1 : #e4e8ea;
    --grayColor2 : #c9cdd0;
    --grayColor3 : #94989B;
    --grayColor4 : #7A7D80;
    --grayColor5 : #5e6264;
    --grayColor6 : #43474A;
    --grayColor7 : #292D2F;

    --sepColor1 : #2887b0;
    --sepColor2 : #61a741;
    --sepColor3 : #e9c46a;
    --sepColor4 : #f4a261;
    --sepColor5 : #e76f51;
    --sepColor6 : #970255;

    --flashBlue : #004A80;
    --flashLightBlue : #2887B0;
    --flashPrimaryRed : #BB0F33;
    --flashSecBlue : #00aad5;
    --flashSecSienna : #EE6947;
    --flashSecOrange : #E87928;
    --flashSecYellow : #F1B53D;
    --flashSecGreen : #65A812;

    --secondaryColor5 : #0775CE;
}
html {
    min-height: 100%;
    box-sizing: border-box;
    font-size: 62.5%; /* Now 10px = 1 rem! */
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    min-height: 100%;
    font-family: var(--primaryFont);
    font-size: 1.6rem;
    color: var(--textColor);
    background-color: var(--bgFill);
}
/* ------------------------------------------------------------------------------------------------
   Content Separators
   ----------------------------------------------------------------------------------------------*/
section.content-separator > div.container {
    max-width: 100%;
    padding: 0;
}
section.content-separator div.row,
section.content-separator div.row div.col-2 {
    height: 13px;
}
section.content-separator div.row {
    margin-left: 0;
    margin-right: 0;
}
section.content-separator div.row div.col-2:nth-of-type(1) {
    background-color: var(--sepColor1);
}
section.content-separator div.row div.col-2:nth-of-type(2) {
    background-color: var(--sepColor2);
}
section.content-separator div.row div.col-2:nth-of-type(3) {
    background-color: var(--sepColor3);
}
section.content-separator div.row div.col-2:nth-of-type(4) {
    background-color: var(--sepColor4);
}
section.content-separator div.row div.col-2:nth-of-type(5) {
    background-color: var(--sepColor5);
}
section.content-separator div.row div.col-2:nth-of-type(6) {
    background-color: var(--sepColor6);
}
/* ------------------------------------------------------------------------------------------------
   Hero Content Styles
   ----------------------------------------------------------------------------------------------*/
#hero_content div.hero-img {
    background-color: #f0f3f4;
    border-radius: .3rem;
    filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.25));
    overflow-y: hidden;
    background-size: cover;
    background-position: center center;
    height: calc(100vw * .25);
    min-height: 15rem;
    /*max-height: 36rem;*/
}
/* ------------------------------------------------------------------------------------------------
 * Footer Styles
 * ----------------------------------------------------------------------------------------------*/
footer.site-footer {
    background-color: var(--footerFill);
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}
@media only screen and (min-width: 600px) {
    footer.site-footer {
        padding: 2.8rem 0 2rem;
    }
}
@media only screen and (min-width: 992px) {
    footer.site-footer {
        padding: 3.4rem 0 2rem;
    }
}
@media only screen and (min-width: 1200px) {
    footer.site-footer {
        padding: 5.7rem 0 3rem;
    }
}
footer.site-footer div.row.footer-v2 {
    align-items: baseline;
    margin-bottom: 4rem;
}
@media only screen and (min-width: 600px) {
    footer.site-footer div.row.footer-v2 {
        margin-bottom: 2rem;
    }
}
@media only screen and (min-width: 992px) {
    footer.site-footer div.row.footer-v2 {
        margin-bottom: 2.5rem;
    }
}
footer.site-footer div.row.footer-v2 h2 {
    color: var(--grayColor1);
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 2rem;
    margin-bottom: .8rem;
    text-transform: uppercase;
}
footer.site-footer div.footer-logo {
    text-align: center;
}
/* Footer Menu */
div.footer-nav {
    padding: 0 2rem 1rem;
    margin: 1.5rem auto 3rem;
    text-align: left;
    border-bottom: 1px solid #4985B0;
}
@media only screen and (min-width: 375px) {
    div.footer-nav {
        padding: 0 2rem 3rem;
    }
}
@media only screen and (min-width: 600px) {
    div.footer-nav {
        padding: 0 0 1rem;
        margin-top: 0;
    }
}
@media only screen and (min-width: 600px) {
    div.footer-nav {
        border-bottom: unset;
        border-right: 1px solid #4985B0;
        padding-left: 5rem;
        padding-bottom: 0;
        height: 298px;
    }
}
@media only screen and (min-width: 768px) {
    div.footer-nav {
        padding-left: 10rem;
        height: 252px;
    }
}
@media only screen and (min-width: 992px) {
    div.footer-nav {
        padding-right: 0;
        padding-left: 25rem;
        height: 250px;
    }
}
@media only screen and (min-width: 1200px) {
    div.footer-nav {
        padding-left: 10rem;
        height: 168px;
    }
}
#menu_footer {
    display: inline-flex;
    list-style: none;
    padding-left: 0;
    width: 100%;
}
#menu_footer .menu_items {
    font-size: 1.2rem;
    line-height: 2.2rem;
    font-weight: 400;
    padding-left: 0;
    margin-bottom: 0;
    color: var(--grayColor1);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
#menu_footer .menu_items a {
    color: var(--grayColor1);
}
#menu_footer li {
    position: relative;
    display: block;
    padding: 0;
    flex-basis: 50%;
}
@media only screen and (min-width: 600px) {
    #menu_footer li {
        flex-basis: 100%;
    }
}
#menu_footer li:hover a:before {
    color:  #FCE8A4;
}
/* Footer Peril Menu */
div.footer-peril-nav {
    padding: 0 2rem 3rem;
    margin: 0 auto 3rem;
    text-align: left;
    border-bottom: 1px solid #4985B0;
}
@media only screen and (min-width: 600px) {
    div.footer-peril-nav {
        border-bottom: unset;
        border-right: 1px solid #4985B0;
        height: 298px;
        padding-left: 2rem;
    }
}
@media only screen and (min-width: 768px) {
    div.footer-peril-nav {
        height: 252px;
        padding-left: 3rem;
    }
}
@media only screen and (min-width: 992px) {
    div.footer-peril-nav {
        height: 250px;
        padding-left: 2rem;
    }
}
@media only screen and (min-width: 1200px) {
    div.footer-peril-nav {
        height: 168px;
        padding-left: 4rem;
    }
}
div.p-menu-footer {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    width: 100%;
}
div.p-menu-footer > div.p-item {
    flex-basis: 50%;
    font-size: 1.2rem;
    line-height: 2.2rem;
}
@media only screen and (min-width: 600px) {
    div.p-menu-footer > div.p-item {
        flex-basis: 100%;
    }
}
@media only screen and (min-width: 1200px) {
    div.p-menu-footer > div.p-item {
        flex-basis: 48%;
    }
}
div.p-menu-footer > div.p-item a {
    font-size: 1.2rem;
    line-height: 2.2rem;
    color: var(--grayColor1);
    font-weight: 400;
}
/* Footer Programs Menu */
div.footer-programs {
    padding: 0 2rem 1rem;
}
@media only screen and (min-width: 600px) {
    div.footer-programs {
        padding: 0 2rem;
    }
}
@media only screen and (min-width: 1200px) {
    div.footer-programs {
        padding-left: 4rem;
    }
}
div.prog-menu-footer {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    width: 100%;
}
div.prog-menu-footer > div.prog-item {
    flex-basis: 50%;
    font-size: 1.2rem;
    line-height: 1.4rem;
    padding-bottom: .8rem;
}
@media only screen and (min-width: 600px) {
    div.prog-menu-footer > div.prog-item {
        flex-basis: 100%;
    }
}
@media only screen and (min-width: 1200px) {
    div.prog-menu-footer > div.prog-item {
        flex-basis: 45%;
        margin-right:10px;
    }
}
div.prog-menu-footer > div.prog-item a {
    font-size: 1.2rem;
    line-height: 1.4rem;
    color: var(--grayColor1);
    font-weight: 400;
}
/* Footer Social Menu */
/** 'sr' stands for screen reader and is used for people with vision challenges **/
.sr-text,
.screen-reader-text {
    display: none;
}
div.footer-social-nav {
    padding: 0;
    margin: 2.5rem 0 0;
    text-align: center;
}
@media only screen and (min-width: 375px) {
    div.footer-social-nav {
        padding: 0 2rem;
    }
}
#menu_footer_social {
    list-style: none;
    padding-left: 1rem;
}
@media only screen and (min-width: 1200px) {
    #menu_footer_social {
        padding-left: 0;
    }
}
#menu_footer_social .menu_items {
    font-size: 1.2rem;
    line-height: 2.2rem;
    font-weight: 300;
    padding-left: 0;
    margin-bottom: 0;
}
#menu_footer_social .menu_items a {
    color: var(--grayColor1);
}
#menu_footer_social li {
    position: relative;
    display: inline-block;
    padding: 0 1.5rem 0 0;
}
#menu_footer_social li:last-of-type {
    padding-right: 0;
}
/* Set up the initial fa-icons on the list items */
#menu_footer_social li a::before {
    font-family: "Font Awesome 5 Brands";
    display: inline-block;
    vertical-align: top;
    padding: 0 .5rem;
    content: '\f16d';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--grayColor1);
    -webkit-font-smoothing: antialiased;
}
#menu_footer_social li a[href*="facebook.com"]::before {
    content: '\f39e'
}
#menu_footer_social li a[href*="twitter.com"]::before {
    content: '\f099'
}
#menu_footer_social li a[href*="youtube.com"]::before {
    content: '\f167'
}
#menu_footer_social li a[href*="podcasts.apple.com"]::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f2ce'
}
#menu_footer_social li a[href*="wordpress.org"]::before {
    content: '\f19a'
}

#menu_footer_social li:hover a:before {
    color:  #FCE8A4;
}
/* Footer Copyright */
div.footer-info {
    margin-top: .5rem;
}
div.footer-copyright {
    margin-top: 2.5rem;
}
div.footer-copyright p, div.footer-info p {
    text-align: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 400;
}
/* Hero/Page Content Styles */
div.contest-intro {
    padding: 2.5rem 15px;
}
@media only screen and (min-width: 768px) {
    div.contest-intro {
        padding: 4rem 15px;
    }
}
@media only screen and (min-width: 992px) {
    div.contest-intro {
        padding: 6rem 15px;
    }
}
@media only screen and (min-width: 1200px) {
    div.contest-intro {
        padding: 8rem 15px;
    }
}
#page_content_top p {
    color: var(--grayColor7);
    font-size: 1.6rem;
    line-height: 2.2rem;
    text-align: center;
    margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
    #page_content_top p {
        font-size: 1.8rem;
        line-height: 2.6rem;
        letter-spacing: -.2px;
    }
}
@media only screen and (min-width: 992px) {
    #page_content_top p {
        font-size: 2rem;
        line-height: 2.8rem;
        letter-spacing: -.2px;
    }
}
@media only screen and (min-width: 1200px) {
    #page_content_top p {
        font-size: 2.2rem;
        line-height: 3rem;
    }
}
/* Winner Styles */
#past_winners {
    background-color: var(--sepColor1);
    padding-top: 40px;
}
@media only screen and (min-width: 768px) {
    #past_winners {
        padding-top: 5rem;
    }
}
@media only screen and (min-width: 992px) {
    #past_winners {
        padding-top: 6rem;
    }
}
@media only screen and (min-width: 1200px) {
    #past_winners {
        padding-top: 8rem;
    }
}
div.winners-wrapper {
    justify-content: center;
}
div.winner-header > h2 {
    color: var(--white);
    font-weight: 700;
    font-size: 2.6rem;
    letter-spacing: -.4px;
    line-height: 3.8rem;
    margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
    div.winner-header > h2 {
        margin-bottom: 3rem;
    }
}
@media only screen and (min-width: 992px) {
    div.winner-header > h2 {
        font-size: 3rem;
        margin-bottom: 3.6rem;
    }
}
@media only screen and (min-width: 1200px) {
    div.winner-header > h2 {
        font-size: 3.2rem;
        margin-bottom: 4rem;
    }
}
div.winners-wrapper > div {
    text-align: center;
}
div.winners-wrapper div.winner {
    margin-bottom: 30px;
}
div.winner > img.headshot {
    max-width: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 3px;
}
@media only screen and (min-width: 600px) {
    div.winner > img.headshot {
        max-width: 70%;
    }
}
@media only screen and (min-width: 1200px) {
    div.winner > img.headshot {
        max-width: 50%;
    }
}
div.winner > h3, div.winner > p {
    color: var(--white);
}
div.winner > h3 {
    font-size: 2rem;
    line-height: 2.4rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -.4px;
}
div.winner > h3.yr_won {
    margin-bottom: 0;
}
div.winner > p {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-style: italic;
}
@media only screen and (min-width: 600px) {
    div.winner > p {
        width: 100%;
    }
}
@media only screen and (min-width: 768px) {
    div.winner > p {
        width: 90%;
    }
}
#rules {
    padding: 4rem 0;
}
@media only screen and (min-width: 1200px) {
    #rules {
        padding: 6rem 0;
    }
}
#rules h3 {
    color: var(--grayColor7);
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 2.8rem;
    letter-spacing: -.4px;
    margin-bottom: 2rem;
}
@media only screen and (min-width: 992px) {
    #rules h3 {
        font-size: 3rem;
        line-height: 3.2rem;
    }
}
#rules p {
    color: var(--grayColor7);
    font-size: 1.4rem;
    line-height: 1.8rem;
}
@media only screen and (min-width: 992px) {
    #rules p {
        font-size: 1.6rem;
        line-height: 2rem;
    }
}
/* Finalists Section */
#finalists {
    width: 90%;
    margin: 0 auto;
}
@media only screen and (min-width: 600px) {
    #finalists {
        width: unset;
        margin: 0;
    }
}
#finalists > .container {
    padding: 4rem 15px;
    border: 3px solid var(--flashBlue);
    border-radius: 3px;
    margin-bottom: 5rem;
}
@media only screen and (min-width: 600px) {
    #finalists > .container {
        margin-bottom: 6rem;
    }
}
@media only screen and (min-width: 768px) {
    #finalists > .container {
        margin-bottom: 8rem;
    }
}

div.vote-header > h2 {
    color: var(--flashBlue);
    font-weight: 700;
    letter-spacing: -.4px;
    text-align: center;
    margin-bottom: 2rem;
}
@media only screen and (min-width: 600px) {
    div.vote-header > h2 {
        font-size: 2.6rem;
        line-height: 2.8rem;
    }
}
@media only screen and (min-width: 992px) {
    div.vote-header > h2 {
        font-size: 3rem;
        line-height: 3.2rem;
        margin-bottom: 3rem;
    }
}
div.vote-header > p {
    text-align: center;
    color: var(--grayColor7);
    font-size: 1.6rem;
    line-height: 2.2rem;
}
@media only screen and (min-width: 992px) {
    div.vote-header > p {
        font-size: 1.8rem;
        line-height: 2.6rem;
        letter-spacing: -.2px;
    }
}
@media only screen and (min-width: 1200px) {
    div.vote-header > p {
        font-size: 2rem;
        line-height: 2.8rem;
    }
}
div.vote-footer > p {
    text-align: center;
    color: var(--grayColor7);
    font-size: 1.4rem;
    line-height: 1.6rem;
}
div.finalists-wrapper {
    justify-content: center;
    margin: 2rem 0 1.5rem;
}
@media only screen and (min-width: 600px) {
    div.finalists-wrapper {
        margin-top: 3rem;
        margin-bottom: 2rem;
    }
}
@media only screen and (min-width: 992px) {
    div.finalists-wrapper {
        margin-top: 4.5rem;
        margin-bottom: 3rem;
    }
}
@media only screen and (min-width: 1200px) {
    div.finalists-wrapper {
        margin-top: 6rem;
        margin-bottom: 4rem;
    }
}
div.finalist-wrapper {
    margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
    div.finalist-wrapper {
        margin-bottom: 4rem;
    }
}

div.finalist {
    text-align: center;
}
@media only screen and (min-width: 768px) {
    div.finalist {
        text-align: left;
    }
}
div.finalist-details {
    margin-top: 1rem;
}
div.finalist-details > img {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.2), 0 6px 20px 0 rgba(0,0,0,.19);
    border-radius: 3px;
    max-width: 65%;
    margin-bottom: 1rem;
}
@media only screen and (min-width: 428px) {
    div.finalist-details > img {
        max-width: 60%;
    }
}
@media only screen and (min-width: 600px) {
    div.finalist-details > img {
        max-width: 40%;
    }
}
@media only screen and (min-width: 768px) {
    div.finalist-details > img {
        max-width: 25%;
        float: left;
        margin-right: 1rem;
    }
}
@media only screen and (min-width: 992px) {
    div.finalist-details > img {
        max-width: 30%;
    }
}
@media only screen and (min-width: 1200px) {
    div.finalist-details > img {
        max-width: 30%;
    }
}
div.finalist-details > p {
    margin-bottom: 5px;
    line-height: 2.1rem;
}
div.finalist > h3 {
    font-family: var(--secondaryFont);
    font-size: 2rem;
    line-height: 2.4rem;
    font-weight: 700;
    letter-spacing: -.4px;
    color: var(--sepColor2);
}
div.finalist > h4 {
    font-weight: 600;
    color: var(--grayColor7);
    font-size: 1.8rem;
    line-height: 2rem;
}
@media only screen and (min-width: 992px) {
    div.finalist > h3 {
        font-size: 2.6rem;
        line-height: 3rem;
    }
}
div.finalist p {
    color: var(--grayColor7);
    font-size: 1.6rem;
    line-height: 2.2rem;
}
@media only screen and (min-width: 768px) {
    div.finalist > p {
        text-align: left;
    }
}
@media only screen and (min-width: 1200px) {
    div.finalist > p {
        width: 90%;
        margin: 0 auto 1rem;
    }
}
.fin-headshot.vote {
    cursor: pointer;
}
div.vote-result {
    display: none;
    opacity: 0;
    border: 3px solid var(--flashBlue);
    border-radius: 5px;
    padding: 10px 0;
    margin: 1rem 0;
    transition: all .5s ease-in-out 3s;
    font-weight: 600;
    text-align: center;
}
div.vote-result.success {
    border-color: var(--sepColor2);
    background-color: var(--sepColor2);
    color: var(--white);
}
div.vote-result.fail {
    border-color: #ff0000;
    background-color: #ff0000;
    color: var(--white);
}
div.vote-result.show {
    opacity: 1;
    display: block;
}
div.vote-result p {
    font-size: 1.6rem;
    line-height: 1.8rem;
    margin-bottom: 0;
    color: inherit;
}
/* Modal Dialog */
#vote_reason {
    background: rgba(0,0,0,.4);
}
#vote_reason .modal-dialog {
    margin: 25% auto;
}
#vote_reason .modal-header {
    padding: 1.5rem 1rem;
}
#vote_reason .modal-header h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    color: var(--flashBlue);
    font-weight: 600;
    letter-spacing: -.4px;
    font-size: 2rem;
    line-height: 2.4rem;
}
#vote_reason p.note {
    width: 100%;
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: var(--grayColor6);
}
div.vote-input {
    margin-bottom: 1rem;
}
div.vote-input label, div.vote-input textarea {
    width: 100%;
}
div.vote-input textarea {
    height: 12rem;
    resize: none;
    font-size: 1.6rem;
    line-height: 1.8rem;
    padding: 4px 8px;
    font-weight: 300;
    color: var(--grayColor7);
    border: 1px solid var(--grayColor2);
    border-radius: 3px;
}
div.vote-input textarea:focus-visible {
    border-style: solid;
    border-color: var(--flashBlue);
    outline: none;
}
div.vote-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: .5rem;
}
div.vote-buttons input.submit,
div.vote-buttons input.cancel {
    background: var(--flashSecGreen);
    padding: 4px 24px;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: .4px;
    border: 1px solid var(--flashSecGreen);
    border-radius: 3px;
    margin-right: 2rem;
}
div.vote-buttons input.cancel {
    background: #ff0000;
    border: 1px solid #ff0000;
    margin-right: 0;
}
/* Current Winner Styles */
#page_top_winner {
    width: 90%;
    margin: 0 auto;
}
@media only screen and (min-width: 600px) {
    #page_top_winner {
        width: 100%;
    }
}
div.winner-top {
    border: 3px solid var(--flashBlue);
    border-radius: 5px;
    padding: 0;
    margin: 3rem auto 4rem;
}
@media only screen and (min-width: 1200px) {
    div.winner-top {
        margin-top: 6rem;
        margin-bottom: 8rem;
    }
}
div.winner-container {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
div.winner-container > div.header {
    flex-basis: 100%;
    text-align: left;
    background-color: var(--flashBlue);
    height: 130px;
}
@media only screen and (min-width: 768px) {
    div.winner-container > div.header {
        padding: 1rem 0;
        height: 110px;
    }
}
@media only screen and (min-width: 992px) {
    div.winner-container > div.header {
        padding: 1.5rem 0;
        height: 120px;
    }
}
@media only screen and (min-width: 1200px) {
    div.winner-container > div.header {
        padding: 2rem 0;
        height: 130px;
    }
}
div.winner-container > div.header > h3,
div.winner-container > div.header > h2,
div.winner-container > div.header > p.creds {
    text-align: center;
}
@media only screen and (min-width: 1200px) {
    div.winner-container > div.header > h3,
    div.winner-container > div.header > h2,
    div.winner-container > div.header > p.creds {
        width: 40%;
    }
}
div.winner-container > div.win-announce > h2 {
    color: var(--white);
    font-weight: 900;
    text-align: center;
}
@media only screen and (min-width: 1200px) {
    div.winner-container > div.win-announce > h2 {
        font-size: 3rem;
        line-height: 3rem;
    }
}
div.winner-container > div.win-announce > h3 {
    color: var(--white);
    font-weight: 600;
    font-style: italic;
    letter-spacing: -.4px;
    text-align: center;
}
div.winner-container > div.header > h3 > span {
    font-style: normal;
}
@media only screen and (min-width: 768px) {
    div.winner-container > div.win-announce > h2,
    div.winner-container > div.win-announce > h3 {
        color: var(--white);
        text-align: left;
    }
}
@media only screen and (min-width: 1200px) {
    div.winner-container > div.win-announce > h3 {
        font-size: 2rem;
        line-height: 2.4rem;
    }
}
div.winner-container > div.fi-thumb {
    flex-basis: 100%;
    text-align: center;
    position: relative;
}
@media only screen and (min-width: 768px) {
    div.winner-container > div.fi-thumb {
        flex-basis: 36%;
    }
}
div.win-announce {
    flex-basis: 100%;
    margin-top: -125px;
    padding: 0 15px;
}
@media only screen and (min-width: 375px) {
    div.win-announce {
        margin-top: -115px;
    }
}
@media only screen and (min-width: 600px) {
    div.win-announce {
        margin-top: -105px;
    }
}
@media only screen and (min-width: 768px) {
    div.win-announce {
        flex-basis: 60%;
        padding: 0;
    }
}
div.fi-thumb {
    margin-top: -80px;
}
@media only screen and (min-width: 768px) {
    div.fi-thumb, div.win-announce {
        margin-top: -105px;
    }
}
@media only screen and (min-width: 992px) {
    div.fi-thumb {
        margin-top: -65px;
    }
    div.win-announce {
        margin-top: -100px;
    }
}
@media only screen and (min-width: 1200px) {
    div.fi-thumb, div.win-announce {
        margin-top: -110px;
    }
}
div.fi-thumb > img {
    max-width: 65%;
    border: 1px solid var(--grayColor2);
    border-radius: 3px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.2), 0 6px 20px 0 rgba(0,0,0,.19);
}
@media only screen and (min-width: 600px) {
    div.fi-thumb > img {
        max-width: 45%;
    }
}
@media only screen and (min-width: 768px) {
    div.fi-thumb > img {
        max-width: 85%;
    }
}
@media only screen and (min-width: 992px) {
    div.fi-thumb > img {
        max-width: 80%;
    }
}
@media only screen and (min-width: 1200px) {
    div.fi-thumb > img {
        max-width: 70%;
    }
}
div.winner-detail > div.overlay {
    position: absolute;
    width: calc(90% - 29px);
    left: 9.4%;
    top: 230px;
    background: var(--flashBlue);
    padding: 5px 0;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
@media only screen and (min-width: 412px) {
    div.winner-detail > div.overlay {
        left: 9%;
        top: 275px;
    }
}
@media only screen and (min-width: 428px) {
    div.winner-detail > div.overlay {
        left: 8.75%;
        top: 290px;
    }
}
@media only screen and (min-width: 600px) {
    div.winner-detail > div.overlay {
        left: 7.6%;
        width: calc(90% - 28px);
        top: 425px;
    }
}
@media only screen and (min-width: 768px) {
    div.winner-detail > div.overlay {
        width: 28.1%;
        left: 16px;
        top: 25px;
    }
}
@media only screen and (min-width: 992px) {
    div.winner-detail > div.overlay {
        width: 28.5%;
        top: 70px;
    }
}
@media only screen and (min-width: 1200px) {
    div.winner-detail > div.overlay {
        width: 28.8%;
        left: 15.5px;
        top: 120px;
    }
}
div.winner-detail > div.overlay > h4 {
    margin-bottom: 0;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    letter-spacing: -.4px;
}
@media only screen and (min-width: 1200px) {
    div.winner-detail > div.overlay > h4 {
        font-size: 1.8rem;
        line-height: 1.8rem;
    }
}
div.winner-container div.winner-detail {
    position: relative;
    flex-basis: 100%;
    padding: 0 15px;
    text-align: center;
    margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
    div.winner-container div.winner-detail {
        margin-top: 1rem;
    }
}
@media only screen and (min-width: 992px) {
    div.winner-container div.winner-detail {
        margin: 1rem 1rem .5rem 5%;
    }
}
div.winner-container div.winner-detail > img {
    max-width: 90%;
    border: 1px solid var(--grayColor2);
    border-radius: 3px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.2), 0 6px 20px 0 rgba(0,0,0,.19);
    margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
    div.winner-container div.winner-detail > img {
        max-width: 30%;
        float: left;
        margin-top: -120px;
        margin-right: 1rem;
        margin-bottom: 0;
    }
}
@media only screen and (min-width: 992px) {
    div.winner-container div.winner-detail > img {
        margin-right: 2rem;
    }
}
@media only screen and (min-width: 1200px) {
    div.winner-container div.winner-detail > img {
        margin-bottom: 1rem;
    }
}
div.winner-container > div.contest-detail {
    padding: 0 15px;
    margin: 0 0 2rem;
}
@media only screen and (min-width: 992px) {
    div.winner-container > div.contest-detail {
        margin-left: 5%;
    }
}
@media only screen and (min-width: 1200px) {
    div.winner-container > div.contest-detail {
        margin: 1rem 1rem 2rem 5%;
    }
}
#page_top_winner div.winner-container > div.winner-detail > p,
#page_top_winner div.winner-container > div.contest-detail > p {
    color: var(--grayColor7);
    margin-bottom: 5px;
    text-align: center;
}
@media only screen and (min-width: 768px) {
    #page_top_winner div.winner-container > div.winner-detail > p,
    #page_top_winner div.winner-container > div.contest-detail > p {
        text-align: left;
    }
}
@media only screen and (min-width: 1200px) {
    #page_top_winner div.winner-container > div.winner-detail > p,
    #page_top_winner div.winner-container > div.contest-detail > p {
        font-size: 1.6rem;
        line-height: 2rem;
    }
}
/*
 -- Nav menu styles brought over from main FLASH css 9/4/24
 */
/* ------------------------------------------------------------------------------------------------
 * - Main Nav Style
 * ----------------------------------------------------------------------------------------------*/
@media only screen and (min-width: 768px) {
    #main_menu {
        flex-basis: 75%;
        margin-left: -2.25rem;
    }
}
@media only screen and (min-width: 992px) {
    #main_menu {
        flex-basis: auto;
        margin-left: 0;
    }
}
#main_menu.navbar-collapse.show {
    background: rgba(0,0,0,0.95);
    z-index: 30;
    padding: 1rem;
    margin-top: 1rem;
}
#menu-main-nav {
    justify-content: space-evenly;
    width: 100%;
}
#menu-main-nav > li > a {
    display: inline-block;
    position: relative;
}
#menu-main-nav > li > a {
    font-size: 1.4rem;
    line-height: 2.4rem;
    letter-spacing: -.4px;
    color: var(--grayColor6);
}
@media only screen and (min-width: 992px) {
    #menu-main-nav > li > a {
        font-size: 1.6rem;
        line-height: 2.6rem;
    }
}
#main_menu.navbar-collapse.show #menu-main-nav > li > a {
    font-size: 1.6rem;
    line-height: 2.6rem;
    color: var(--white);
}
#menu-main-nav > li > a::after {
    display: block;
    position: absolute;
    width: .585rem;
    height: .585rem;
    content: '';
    border-top: 2px solid var(--grayColor4);
    border-right: 2px solid var(--grayColor4);
    transform: rotate(45deg);
    right: -.75rem;
    bottom: .8rem;
}
@media only screen and (min-width: 992px) {
    #menu-main-nav > li > a::after {
        right: -1rem;
    }
}
#menu-main-nav > li.menu-item-has-children {
    position: relative;
}
#main_menu.navbar-collapse.show #menu-main-nav ul.sub-menu {
    padding-left: 20px;
}
#menu-main-nav ul.sub-menu {

}
#main_menu.navbar-collapse.show #menu-main-nav ul.sub-menu > li {
    list-style-type: none;
    padding: 2px 0;
    border-bottom: none;
}
#menu-main-nav ul.sub-menu > li {
    list-style-type: none;
    padding: 2px 1.5rem;
    border-bottom: 1px solid #dcdcdc;
}
#menu-main-nav ul.sub-menu > li:last-of-type {
    border-bottom: none;
}
#menu-main-nav ul.sub-menu > li:hover {
    background: var(--headerColor);
}
#menu-main-nav ul.sub-menu > li:hover > a {
    color: #fff;
}
#main_menu.navbar-collapse.show #menu-main-nav ul.sub-menu > li > a {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2.4rem;
    color: var(--white);
}
#menu-main-nav ul.sub-menu > li > a {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2.4rem;
    color: var(--grayColor6);
}
#menu-main-nav ul.sub-menu > li > a:hover {
    color: #fff;
    text-decoration: none;
}
@media only screen and (min-width: 768px) {
    #menu-main-nav ul.sub-menu {
        display: none;
        position: absolute;
        width: 172px;
    }
}
#menu-main-nav ul.sub-menu.show {
    display: block;
    z-index: 20;
    background: #fff;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.25);
}
@media only screen and (min-width: 768px) {
    #menu-main-nav ul.sub-menu.show {
        top: 30px;
        padding: 1rem 1.5rem .5rem;
    }
}
@media only screen and (min-width: 1200px) {
    #menu-main-nav ul.sub-menu.show {
        top: 36px;
        padding: 2rem 1.5rem .5rem;
    }
}
/* ------------------------------------------------------------------------------------------------
   Header Styles
   ----------------------------------------------------------------------------------------------*/
header.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 2px rgba(0,0,0,0.1);
    height: 7rem;
}
@media only screen and (min-width: 768px) {
    header.site-header {
        height: 11.5rem;
    }
}
@media only screen and (min-width: 992px) {
    header.site-header {
        height: 10rem;
    }
}
@media only screen and (min-width: 1200px) {
    header.site-header {
        height: 11rem;
    }
}
header.site-header nav {
    padding: 5px 5px 0 0;
}
header.site-header nav a {
    display: block;
    margin: 0 1rem;
}
header.site-header nav a > img {
    max-width: 90%;
    width: 90%;
}
@media only screen and (min-width: 768px) {
    header.site-header nav {
        padding: 1.876rem 0 0 0.778rem;
        align-items: end;
        flex-wrap: wrap;
    }
    header.site-header nav a {
        margin: 0;
    }
    div.asl_w_container {
        min-width: 150px;
        width: 150px;
    }
}
@media only screen and (min-width: 992px) {
    header.site-header nav {
        padding: 1.876rem 0 0 2.778rem;
        flex-wrap: nowrap;
    }
    header.site-header nav a > img {
        max-width: 100%;
        width: 100%;
    }
}
@media only screen and (min-width: 1200px) {
    header.site-header nav a > img {
        max-width: 110%;
        width: 110%;
    }
    div.asl_w_container {
        min-width: 200px;
        width: 200px;
    }
}
div.navbar-right.t-strong {
    z-index: 500;
    width: 100%;
}
#prog_menu {
    margin: 2rem 0 0;
    background-color: rgba(0,0,0,.675);
    border-radius: .3rem;
    padding: 3rem 2rem 2rem 2rem;
}
#prog_menu li a {
    color: var(--white);
    font-size: 1.4rem;
    line-height: 3rem;
    font-weight: 600;
}
@media only screen and (min-width: 768px) {
    .navbar-expand-md .navbar-toggler {
        display: none;
    }
}
