/* =========================
   Home Banner
========================= */

#homeBanner {
}

#homeBannerHeader {
    background: linear-gradient(to bottom, #22405C, #122435);
}

#homeBannerHeaderTitle {
    padding: 40px 10px 54px;
    color: var(--primary);
    font-weight: 600;
    font-size: 42px;
    line-height: 1;
    max-width: var(--content-max-width);
    margin: 0 auto 4px;
    white-space: nowrap;
}

#homeBannerBar {
    height: 31px;
    background-color: var(--red);
}

@media (max-width: 800px) {
    #homeBanner {
        position: relative;
        z-index: -1;
    }

    #homeBannerHeaderTitle {
        padding: 30px 15px 280px;
        font-size: 28px;
        line-height: 30px;
        white-space: normal;
    }

    #homeBannerHeaderTitleBreak {
        display: none;
    }
}

/* =========================
   Hero Section
========================= */

#hero {
    display: grid;
    grid-template-columns: 6fr 4fr;
    align-items: flex-start;
    gap: 30px;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

#hero .button {
    width: fit-content;
}

#heroImage {
    max-width: 820px;
    margin-top: -60px;
    position: relative;
    z-index: 1;
}

#heroSidebar {
    min-width: 300px;
    max-width: 100%;
    margin-top: -275px;
    position: relative;
    z-index: 2;
}

.heroSidebarForm {
    background-color: var(--light-blue);
    box-shadow: 2px 2px 5px 0 #00000059;
    padding: 5px 30px 30px;
}

#heroSidebarFormTitle {
    color: var(--blue);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    margin-top: 20px;
    margin-bottom: 8px;
}

#heroSidebarFormSubtitle {
    color: var(--blue);
    margin-bottom: 12px;
}

#heroSidebarFormRequired {
    color: var(--red);
    font-size: 14px;
    padding-bottom: 4px;
}

#heroSidebarFormFields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#heroSidebarFormFieldsName {
    display: flex;
    gap: 12px;
}

#heroSidebarFormFieldsNameFirst {
    flex: 1;
}

#heroSidebarFormFieldsNameLast {
    flex: 1;
}

.heroSidebarFormFieldsGroup {
}

.heroSidebarFormFieldsGroup input,
.heroSidebarFormFieldsGroup select,
#heroSidebarFormFieldsNameFirst input,
#heroSidebarFormFieldsNameLast input {
    width: 100%;
    padding: 6px 12px;
    border: 2px solid #ccc;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: black;
    background-color: white;
}

.heroSidebarFormFieldsGroup select {
    padding-left: 8px;
}

.heroSidebarFormFieldsGroup input::placeholder,
#heroSidebarFormFieldsNameFirst input::placeholder,
#heroSidebarFormFieldsNameLast input::placeholder {
    color: black;
}

#heroSidebarFormFieldsSubmit {
    text-transform: lowercase;
}

#heroSidebarFormFieldsSubmit:hover {
    opacity: 0.8;
}

#heroSidebarTestimonial {
    padding: 24px 0 60px;
}

#heroSidebarTestimonialQuote {
    font-size: 18px;
    color: var(--blue);
    margin-bottom: 8px;
}

#heroSidebarTestimonialAuthor {
    font-size: 14px;
    color: var(--blue);
    margin-bottom: 20px;
}

#heroSidebarTestimonialBadges {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
}

#heroSidebarTestimonialBadges img {
    width: auto;
    min-width: 0;
    object-fit: contain;
}

@media (max-width: 800px) {
    #hero {
        display: flex;
        flex-direction: column;
        padding: 0 15px;
        position: relative;
        z-index: 10;
        isolation: isolate;
    }

    #heroSidebar {
        display: contents;
    }

    .heroSidebarForm {
        width: 100%;
        padding: 4px 15px 15px;
        margin-top: -300px;
        position: relative;
        z-index: 1;
        order: 1;
    }

    #heroImage {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin-top: 20px;
        order: 2;
    }

    #heroSidebarTestimonial {
        order: 3;
        padding: 24px 15px 60px;
    }

    #heroSidebarTestimonialBadges {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    #heroSidebarTestimonialBadges img:first-child {
        max-width: 300px;
    }

    #heroSidebarTestimonialBadges img:last-child {
        max-width: 200px;
    }
}

/* =========================
   Info Section
========================= */

#info {
    background-color: var(--light-blue);
    padding: 40px 20px 120px;
}

#info .button {
    width: fit-content;
}

#infoTagline {
    max-width: var(--content-max-width);
    margin: 0 auto 30px;
    padding: 0 0 10px;
    font-size: 42px;
    font-weight: 600;
    color: var(--blue);
    text-align: center;
}

#infoContent {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    max-width: var(--content-max-width);
    margin: 0 auto;
    align-items: start;
}

#infoContentVideo {
    aspect-ratio: 16 / 9;
}

#infoContentVideoPoster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

#infoContentVideo iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#infoContentText {
}

#infoContentTextTitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 16px;
}

#infoContentTextBody {
    font-size: 16px;
    margin-bottom: 16px;
}

