#banner {
    color: #000000;
    font-family: AlbertaSans, Roboto, sans-serif;
    font-weight: 300;
    font-size: 16px;
    font-style: normal;
    line-height: 26px;
    text-align: center;
    margin: 0 auto;
}

#banner .background-grey {
    background: #F3F3F3;
    padding-top: 50px;
}

#banner h1 {
    font-size: 30px;
    line-height: 45px;
    margin: 0;
    color: #0F0F0F;
    padding: 0 10%;
    font-weight: bold;
    font-weight: 600;
}

#banner p {
    color: #0F0F0F;
    padding: 1em 1em;
    font-size: 16px;
    font-weight: normal;
    margin-block-end: 1em;
    margin-block-start: 1em;
}

#banner a {
    color: white;
    font-size: 16px;
    text-decoration: none;
}

#banner .button {
    background: #E53327;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    line-height: 20px;
    outline: none;
    padding: 8px 16px;
    border-radius: 5px;
    width: 200px;
    margin: 0 auto;
}

.two-buttons {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#banner .two-buttons .button:nth-child(2) {
    background:#FFFFFF;
    border: 1px solid #DDDDDD;
    color: #E53327;
    margin-top: 10px;
}

#banner .background-grey-two-tone {
    background: linear-gradient(#F3F3F3 50%, white 50%);
}

#banner.without-image .background-grey .content {
    padding-bottom: 50px;
}

#banner.with-image .background-grey-two-tone {
    margin-bottom: 50px;
}

#banner .center-fit {
    display: block;
    filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.1));
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
    width: 70%;
}

#banner .content {
    margin: 0 auto;
    max-width: 1200px;
}

@media only screen and (min-width: 600px) {
    #banner .background-grey {
        padding-top: 200px;
    }
    #banner.without-image .background-grey .content {
        padding-bottom: 100px;
    }
    #banner.with-image .background-grey-two-tone {
        margin-bottom: 100px;
    }
    #banner h1 {
        font-size: 48px;
        line-height: 59px;
        margin: 0;
    }
    
    #banner .button {
        width: auto;
        margin: unset;
    }
    .two-buttons {
        flex-direction: row;
    }
    #banner .two-buttons .button:nth-child(2) {
        margin-left: 20px;
        margin-top: 0;
    }
}

@media only screen and (min-width: 768px) {
    #banner.without-image .background-grey .content {
        padding-bottom: 150px;
    }
    #banner.with-image .background-grey-two-tone {
        margin-bottom: 150px;
    }
}



#todo .arrow {
    background: transparent url(/images/landing/todo/arrow.svg) no-repeat scroll top left;
    width: 16px;
    height: 32px;
    margin: 7px 0;
}