@charset "utf-8";
/* ==================================================
DREAM BUILDERS BLOOMINGTON
GLOBAL STYLES
================================================== */

/* =========================
BASE
========================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2925;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    transition: all .2s ease;
}

a:hover {
    text-decoration: none;
}

section {
    position: relative;
}

/* =========================
CONTAINER OVERRIDE
========================= */

.container {
    max-width: 1200px;
}

/* =========================
TYPOGRAPHY
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Georgia, "Times New Roman", serif;
    color: #0e211c;
    line-height: 1.15;
    margin-bottom: 20px;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2.75rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.35rem;
}

p {
    margin-bottom: 20px;
}

/* =========================
BUTTONS
========================= */

.db-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;

    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;

    text-decoration: none;
}

.db-btn-gold {
    background: #b88a3b;
    color: #ffffff;
}

.db-btn-gold:hover {
    background: #d0a24d;
    color: #ffffff;
}

.db-btn-outline {
    border: 1px solid #0e211c;
    color: #0e211c;
}

.db-btn-outline:hover {
    background: #0e211c;
    color: #ffffff;
}

/* =========================
SECTION SPACING
========================= */

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 70px 0;
}

/* =========================
SECTION HEADERS
========================= */

.section-eyebrow {
    color: #b88a3b;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    margin-bottom: 25px;
}

.section-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #6f7772;
}

/* =========================
BACKGROUND COLORS
========================= */

.bg-white {
    background: #ffffff;
}

.bg-cream {
    background: #f6f1e8;
}

.bg-green {
    background: #0e211c;
}

.bg-dark-green {
    background: #081915;
}

/* =========================
TEXT COLORS
========================= */

.text-green {
    color: #0e211c;
}

.text-gold {
    color: #b88a3b;
}

.text-white {
    color: #ffffff;
}

.text-muted-db {
    color: #6f7772;
}

/* =========================
UTILITY CLASSES
========================= */

.shadow-soft {
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.shadow-medium {
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.border-gold {
    border: 1px solid #b88a3b;
}

.rounded-lg {
    border-radius: 12px;
}

.max-width-700 {
    max-width: 700px;
}

.max-width-800 {
    max-width: 800px;
}

.max-width-900 {
    max-width: 900px;
}

/* =========================
FORM STYLES
========================= */

.form-control {
    border-radius: 0;
    min-height: 50px;
}

.form-control:focus {
    border-color: #b88a3b;
    box-shadow: none;
}

/* =========================
FOOTER
========================= */

.site-footer {
    background: #081915;
    color: #ffffff;
}

.site-footer a {
    color: rgba(255,255,255,.8);
}

.site-footer a:hover {
    color: #b88a3b;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991.98px) {

    h1 {
        font-size: 3.25rem;
    }

    h2 {
        font-size: 2.3rem;
    }

    .section-padding {
        padding: 80px 0;
    }


}

@media (max-width: 767.98px) {

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 60px 0;
    }

}

@media (max-width: 575.98px) {

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .db-btn {
        width: 100%;
    }

}