
.homeIntroBox{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    margin-top: 30px;
}
.homeIntroText{
    width: 50%;
}
.homeIntroTitle{
    color: #001d3d;
    text-align: center;
    font-family: "Poppins";
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 0;
}
.homeIntroPara{
    font-family: "Poppins";
    font-size: 18px;
    margin-top: 0;
}
.homeIntroImage{
    margin-top: 60px;
    margin-left: 20px;
    width: 32%;
}
.pageHeadline{
    color: #ec1e79;
    font-style: italic;
    font-family: "Poppins";
    font-weight: 600;
    font-size: 30px;
    margin: 30px auto;
    line-height: 1.2;
}
.homeTwoColumn{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 20px;
}
.homeLeftColumn{
    width: 45%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.homeRightColumn{
    width: 55%;
    padding: 10px 10px 10px 30px;
}
.homeInfoBox{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
    border: solid 1px lightgray;
}
.homeInfoBoxImage{
    width: 50%;
}
.homeInfoBoxText{
    padding: 10px;
    width: 50%;
}
.homeInfoBoxTitle{
    font-family: "Poppins";
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 0;
    margin-top: 0;
}
.twentyPointFont{
    font-size: 20px;
}
.homeInfoBoxLink{
    font-family: "Poppins";
    text-align: center;
    display: block;
    color: #001d3d;
    font-size: 16px;
    font-style: italic;
}
.homeInfoBoxLine{
    font-family: "Poppins";
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.1;
}
.homeInfoBoxPercent{
    font-size: 18px;
    font-family: "Poppins";
    font-weight: 700;
}
.pinkText{
    color: #ec1e79;
}
.semiBoldText{
    font-family: "Poppins";
    font-weight: 600;
}
.homeEmphasisBox{
    margin: auto;
    margin-top: 30px;
    width: 80%;
    height: 340px;
    z-index: -20;
}
.homeEmphasisStatement{
    font-family: "Poppins";
    font-weight: 600;
    font-style: italic;
    font-size: 30px;
    margin-left: 20%;
    line-height: 1.2;
    color: #001d3d;
}
.homeNormalPara{
    font-family: "Poppins";
    font-size: 18px;
    line-height: 1.2;
    margin-top: 0;
}
.homeEmphasisPara{
    font-family: "Poppins";
    font-weight: 600;
    font-size: 20px;
    color: #001d3d;
    line-height: 1.2;
    font-style: italic;
}
.bigStarter{
    font-size: 26px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
}



#homeEmphasisStatement{
    transition: opacity 1.5s;
}
#homeEmphasisStatementMobile{
    transition: opacity 1.5s;
}


@media(max-width:767px){
    .homeIntroBox{
        flex-direction: column;
    }
    .homeIntroText, .homeIntroImage{
        width: 95%;
        margin: auto;
    }
    .pageHeadline{
        font-size: 24px;
        width: 95%;
    }
    .homeTwoColumn{
        flex-direction: column;
    }
    .homeLeftColumn, .homeRightColumn{
        width: 95%;
        margin: auto;
        padding: 0;
    }
    .homeEmphasisBox{
        margin: 30px auto;
        width: 95%;
        height: 175px;
    }
    .homeEmphasisStatement{
        font-size: 24px;
        margin: auto;
    }
    .homeInfoBox{
        flex-direction: column;
    }
    .homeInfoBoxImage{
        width: 100%;
    }
    .homeInfoBoxText{
        width: auto;
        padding: 20px;
    }
}