#infoContentTextList {
    margin-bottom: 24px;
    padding-left: 20px;
}

.infoContentTextListItem {
    font-size: 16px;
    margin-bottom: 8px;
}

#infoContentTextLink {
}

#infoContentTextLink:hover {
}

@media (max-width: 800px) {
    #info {
        padding: 0 20px 310px;
    }

    #infoTagline {
        font-size: 32px;
        line-height: 1;
        padding-top: 50px;
    }

    #infoContent {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #infoContentVideo {
        width: 100%;
    }

    #infoContentText {
        width: 100%;
    }

    #infoContentTextTitle {
    }

    #infoContentTextLink {
        margin: 0 auto;
    }
}

/* =========================
   Mission Section
========================= */

#mission {
    background-color: var(--red);
    border: 4px solid var(--primary);
    margin-top: -80px;
    padding: 40px 50px;
    position: relative;
    z-index: 1;
    max-width: var(--content-max-width);
    margin-left: auto;
    margin-right: auto;
}

#mission .button {
    width: fit-content;
}

#missionStats {
    text-align: center;
    margin-bottom: 30px;
}

#missionStatsTitle {
    color: var(--primary);
    font-size: 30px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 8px;
}

#missionStatsSubtitle {
    color: var(--primary);
    font-size: 16px;
}

#missionStatsSubtitleLink {
    color: var(--primary);
}

#missionStatsSubtitleLink:hover {
    opacity: 0.8;
}

#missionContent {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

#missionContentText {
    flex: 2;
}

#missionContentTextTitle {
    color: var(--primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

#missionContentTextBody {
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 16px;
}

#missionContentTextQuote {
    color: var(--primary);
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 8px;
}

#missionContentTextStatement {
    color: var(--primary);
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 24px;
}

#missionContentTextLink {
    max-width: 180px;
    white-space: nowrap;
}

#missionContentTextLink:hover {
}

#missionContentImage {

}

#missionContentImageFigure {
    text-align: center;
    max-width: 100%;
}

#missionContentImageFigureImg {
}

#missionContentImageFigureCaption {
    color: var(--primary);
    font-size: 16px;
    margin-top: 10px;
    white-space: nowrap;
}

@media (max-width: 800px) {
    #mission {
        border: none;
        padding: 30px 20px 0;
        margin: -250px 20px 0;
        max-width: var(--content-max-width);
    }

    #missionContent {
        flex-direction: column;
        gap: 20px;
    }

    #missionContentText {
    }

    #missionContentImage {
        align-self: center;
    }

    #missionContentTextLink {
        margin: 0 auto;
    }
}

/* =========================
   Testimonials Section
========================= */

#testimonials {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 60px 20px 0;
}

#testimonials .button {
    width: fit-content;
}

#testimonialsTagline {
    text-align: center;
    margin-bottom: 40px;
}

#testimonialsTaglineTop {
    color: var(--blue);
    font-size: 38px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

#testimonialsTaglineBottom {
    color: black;
    font-size: 24px;
    line-height: 1;
}

#testimonialsContent {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

#testimonialsContentLeft {
    flex: 1;
    text-align: center;
    padding: 50px 40px 50px 50px;
}

#testimonialsContentLeftTitle {
    color: var(--blue);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

#testimonialsContentLeftImage {
    max-width: 300px;
    margin: 0 auto 20px;
}

#testimonialsContentLeftSubtitle {
    color: var(--blue);
    font-size: 24px;
    line-height: 1;
}

#testimonialsContentRight {
    flex: 2;
    padding: 50px;
    position: relative;
}

#testimonialsContentRight::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ccc;
}

#testimonialsContentRightList {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.testimonialsContentRightListItem {
    margin-bottom: 24px;
}

.testimonialsContentRightListItemQuote {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.testimonialsContentRightListItemAuthor {
    font-size: 14px;
}

#testimonialsContentRightLink {
}

@media (max-width: 800px) {
    #testimonials {
        padding: 30px 20px;
    }

    #testimonialsTaglineTop {
        font-size: 28px;
    }

    #testimonialsContent {
        flex-direction: column;
    }

    #testimonialsContentLeft {
        width: 100%;
        padding: 20px 0;
        border-bottom: none;
        position: relative;
    }

    #testimonialsContentLeft::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: -20px;
        right: -20px;
        height: 2px;
        background-color: var(--disabled);
    }

    #testimonialsContentRight {
        width: 100%;
        padding: 20px 0;
    }

    #testimonialsContentRight::before {
        display: none;
    }

    #testimonialsContentRightLink {
        margin: 0 auto;
    }
}

/* =========================
   Help Section
========================= */

#help {
    background-color: #E2EAF1;
}

#helpTagline {
    color: var(--blue);
    font-size: 38px;
    font-weight: 600;
    line-height: 1;
    padding-top: 60px;
    text-align: center;
    margin: 0;
}

#helpImage {
    width: 100%;
    display: block;
}

@media (max-width: 800px) {
    #helpTagline {
        padding: 30px 0 12px;
        max-width: var(--content-max-width);
        margin: 0 auto;
        font-size: 21px;
    }
}
