/*--------------------------------------------------------------
# Minimal reboot, grid, and utility layer (replaces Bootstrap CSS used by this site)
--------------------------------------------------------------*/
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

body {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol, ul, dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol, ul ul, ol ul, ul ol {
    margin-bottom: 0;
}

b, strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

a {
    text-decoration: none;
    background-color: transparent;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

button, input, select, optgroup, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    border-radius: 0;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

[class^="col-"] {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.col-lg-3, .col-lg-4, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-12,
.offset-lg-1 {
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.3333%;
    }

    .col-lg-8 {
        width: 66.6667%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-10 {
        width: 83.3333%;
    }

    .col-lg-12 {
        width: 100%;
    }

    .offset-lg-1 {
        margin-left: 8.3333%;
    }
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-content-center {
    justify-content: center;
}

.align-items-stretch {
    align-items: stretch;
}

.text-center {
    text-align: center;
}

.text-danger {
    color: #dc3545;
}

.font-italic {
    font-style: italic;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.mt-5 {
    margin-top: 3rem;
}

.pt-4 {
    padding-top: 1.5rem;
}

.pb-0 {
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .mt-md-0 {
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .mt-lg-0 {
        margin-top: 0;
    }

    .pt-lg-0 {
        padding-top: 0;
    }

    .d-xl-none {
        display: initial;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none;
    }
}

.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    margin: 2px;
}

.badge-primary {
    color: #fff;
    background-color: #355e3b;
}
