/* Layout Styles
======================================= */
.bc-intro-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 100px;
}

.bc-banner-header {
    padding: 30px 0;
}

.bc-intro-inner header,
.bc-intro-inner .bc-intro-blurb {
    flex: 1 0 0;
}

.bc-section-outer {
    margin-bottom: 100px;
}


.bc-section-outer:nth-child(odd) .bc-section-inner {
    padding-left: 28%;
}

.bc-section-outer:nth-child(even) .bc-section-inner {
    padding-right: 28%;
}

.bc-section-outer:nth-child(odd)  .bc-section-banner {
    left: 0;
    top: 0;
    width: 50%;
}

.bc-section-outer:nth-child(even)  .bc-section-banner {
    right: 0;
    top: 0;
    width: 50%;
}

.bc-section-blurb-inner {
    height: 373px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    background: #f3f4f5;
}

.bc-section-outer:nth-child(odd) .bc-section-blurb-inner {
    padding: 30px 80px 30px 40%;
}

.bc-section-outer:nth-child(even) .bc-section-blurb-inner {
    padding: 30px 40% 30px 80px;
}


.bc-section-outer:nth-child(odd) .bc-section-inner header {
    padding: 0 0 20px 35%;
}

.bc-section-outer:nth-child(even) .bc-section-inner header {
    padding: 0 35% 20px 0;
    text-align: right;
}


/* Font Styles
======================================= */
.bc-section-inner header h2,
.bc-intro-inner header h2 {
    font-size: 3em;
    line-height: 1em;
    font-weight: 300;
    color: #373737;
    margin: 0;
    text-transform: uppercase;
}

.bc-banner-header header h1 {
    font-size: 4em;
    line-height: 1em;
    font-weight: 300;
    color: #373737;
    margin: 0;
    text-transform: uppercase;
}


.bc-section-inner header h2 span,
.bc-intro-inner header h2 span,
.bc-banner-header header h1 span {
    display: block;
    font-weight: 800;
}


.bc-intro-blurb p {
    color: #373737;
    font-size: 1.5em;
    line-height: 2em;
    margin: 0 0;
    font-weight: 400;
}

.bc-section-blurb-inner p {
    color: #373737;
    font-size: 1.3em;
    line-height: 2em;
    margin: 0 0 1em;
    font-weight: 400;
}

.bc-button a {
    display: inline-block;
    background: #fff;
    padding: 1em 2em;
    color: #373737;
    font-size: 1.286em;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid #e5e5e5;
    transition: all 0.2s;
}

.bc-button a:hover {
    text-decoration: none;
    background: #373737;
    color: #fff;
}

/* Media Queries
======================================= */
@media screen and (max-width: 992px) {
    .bc-intro-inner {
        padding: 80px 40px;
    }

    .bc-section-outer:nth-child(odd) .bc-section-blurb-inner {
        padding: 40px 50px 40px 40%;
    }

    .bc-section-outer:nth-child(even) .bc-section-blurb-inner {
        padding: 40px 40% 40px 50px;
    }

    .bc-section-blurb-inner {
        height: 350px;
    }
}

@media screen and (max-width: 750px) {
    .bc-intro-inner {
        padding: 60px 30px;
        flex-direction: column;
        gap: 20px;
    }

    .bc-intro-inner header, .bc-intro-inner .bc-intro-blurb {
        width: 100%;
        max-width: 600px;
    }

    .bc-section-banner {
        position: relative;
    }

    .bc-section-outer:nth-child(odd) .bc-section-banner,
    .bc-section-outer:nth-child(even) .bc-section-banner {
        left: auto;
        top: auto;
        width: 100%;
    }

    .bc-section-outer:nth-child(odd) .bc-section-inner {
        padding-left: 0;
    }

    .bc-section-outer:nth-child(even) .bc-section-inner {
        padding-right: 0;
    }

    .bc-section-outer:nth-child(odd) .bc-section-inner header,
    .bc-section-outer:nth-child(even) .bc-section-inner header {
        padding: 0 0 20px 0;
        text-align: left;
    }

    .bc-section-outer:nth-child(odd) .bc-section-blurb-inner,
    .bc-section-outer:nth-child(even) .bc-section-blurb-inner {
        padding: 40px 40px 40px 40px;
    }

    .bc-section-outer {
        display: flex;
        justify-content: center;
        padding: 0 30px;
    }

    .bc-section-inner {
        max-width: 600px;
    }

    .bc-section-blurb-inner {
        height: auto;
    }

    .bc-section-outer {
        margin-bottom: 60px;
    }
}