﻿html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    box-sizing: border-box;
}

body {
    color: #333333;
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #f6f6f6;
    /*background-image: linear-gradient(to bottom,#f9fbfd 0,#fff 100%);*/
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    overflow: hidden;
}

@media screen and (max-width: 960px) {
    .container {
        padding: 0 15px;
    }

        .container.main-content {
            padding: 0 7.5px;
        }

            .container.main-content .row {
                display: inline;
            }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

.branding {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 0;
}

    .branding img {
        margin-bottom: 10px;
    }

    .branding h1 {
        margin-bottom: 10px;
    }

    .branding p {
        margin-bottom: 0;
    }

@media screen and (min-width: 960px) {
    .row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}

.column {
    width: calc((100% - 60px) / 3);
    display: flex;
    flex-direction: column;
    background-color: #fff;
    margin: 0 auto 30px auto;
    /*border-radius: 8px;*/
    box-shadow: 0 1.5rem 4rem rgba(22,28,45,.05);
    text-align: center;
    overflow: hidden;
}

@media screen and (max-width: 960px) {
    .column {
        width: calc((100% - 30px) / 2);
        margin: 7.5px;
        float: left;
    }

    .column-body p {
        display: none;
    }
}

.column-body {
    height: 100%;
    padding: 20px 20px;
}

    .column-body p {
        font-size: 90%;
        margin-bottom: 0;
    }

.logo-wrap {
    text-align: center;
    background: #f6f6f6;
    padding: 50px 0;
    color: #fff;
    position: relative;
}

@media screen and (max-width: 960px) {
    .logo-wrap {
        padding: 30px 0;
    }

        .logo-wrap img {
            height: 30px !important;
        }

    .column-body {
        padding: 10px;
    }
}

.cbna-logo {
    background: white;
}

.btn {
    margin-top: auto;
    padding: 10px 10px 10px 10px;
    text-decoration: none;
    color: white;
    font-size: 1rem;
    max-width: 180px;
    margin: auto auto 20px auto;
    background: #cb4a20;
    width: 100%;
    white-space: nowrap;
    position: relative;
    border: 1px solid transparent;
}

    .btn:hover {
        background: white;
        color: #cb4a20;
        border: 1px solid #cb4a20;
    }        

@media screen and (max-width: 960px) {
    .btn {
        max-width: calc(100% - 20px);
        margin: 0 10px 10px 10px;
    }
}

@media screen and (max-width: 960px) {
    .desktop-only {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .btn {
        padding-left: 15px;
    }

        .btn svg {
            right: 15px;
        }
}

@media screen and (max-width: 500px) {
    .column-body h2 {
        font-size: 15px;
    }
}
