/** FCC DEMO Styles ********************/

/** HEADER **/
.fcc-header {

}

.fcc-top {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #3f4043;
    color: #ffffff;
    font-size: small;
    padding-top: 5px;
    padding-bottom: 5px;
}

.fcc-top p {
    margin: 0;
}

.fcc-navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.fcc-logo img {
    max-width: 260px;
    max-height: 100px;
}

/** SLIDER **/
.fcc-slider {
    position: relative;
    width: 100%;
    margin: auto;
    padding-bottom: 8rem !important;
}

.fcc-slider .bg-image, .fcc-slider .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.fcc-bible-bg {
    background: url(images/bible-slider-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.bg-overlay-black {
    background: rgba(0,0,0,0.5);
}

/** DONATE DIV **/
#fcc-giving { top: -5rem; padding: 3rem; box-shadow: 1px 2px 5px #ccc; }

/** BUTTONS **/
.btn-red {
    background: #de1330;
    color: #ffffff;
}

.btn-red:hover {
    background: #c4112e;
    color: #ffffff;
}

/** FOOTER **/
#footer {
    background: #3d3e41;
    color: #9b9b9d;
    font-weight: bold;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

#footer .bi {
    margin-right: 15px;
    font-size: larger;
}

/** MISC **/
.fc-white {
    color: #ffffff;
}
.fc-red {
    color: #de1330;
}

.fs-large {
    font-size: large;
}

.fcc-title {
    font-size: larger;
}

.fcc-time-title {
    font-size: larger;
}


/**** RESPONSIVENESS *****************************************************/
@media screen and (max-width: 768px) {
    .col-md-5 {
        order: 1;
    }

    .col-md-5 img {
        max-width: 50%;
    }

    .col-md-6 {
        order: 2;
    }

    #footer img {
        max-width: 50%;
        margin-bottom: 20px;
    }
}


@media screen and (max-width: 550px) {
    .main {
        padding: 2px;
    }
    .p-5 {
        padding: 1rem !important;
    }

    .row {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .row:first-child {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .fcc-top {
        flex-wrap: wrap;
    }

    .fcc-slider { padding-bottom: 8rem !important; }

    #fcc-giving {
        width: 90%;
        margin: auto;
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .col-md-5 img {
        max-width: 85%;
    }

    #footer img {
        max-width: 70%;
    }
}