@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@300&family=Work+Sans:wght@400;500&display=swap');

html{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
}
body{
    width:  100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;    
    padding: 0;
    margin: 0; 
    font-family: 'Work Sans', sans-serif; 
}
header{
    background: #7ac142;
    padding: 1rem 0;
    color: #fff;
}
main{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 3.5rem 0;
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 970px;
    margin: auto;
    padding: 0 1rem;
}
@media (min-width: 970px) {
    .container{
        flex-direction: row;
        padding: 0;
    }    
}
h1{
    font-family: 'Dosis', sans-serif;
    color: #1c3e94;
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
}
h3{
    font-family: 'Dosis', sans-serif;
    color: #1c3e94;
    font-size: 24px;
    text-transform: uppercase;    
    font-weight: 300;
    margin: 0;
}
@media (min-width: 475px) {
    h1{
        font-size: 80px;
    }
    h3{
        font-size: 32px;
    }    
}
.logo-large{
    margin-bottom: 2rem;
}
.circle-cta{
    width: 85px;
    height: 85px;
    text-align: center;
    border-radius: 85px;
    background: #00a261;
    font-size: 14px;    
    text-decoration: none;
    margin-top: 2rem;
}
.circle-cta:hover{
    background: #1c3e94;
}
.circle-cta span{
    color: #fff;
    display: block;
    font-weight: 700;
    height: 100%;
    line-height: 85px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-transform: uppercase;    
}
.footer-row{
    font-weight: 500;
    font-size: 14px;
}
.footer-row.top{
    background: #f5f5f5;
    padding: 2rem 0; 
    width: 100%;   
}
.footer-row.bottom{
    background: #7ac142;
    color: #fff;
    padding: 0.75rem 0;
    text-transform: uppercase;
    font-size: 12px;
}
.footer-row a{
    text-decoration: none;
    color: #1c3e94;
}
.footer-socials{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center; 
    gap: 5px;   
    margin-top: 1rem;
}
.footer-download{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 5px;
    margin-bottom: 1rem;
}
@media (min-width: 970px) {
    .footer-col{
        width: 33.33333%;
    }
    .footer-download{
        text-align: left;
        margin-bottom: 0;
    }
    .footer-socials{
        justify-content: flex-end;
        text-align: right;
        margin-top: 0;
    }    
}
.display-wide{
    width: 100%;
}
.color-blue{
    color: #1c3e94;
}
.color-green{
    color: #7ac142;
}
.text-center{
    text-align: center;
}