/****************************************GENERAL****************************************/
body {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
}
.homePageBlockContainer, .heroContainer {
    background: linear-gradient(#EEEECC20, #FFFFCC20), url(/wp-content/uploads/2025/04/QH-Login-mockup-1.png);
    background-size: cover;
}
.homePageBlockContainer {
    color: white;
    padding: 30px 0px;
}
.homePageBlock {
    margin: auto;
    max-width: 800px;
    padding: 35px 0px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
}
.homePageBlockIconContainer {
    font-size: 56pt;
}
.homePageBlock .homePageBlockIconContainer:first-child {
    text-align: right;
}
.homePageBlock .homePageBlockIconContainer:last-child {
    text-align: center;
}
.homePageBlockIcon {
    height: 100px;
    width: auto;
    margin: 15px;
}
.homePageBlockTextContainer {}
.homePageBlockText {
    padding: 15px;
}
main {
    font-size: 12pt;
}

/****************************************HERO****************************************/
.heroContainer {
    position: relative;
    padding: 40px 30px;
    min-height: 50vh;
    width: 100vw;
}
.heroContent {
    position: absolute;
    max-width: 500px;
    background: #FFFFFFC0;
    padding: 20px;
    color: #123164;
}
@media screen and (max-width: 600px) {
    .heroContainer { padding: 25px 15px; }
    .heroContent { max-width: 90vw; padding: 5vw; }
    .heroContent>h2 { margin-top: 0px; }
}
.heroContent h2 {
    font-size: 20pt;
    font-weight: bold;
}
.heroContent>h2 {
    color: #2895d2;
}
.preload>.heroContent {
    animation-duration: 1ms !important;
}

@keyframes slideAway {
    from {
        translate: 0 0;
    }
    to {
        translate: -100vw 0;
    }
}
.heroContent:not(.active) {
    animation-duration: 0.75s;
    animation-name: slideAway;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-timing-function: ease-out;
    translate: -100vw 0;
}

@keyframes slideIn {
    from {
        translate: 100vw 0;
    }
    to {
        translate: 0 0;
    }
}
.heroContent.active {
    animation-duration: 0.75s;
    animation-name: slideIn;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-timing-function: ease-out;
    translate: 0 0;
}

main .btn-hero, main .btn-hero:visited {
    background-color: #ED8134;
    color: white;
}
main .btn-hero:hover, main .btn-hero:active {
    background-color: #ED8134;
    color: white;
}

/****************************************HELP BLOCK****************************************/
.homePageBlocksContainer .homePageBlockContainer:nth-child(1) {
    background: #123164;
}
.homePageBlocksContainer .homePageBlockContainer:nth-child(1) .btn {
    color: #3498db;
}
.helpBlock {
    display: grid;
    grid-template-columns: 250px auto 100px;
    grid-template-rows: 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 0px;
}
@media screen and (max-width: 600px) {
    .helpBlock { display: block; padding: 10px; }
    .helpBlock>:nth-child(2) { margin: 25px 0px; }
    .helpBlock>:nth-child(3) { display: none; }
}

.helpPhoneLink {
    display: inline-block;
    background-color: #EEE;
    padding: 5px 8px;
    margin: 5px 0px;
    font-weight: normal;
}

/****************************************THREE HIGHLIGHTS BLOCK****************************************/
.homePageBlocksContainer .homePageBlockContainer:nth-child(2) {
    background: #FFF;
}
.homePageBlocksContainer .homePageBlockContainer:nth-child(2) .btn {
    color: #123164;
}
.threeHighlightsBlock {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 0px;
}
.threeHighlightsBlock>a {
    display: block;
}

.homeTripleTile { text-align: center; font-weight: bold; font-size: 15pt; }
.homeTripleIcon { width: 70px; height: auto; padding: 10px; }
@media screen and (max-width: 600px) {
    .threeHighlightsBlock { grid-column-gap: 10px; }
    .homeTripleTile { font-size: 12pt; }
    .homeTripleIcon { width: 55px; padding: 5px; }
}

/****************************************PROGRAM HIGHLIGHT****************************************/
.homePageBlocksContainer .homePageBlockContainer:nth-child(3) {
    background: #2895d2;
}
.programHighlight {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 0px;
}
.programImage {
    border: 6px solid #123164;
    overflow: hidden;
    background: center / cover url(/wp-content/uploads/2024/07/diabetes-1.png);
    width: 150px;
    height: 150px;
    border-radius: 75px;
}
.programHighlightLogo {
    position: relative;
    top: -4px;
    left: 5px;
    height: 16pt;
    width: auto;
    border-radius: 5px;
}
.programHighlightButton, .programHighlightButton:visited {
    color: #2895d2;
    background-color: #FFF;
    padding: 10px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
}
.programHighlightButton:hover, .programHighlightButton:active {
    color: #2895d2;
    text-decoration: none;
    box-shadow: 0px 0px 10px 5px #FFF3;
}
.programHighlight h2 {
    font-size: 14pt;
    font-weight: bold;
}






    main .btn-hero, main .btn-hero:visited {
        margin-right: 5px; padding: 5px 10px; border-radius: 5px; margin-top: 5px;
        font-size: 12pt; font-weight: normal; text-transform: none;
        border: none; cursor: pointer;
    }
    main .btn-hero:hover, main .btn-hero:active { text-decoration: none; background-color: #ED8134E0; }