.text-white {
    color: $white;
}

.text-denim {
    color: $denim;
}

.text-h2 {
    font: 700 20px/26px $libre;

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

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

.text-md-left {
    @include bp($bp-col12) {
        text-align: left;
    }
}

.img-fluid {
    width: 100%;
    height: auto;
}

.img-stretch {
    width: auto;
    height: 100%;
}

.text-22-avenir {
    color: $denim;
    font: 700 18px/25px $avenir!important;
    margin-bottom: 10px;
    padding-bottom: 0;

    @include bp($bp-col12) {
        font: 700 22px/30px $avenir!important;
    }
}

.text-25-avenir {
    font: 500 25px/37px $avenir!important;
}

.bg-alabaster {
    background-color: $alabaster;
    padding: 60px 20px!important;

    @include bp($bp-col12) {
        padding: 60px 40px!important;
    }
}

.w-80 {
    @include bp($bp-col12) {
        margin: 0 auto;
        width: 80%;
    }
}

.mw-600 {
    max-width: 800px!important;
}

.mb-0 {
    margin-bottom: 0!important;
}

.my-0 {
    margin-bottom: 0!important;
    margin-top: 0!important;
}

.mt-0 {
    margin-top: 0!important;
}

.pb-0 {
    padding-bottom: 0!important;
}

.pb-2 {
    padding-bottom: 20px!important;
}

.px-0 {
    padding-left: 0!important;
    padding-right: 0!important;
}

.py-0 {
    padding-top: 0!important;
    padding-bottom: 0!important;
}

.order-1 {
    @include bp($bp-col12) {
        order: 1;
    }
}

.order-2 {
    @include bp($bp-col12) {
        order: 2;
    }
}

.hide-desktop {
    @include bp($bp-col12) {
        display: none;
    }
}

.hide-mobile {
    display: none;

    @include bp($bp-col12) {
        display: block;
    }
}


.bg-white-alabaster {
    background-color: $alabaster;
    padding: 60px 20px!important;

    @include bp($bp-col12) {
        padding: 60px 40px!important;
    }
}

.bg-white-gradient {
    background: linear-gradient(to left, $white, $alabaster);
    padding: 60px 20px!important;

    @include bp($bp-col12) {
        padding: 60px 40px!important;
    }
}

.bg-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 60px 20px!important;

    @include bp($bp-col12) {
        padding: 60px 40px!important;
    }
}

.bg-blue-gradient {
    background: linear-gradient(to left top, $denim, #273576);
    padding: 60px 20px!important;

    @include bp($bp-col12) {
        padding: 60px 40px!important;
    }
}

.white-box {
    background-color: $white;
    max-width: 750px;
    padding: 20px;
    text-align: center;

    @include bp($bp-col12) {
        padding: 40px;
    }
}

.bg-white-shadow {
    background: $white;
    border-radius: 4px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
    padding: 40px 20px!important;

    @include bp($bp-col12) {
        padding: 40px!important;
    }
}

.border-yellow {
    border-bottom: 5px solid $yellow;
}

@mixin button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    min-width: 168px;
    height: 43px;
    border-radius: 4px;
    font: 700 12px/1.25 $avenir;
    padding: 11px;
    text-transform: uppercase;
    text-decoration: none!important;

    @include bp($bp-col12) {
        font: 700 14px/1.25 $avenir;
        min-width: 220px;
        height: 50px;
    }
}

.blue-button {
    @include button;

    background-color: $denim;
    border: 3px solid $denim;
    color: $white!important;

    &:hover {
        background-color: $white;
        color: $denim!important;
    }
}

.yellow-button {
    @include button;

    background-color: #fefac6;
    border: 3px solid #fefac6;
    color: $black!important;

    &:hover {
        background-color: $white;
        border: 3px solid $white;
        color: $black!important;
    }
}

.white-button {
    @include button;

    border: 3px solid $denim;
    color: $denim!important;

    &:hover {
        background-color: $denim;
        color: $white!important;
    }
}

.list-item {
    display: list-item;
    list-style-type: disc;
    list-style-position: inside;
    padding-bottom: 0;
}