body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    background: #FFF;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.background-blue {
    background-color: #00BDDC;
}

.background-light-blue {
    background-color: #a3e5f1;
}

.background-white-blue {
    background-color: #D4D8F7;
}

.background-grey {
    background-color: #BCBEC0;
}

.background-white {
    background-color: #FFF;
}

.text-dark-blue {
    color: #081045;
}

.text-blue {
    color: #00BDDC;
}

.text-light-blue {
    color: #5369F6;
}

.text-white-blue {
    color: #D4D8F7;
}

.text-white {
    color: #FFF;
}

.text-grey {
    color: #BCBEC0;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

h1, h2, h3, h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    margin-top: 0;
    line-height: 1.2;
}

a {
    color: #142AB7;
    text-decoration: none;
    font-weight: 500;
}

    a:hover {
        text-decoration: underline;
    }

p {
    margin-bottom: 15px;
    text-rendering: optimizeLegibility;
}

    p.lead {
        font-size: 20px;
        line-height: 32px;
        max-width: 70%;
        margin: 0 auto;
    }

.section {
    padding: 112px 20px;
}

    .section--smallpadding {
        padding: 60px 20px;
    }

.container {
    max-width: 920px;
    margin: 0 auto;
}

.button {
    background: #58ba0e;
    padding: 6px 12px;
    color: #FFF;
    border-radius: 4px;
    border-bottom: 1px solid rgba(46, 102, 0, 0.6);
    border-top: 1px solid #c9ebad;
}

    .button:hover {
        text-decoration: none;
        border-bottom-color: #c9ebad;
        border-top-color: rgba(46, 102, 0, 0.6);
    }

.header {
    padding: 40px 20px;
    position: fixed;
    width: 100%;
    z-index: 10;
    border-bottom: 5px solid #BCBEC0;
}

    .header,
    .header__pusher {
        height: 128px;
    }

    .header__sitename {
        margin-bottom: 0;
    }

.cleanlist {
    list-style: none;
    padding-left: 20px;
}

@media only screen and (max-width: 604px) 
{
    .hide-mobile {
        display: none;
    }

    .section {
        padding: 60px 0px;
    }

        .section--smallpadding {
            padding: 30px 0px;
        }

    .header {
        position: relative;
        height: 128px;
        padding: 15px 0;
    }

    .header__pusher {
        display: none;
    }

    .header__sitename {
        margin-bottom: 0;
        width: 100%;
        height: auto;
    }

    p.lead {
        font-size: 18px;
        line-height: 28px;
        max-width: 100%;
        margin: 0 auto;
    }
}