$libre: 'Libre Baskerville', serif;
$avenir: 'Avenir', sans-serif;
$alabaster: #F9F9F9;
$anakiwa: #92DFFF;
$black: #000;
$denim: #0E7EBC;
$mercury: #E6E6E6;
$white: #fff;
$yellow: #FFFAC0;

.container {
    margin-top: 60px;
    margin-bottom: 60px;

    @include bp($bp-col12) {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    * {
        box-sizing: border-box;
    }

    h1 {
        color: #00528C;
        font: 700 27px/33px $libre;
        text-transform: none;

        @include bp($bp-col12) {
            font: 700 50px/63px $libre;
        }
    }

    h2 {
        font: 700 26px/32px $libre;
        margin-bottom: 20px;
        padding-bottom: 0;
        text-transform: none;

        @include bp($bp-col12) {
            font: 700 36px/45px $libre;
        }
    }

    h3 {
        font: 700 26px/32px $libre;
        text-transform: none;

        @include bp($bp-col12) {
            font: 700 30px/37px $libre;
        }
    }

    a {
        color: #00528C;
        text-decoration: underline;
    }

    .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 auto 30px auto;
        width: 100%;

        @include bp($bp-col12) {
            margin: 0 auto 30px auto;
        }

        &:last-of-type {
            margin: 0 auto 0 auto;
        }

        &.align-center {
            align-items: center;
        }

        &.align-stretch {
            align-items: stretch;

            div[class^="col"] {
                margin-bottom: 0;
            }
        }

        @mixin column {
            margin: 0 auto 30px auto;
            padding: 0 20px;
            width: 100%;

            @include bp($bp-col12) {
                margin: 0 auto;
            }
        }

        @mixin column-last {
            &:last-of-type {
                margin: 0 auto;
            }
        }

        .col-3 {
            @include column;

            @include bp($bp-col12) {
                width: 25%;
            }

            @include column-last;
        }

        .col-4 {
            @include column;

            @include bp($bp-col12) {
                width: 33.3%;
            }

            @include column-last;
        }

        .col-5 {
            @include column;

            @include bp($bp-col12) {
                width: 41.6%;
            }

            @include column-last;
        }

        .col-6 {
            @include column;

            @include bp($bp-col12) {
                width: 50%;
            }

            @include column-last;
        }

        .col-7 {
            @include column;

            @include bp($bp-col12) {
                width: 50%;
            }

            @include column-last;
        }

        .col-7 {
            @include column;

            @include bp($bp-col12) {
                width: 58.3%;
            }

            @include column-last;
        }

        .col-8 {
            @include column;

            @include bp($bp-col12) {
                width: 66.6%;
            }

            @include column-last;
        }

        .col-9 {
            @include column;

            @include bp($bp-col12) {
                width: 75%;
            }

            @include column-last;
        }

        .col-10 {
            @include column;

            @include bp($bp-col12) {
                width: 83.3%;
            }

            @include column-last;
        }

        .col-12 {
            @include column;
            @include column-last;
        }
    }
}