

body{
    font-family: "Red Hat Text",sans-serif;
}
.navigationHeader {
    background: #393e45;
    height: 50px;
    display: flex;
}

.navigationHeader > div{
    position: relative;
    width: 100%;
    align-items: center;
    display: flex;
}

.navigationLeft
{
    justify-content: flex-start;
    margin-left:4px;
}

.navigationRight
{
    justify-content: flex-end;
    margin-right:4px;
}

.navigationCenter{
    justify-content: center;
    font-size:14px;
}

.navigationCenter > img{
    height: 40px;
}

.navigationStyle
{
    height: 44px;
    line-height: 44px;
    font-size: var(--large-font-size);
    color: var(--lightest-color);
    box-sizing: border-box;
    cursor: pointer;
    min-width: 44px;
    text-align: left;
}

.viewContentContainer {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
}


.thirdSplashContainer{
    display: flex;
    width:100%;
    max-width: 1170px;
    margin: 0 auto;
}

.thirdSplashContainer > .splitRowLeft{
    width:30%;
}

.thirdSplashContainer > .splitRowRight{
    width:70%;
}

.thirdSplashContainer img{
    padding:60px;
    box-sizing: border-box;
}

.fourthSplashContainer{
    display: flex;
    width:100%;
    background: #f4f4f4;
}

.fourthSplashContainer > .splitRowLeft{
    width:70%;
}

.fourthSplashContainer > .splitRowRight{
    width:30%;
}

.fourthSplashContainer img{
    padding:60px;
    padding-right: 30px;    
    box-sizing: border-box;
}

.fourthSplashContainer .splashContentRight{
    box-sizing: border-box;
    padding:30px;
    padding-right: 60px;
    text-align: left;
}


.splashContainer{
    display: flex;
    width:100%;
    height:425px;
    max-width: 1170px;
    margin: 0 auto;
}

.secondSplashContainer{
    display: flex;
    width:100%;
    background: url('../images/growing_money.png') no-repeat center bottom; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.splashTwoHeading{
    color: #393e45;
    font-size: 16px;
    line-height: 30px;
    font-weight: 100;
    width: 100%;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
    background: #ffffffda;
}

.splashCard{
    color: #005f9e;
    font-size: 40px;
    font-weight: 100;
    width: 100%;
    margin: 80px;
    text-align: center;
    box-sizing: border-box;
    background: #ffffffe6;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

/*
.splashCard:nth-of-type(1){
    border-bottom-color: #cccccc;
}

.splashCard:nth-of-type(2){
    border-bottom-color: #999999;
}

.splashCard:nth-of-type(3){
    border-bottom-color: #444444;
}
*/

.splashCard > h1{
    background:#71aa5c;
    color:#fff;
    padding:10px;
    font-size: 20px;
    font-weight: bolder;
}

.splashCard > div{
    font-size: 20px;
    padding: 30px;
    color:#333;
}

.singleRow{
    width:100%;
}

.splitRowLeft
{
    width:50%;
}

.splitRowRight
{
    width:50%;
}

.splashContentLeft{
    width: 100%;
    height: 100%;
    text-align: left;
    box-sizing: border-box;
}

.splashContentRight{
    width: 100%;
    height: 100%;
    text-align: right;
}

.splashImage{
    width: 100%;
}

.splashContentLeft h2, .splashContentRight h2 {
    margin-top:30px;
    text-transform: uppercase;
    font-weight: 700;
    color: #48ade2;
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 100;
}

.splashContentLeft h1, .splashContentRight h1 {
    font-weight: 700;
    color: #005f9e;
    font-size: 75px;
    margin-bottom: 30px;
    font-weight: 100;
    margin-top:-20px;
}

.splashDescription {
    font-size: 20px;
    line-height: 30px;
    color: var(--dark-grey-color);
}

.splashButton a{
    margin-top:20px;
    background: #fff;
    color: #005f9e;
    width: 200px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #005f9e;
}

.splashButton a:hover{
    background: #eff9ff;
}

.splashCardsContainer{
    display: flex;
}

.footerContainer {
    width: 100%;
    background: #005f9e;
    padding: 30px;
    color: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.footerContainer h1 {
    text-align: center;
    font-size: 50px;
    margin: 30px 0px;
}

.footerColumnsContainer
{
    display: flex;
}

.footerColumnsContainer > div{
    width: 100%;
    padding: 30px;
    box-sizing:border-box;
    border-radius: 8px;
    margin: 30px;
    box-shadow: 2px 2px 6px 0px #004879;
    line-height: 20px;
    text-align: center;
    font-weight: bold;
}

.footerColumnsContainer > div:nth-of-type(1){
    background-color:#cccccc;
    color:#333;
}

.footerColumnsContainer > div:nth-of-type(2){
    background-color:#999999;
    color:#015084;
}

.footerColumnsContainer > div:nth-of-type(3){
    background-color:#444444;
}

.copyrightContainer{
    width: 100%;
    text-align: center;
    color: #5b9cc9;
}