@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
/* font-family: "Nunito Sans", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
/* font-family: "Quicksand", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Italianno&display=swap');
/* font-family: "Italianno", cursive; */

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
}
body
{
    background: white;
}

/* CSS Rules for JS Features */
/* 1. Change header color on scroll */
.header.header-scrolled
{
    background-color: rgba(242, 242, 242, 0.92);
    .navlinks a.color-active
    {
        color: #983b28;
    }
}

/* CSS Rules for header */
.header
{
    border: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 10px 5% 10px 10%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    z-index: 2;
    transition: all .5s ease-in-out;
}
.header .logo
{
    border: transparent;
    width: 7.5%;
}
.header .logo img
{
    border: transparent;
    width: 100%;
    display: grid;
    margin: auto;
}
.header .navlinks
{
    border: transparent;
    width: 50%;
    margin: 0 5%;
    padding: 0 1%;
    height: auto;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.header .navlinks a
{
    border: transparent;
    margin: 0 1%;
    color: black;
    font-size: 18px;
    font-weight: 600;
    transition: all .5s ease-in-out;
}
.header .navlinks a:hover
{
    text-decoration: underline;
}
.header .navlinks .vertical-lines
{
    width: 2px;
    height: max-content;
    background-color: #e5c02b;
    margin: 0 auto;
    color: transparent;
}
.header .navlinks a.color-active
{
    text-decoration: underline;
    transition: all .5s ease-in-out;
}
.header .nav-contact-btn
{
    color: #983b28;
    font-weight: 700;
    border: inset 3px #983b28;
    border-radius: 5px;
    display: grid;
    width: fit-content;
    padding: 1%;
    transition: all .5s ease-in-out;
}
.header .nav-contact-btn:hover
{
    background-color: #983b28;
    color: #ffffff;
}
@media screen and (max-width: 600px)
{
    .header
    {
        min-width: 0;
        flex-direction: column;
        padding: 10px 0;
    }
    .header .logo
    {
        width: 20%;
        margin: 1% auto 2%;
    }
    .header .logo img
    {
        display: grid;
        width: 100%;
    }
    .header .navlinks
    {
        margin: auto;
        width: 90%;
    }
    .header .navlinks a
    {
        font-weight: 600;
        margin: 5px 0;
    }
    .header .nav-contact-btn
    {
        display: none;
    }
}

/* CSS Rules for Cover & Hero Image */
.cover
{
    border: transparent;
    width: 100%;
    margin: auto;
    padding: 5% 10%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url(/images/FBC_Hero_Img.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .5s ease-in-out;
}
.cover .cover-txt
{
    border: transparent;
    width: fit-content;
    margin: 25% 0 10%;
}
.cover .cover-txt h1
{
    border: transparent;
    font-size: 35px;
    background-image: linear-gradient(to right, #083d77 0%, #083d77 50%, #983b28 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.cover .cover-txt h2
{
    border: transparent;
    background-image: linear-gradient(to right, #083d77 0%, #083d77 50%, #983b28 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.cover .cover-txt h3
{
    border: transparent;
    margin-top: 1.5%;
    color: #983b28;
    font-weight: 1000;
    font-size: 19px;
}
.cover .cover-txt .cover-btn
{
    color: #083d77;
    font-weight: 800;
    border: inset 3px #083d77;
    border-radius: 5px;
    display: grid;
    width: fit-content;
    margin-top: 5%;
    padding: 2%;
    transition: all .5s ease-in-out;
}
.cover .cover-txt .cover-btn:hover
{
    background-color: #083d77;
    color: #ffffff;
    transform: scale(1.05);
}
@media screen and (max-width: 600px)
{
    .cover
    {
        min-width: 0;
    }
    .cover .cover-txt
    {
        margin: 135% auto 40%;
        text-align: center;
    }
    .cover .cover-txt h1
    {
        margin: 0 auto 5%;
    }
    .cover .cover-txt h2
    {
        margin: 0 auto 3%;
    }
    .cover .cover-txt h3
    {
        font-size: 22px;
    }
    .cover .cover-txt .cover-btn
    {
        display: grid;
        margin: 10% auto 0;
        padding: 4%;
    }
}

/* CSS Rules for About Section */
.about
{
    border: transparent;
    padding: 3%;
    margin: auto;
    transition: all .5s ease-in-out;
}
.about .welcome-st
{
    border: transparent;
    border-radius: 5px;
    overflow: hidden;
    background-color: rgba(43, 130, 173, 1);
    color: #ffffff;
    border-radius: 5px;
    width: 80%;
    margin: 3% auto 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: top center;
    transition: all .5s ease-in-out;
}
.about .welcome-st:hover
{
    transform: scale(1.02);
}
.about .welcome-st .welcome-st-txt-1
{
    border: transparent;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/images/FBC_Front.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 52%;
    padding: 10% 7%;
}
.about .welcome-st .welcome-st-txt-2
{
    border: transparent;
    width: 48%;
    padding: 5% 2%;
}
.about .welcome-st .welcome-st-txt-2 h3
{
    font-style: italic;
    margin: 4% 2%;
}
.about .about-mv
{
    border: transparent;
    border-radius: 5px;
    overflow: hidden;
    margin: 7% auto 0;
    width: 80%;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: top center;
    transition: all .5s ease-in-out;
}
.about .about-mv:hover
{
    transform: scale(1.02);
}
.about .about-mv .mv-vision
{
    border: transparent;
    background-color: rgba(152, 59, 40, 1);
    color: #ffffff;
    width: 40%;
    padding: 9% 5%;
}
.about .about-mv .mv-mission
{
    border: transparent;
    background-color: rgba(229, 192, 43, 1);
    color: #000000;
    width: 60%;
    padding: 8% 5%;
}
.about .about-mv .mv-vision h3, .about .about-mv .mv-mission h3
{
    margin: 2% auto;
    text-decoration: overline;
}
.about .about-btn
{
    border: inset 3px #e5c02b;
    border-radius: 5px;
    margin: 5% auto 0;
    display: grid;
    width: fit-content;
    text-align: center;
    padding: 2%;
    color: #000000;
    font-weight: 800;
    transition: all .5s ease-in-out;
}
.about .about-btn:hover
{
    transform: scale(1.02);
    background-color: #e5c02b;
}
@media screen and (max-width: 600px)
{
    .about
    {
        min-width: 0;
    }
    .about .welcome-st
    {
        width: 80%;
        flex-direction: column;
    }
    .about .welcome-st .welcome-st-txt-1, .about .welcome-st .welcome-st-txt-2
    {
        width: 100%;
        padding: 15% 5%;
    }
    .about .about-mv
    {
        flex-direction: column;
        margin: 20% auto 0;
    }
    .about .about-mv .mv-vision
    {
        width: 100%;
        margin: auto;
    }
    .about .about-mv .mv-mission
    {
        width: 100%;
        margin: auto;
    }
    .about .about-btn
    {
        margin: 10% auto;
        padding: 4%;
    }
}

/* CSS Rule for Title Header */
.section-title
{
    border: transparent;
    width: fit-content;
    margin: 5% auto 0;
    text-align: center;
    background-image: linear-gradient(to right, #083d77 0%, #083d77 50%, #983b28 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    transition: all .5s ease-in-out;
}
@media screen and (max-width: 600px)
{
    .section-title
    {
        min-width: 0;
        margin: 15% auto 5%;
    }
}

/* CSS Rules for Services Section */
.services
{
    border: transparent;
    width: 95%;
    overflow: hidden;
    margin: 2% auto 8%;
    display: flex;
    justify-content: space-around;
    align-items: top center;
    transition: all .5s ease-in-out;
}
.services .vertical-lines
{
    width: 2px;
    background-color: #e5c02b;
    margin: 0 auto;
    color: transparent;
}
.services .service-div
{
    border: transparent;
    border-radius: 5px;
    margin: 0 0.5%;
    width: 25%;
    text-align: center;
    padding: 3%;
}
.services .service-div h3
{
    color: #083d77;
    margin: 15% 0;
    text-decoration: 2px double overline;
}
.services .service-div h4
{
    color: #983b28;
    margin: 15% 0 0;
}
.services .service-div .services-btn
{
    border: inset 3px #e5c02b;
    border-radius: 5px;
    display: block;
    margin: auto;
    width: fit-content;
    padding: 2%;
    color: #000000;
    font-weight: 800;
    transition: all .5s ease-in-out;
}
.services .align-center
{
    align-self: center;
}
.services .service-div .services-btn:hover
{
    transform: scale(1.02);
    background-color: #e5c02b;
}
@media screen and (max-width: 600px)
{
    .services
    {
        min-width: 0;
        flex-direction: column;
    }
    .services .service-div
    {
        width: 100%;
    }
    .services .vertical-lines
    {
        display: none;
    }
    .services .service-div h3
    {
        margin: 3% 0 5%;
    }
    .services .service-div h4
    {
        margin: 3% 0 5%;
    }
    .services .service-div .services-btn
    {
        margin: 1.5% auto;
    }
}

/* CSS Rules for Sermons Sections */
.sermons
{
    border: transparent;
    width: 85%;
    margin: auto;
    padding: 2% 0;
    display: flex;
    justify-content: space-around;
    align-items: top center;
    transition: all .5s ease-in-out;
}
.sermons .sermons-yt
{
    border: transparent;
    border-radius: 5px 0 0 5px;
    width: 60%;
    padding: 15% 0.5%;
    background-image: linear-gradient(rgba(255, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(/images/FBC_Yt_Bg.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .5s ease-in-out;
}
.sermons .sermons-yt:hover
{
    width: 65%;
    .sermons .sermons-st
    {
        width: 35%;
    }    
}
.sermons .sermons-st
{
    border: transparent;
    border-radius: 0 5px 5px 0;
    width: 40%;
    padding: 15% 0.5%;
    background-image: linear-gradient(rgba(29, 185, 84, 0.6), rgba(0, 0, 0, 0.7)), url(/images/FBC_St_Bg.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .5s ease-in-out;
}
.sermons .sermons-st:hover
{
    width: 45%;
    .sermons .sermons-yt
    {
        width: 65%;
    }
}
.sermons .sermons-yt img, .sermons .sermons-st img
{
    display: grid;
    margin: auto;
}
.sermons .sermons-yt a, .sermons .sermons-st a
{
    border: inset 3px #FCE762;
    border-radius: 5px;
    display: block;
    margin: auto;
    width: fit-content;
    padding: 2%;
    color: #ffffff;
    font-weight: 800;
    transition: all .5s ease-in-out;
}
.sermons .sermons-yt a:hover, .sermons .sermons-st a:hover
{
    transform: scale(1.02);
    background-color: #e5c02b;
}
@media screen and (max-width: 600px)
{
    .sermons
    {
        min-width: 0;
        flex-direction: column;
    }
    .sermons .sermons-yt
    {
        border-radius: 5px;
        margin: 2% 0;
        width: 100%;
    }
    .sermons .sermons-yt:hover
    {
        width: 100%;
        transform: scale(1.05);
    }
    .sermons .sermons-st
    {
        border-radius: 5px;
        margin: 2% 0;
        width: 100%;
    }
    .sermons .sermons-st:hover
    {
        width: 100%;
        transform: scale(1.05);
    }
}

/* CSS Rules for Ways to Give */
.give
{
    border: transparent;
    border-radius: 5px;
    background-image: linear-gradient(to right, #083d77 0%, #083d77 50%, #983b28 100%);
    width: 50%;
    padding: 3%;
    color: #ffffff;
    margin: 3% auto 0;
}
.give .give-txt
{
    width: 100%;
    text-align: center;
}
@media screen and (max-width: 600px)
{
    .give
    {
        min-width: 0;
        width: 85%;
        padding: 3% 1.5%;
    }
}

/* CSS Rules for Footer */
.footer
{
    border: transparent;
    border-radius: 25px 25px 0 0;
    background-color: #f2f2f2;
    overflow: hidden;
    width: 100%;
    margin: 15% auto 0;
    padding: 3% 0 2%;
    display: flex;
    justify-content: space-evenly;
    align-items: top center;
    transition: all .5s ease-in-out;
}
.footer .more-info
{
    border: transparent;
    width: 30%;
}
.footer .more-info img
{
    width: 40%;
    margin: auto;
    display: grid;
}
.footer .more-info .more-info-txt
{
    border: transparent;
    width: 100%;
    padding: 3%;
}
.footer .more-info .more-info-txt .more-info-txt-div
{
    border: transparent;
    width: 100%;
    margin: 4% 0;
    padding: 0 2%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.footer .more-info .more-info-txt .more-info-txt-div img
{
    width: 7%;
}
.footer .more-info .more-info-txt .more-info-txt-div h4
{
    width: 80%;
    color: #083d77;
}
.footer .map
{
    border: transparent;
    border-radius: 5px;
    width: 40%;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.footer .map iframe
{
    margin: auto;
    width: 100%;
    height: 100%;
}
.footer .trademark
{
    border: transparent;
    padding: 0.5%;
    width: 20%;
    align-self: flex-end;
}
.footer .trademark .enclosure
{
    border: transparent;
    width: 60%;
    padding: 5% 0;
    margin: auto;
    display: grid;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.footer .trademark .enclosure:hover
{
    cursor: pointer;
    img
    {
        width: 30%;
        animation: scale 3s infinite;
    }
    h4,h3
    {
        bottom: 0;
    }
}
@keyframes scale
{
    0%
    {
        transform: scale(1.0);
    }
    50%
    {
        transform: scale(1.1);
    }
    100%
    {
        transform: scale(1.0);
    }
}
.footer .trademark .enclosure img
{
    width: 50%;
    margin: auto;
    transition: all .5s ease-in-out;
}
.footer .trademark .enclosure h4
{
    text-align: center;
    position: relative;
    bottom: -100px;
    font-size: small;
    transition: all .5s ease-in-out;
}
.footer .trademark .enclosure h3
{
    text-align: center;
    background-image: linear-gradient(to right, #083d77 0%, #e5c02b 30%,#983b28 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    position: relative;
    bottom: -100px;
    font-size: medium;
    transition: all .5s ease-in-out;
}
@media screen and (max-width: 600px)
{
    .footer
    {
        min-width: 0;
        flex-direction: column;
    }
    .footer .more-info
    {
        width: 100%;
    }
    .footer .map
    {
        width: 90%;
        margin: 5% auto 0;
    }
    .footer .trademark
    {
        width: 50%;
        margin: 3% auto 0;
    }
}

/* CSS Rules for Copyright */
.copyright
{
    border: transparent;
    background-color: #f2f2f2;
    width: 100%;
    padding: 0.5% 0;
    transition: all .5s ease-in-out;
}
.copyright h4
{
    border: transparent;
    width: fit-content;
    margin: auto;
    background-image: linear-gradient(to right, #083d77 0%, #083d77 50%, #983b28 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
@media screen and (max-width: 600px)
{
    .copyright
    {
        min-width: 0;
        padding: 0 10% 5%;
    }
    .copyright h4
    {
        font-size: 12px;
        text-align: center;
    }
}

/* CSS Rules for About Us Page */
.active-page
{
    text-decoration: underline;
}
.about-us
{
    border: transparent;
    width: 100%;
    padding: 10% 20%;
    background-image: linear-gradient(rgba(223, 233, 248, 0.9), rgba(0, 0, 0, 0.7)), url(/images/FBC_2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .5s ease-in-out;
}
.about-us .about-us-txt
{
    border: transparent;
    width: fit-content;
    margin: 10% auto;
    background-image: linear-gradient(to right, #f2f2f2 0%, #ffffff 60%,#e5c02b 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-size: 30px;
    text-align: center;
}
@media screen and (max-width: 600px)
{
    .about-us
    {
        min-width: 0;
        padding: 10% 0 ;
        background-image: linear-gradient(rgba(223, 233, 248, 0.98), rgba(0, 0, 0, 0.7)), url(/images/FBC_2.jpg);
    }
    .about-us .about-us-txt
    {
        margin: 50% auto 20%;
    }
}

/* CSS Rules about What We Believe, What is the Gospel sections, History, Our Diversity */
.WWB, .WG, .history, .diversity, .constitution, .DS, .c-covenant, .membership
{
    border: transparent;
    width: 80%;
    margin: 1% auto 0;
    transition: all .5s ease-in-out;
}
.WWB .WWB-txt p, .WG .WG-txt p, .history .history-txt p, .diversity .diversity-txt p, .constitution .constitution-txt p, .DS .DS-txt p, .c-covenant .c-covenant-txt p, .membership .membership-txt p
{
    border: transparent;
    text-align: center;
}
@media screen and (max-width: 600px)
{
    .WWB, .WG, .history, .diversity, .constitution, .DS, .c-covenant, .membership
    {
        min-width: 0;
        margin: 5% auto 4%;
    }
}

/* CSS Rules for Board of Elders */
.BOE
{
    border: transparent;
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: top center;
    transition: all .5s ease-in-out;
}
.BOE .BOE-div
{
    border: transparent;
    display: grid;
    width: 30%;
    margin: 3% auto;
}
.BOE .BOE-div .BOE-div-img
{
    border: transparent;
    border-radius: 50%;
    width: 50%;
    height: 25vh;
    margin: auto;
    overflow: hidden;
}
.BOE .BOE-div .BOE-div-img img
{
    width: 100%;
}
.BOE .BOE-div h3
{
    margin: 3% auto 0;
    text-align: center;
    color: #983b28;
}
.BOE .BOE-div h4
{
    text-align: center;
    color: #083d77;
}
@media screen and (max-width: 600px)
{
    .BOE
    {
        min-width: 0;
        margin-top: 5%;
    }
    .BOE .BOE-div
    {
        width: 100%;
        margin: 5% auto;
    }
    .BOE .BOE-div .BOE-div-img
    {
        height: 17.5vh;
    }
}

/* CSS Rules for More Services Page */
.services-pg
{
    border: transparent;
    width: 100%;
    padding: 10% 20%;
    background-image: linear-gradient(rgba(223, 233, 248, 0.8), rgba(0, 0, 0, 0.7)), url(/images/FBC_3.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .5s ease-in-out;
}
.services-pg .services-pg-txt
{
    border: transparent;
    width: fit-content;
    margin: 10% auto;
    background-image: linear-gradient(to right, #f2f2f2 0%, #ffffff 60%,#e5c02b 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-size: 30px;
    text-align: center;
}
@media screen and (max-width: 600px)
{
    .services-pg
    {
        min-width: 0;
        padding: 10% 0 ;
        background-image: linear-gradient(rgba(223, 233, 248, 0.85), rgba(0, 0, 0, 0.7)), url(/images/FBC_3.jpg);
    }
    .services-pg .services-pg-txt
    {
        margin: 50% auto 20%;
    }
}

/* CSS Rules for programs page section */
.programs-pg
{
    border: transparent;
    width: 80%;
    margin: 2% auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: top center;
    transition: all .5s ease-in-out;
}
.programs-pg .programs-pg-div
{
    border: outset 3px #e5c02b;
    border-radius: 5px;
    width: 30%;
    margin: 5% auto 0;
    padding: 2%;
    text-align: center;
    transition: all .5s ease-in-out;
}
.programs-pg .programs-pg-div h2
{
    color: #083d77;
    margin: 5% auto 4%;
}
.programs-pg .programs-pg-div h3
{
    margin: 0 0 7%;
}
.programs-pg .programs-pg-div h4
{
    color: #983b28;
    margin: 7% 0;
}
@media screen and (max-width: 600px)
{
    .programs-pg
    {
        min-width: 0;
    }
    .programs-pg .programs-pg-div
    {
        width: 100%;
        margin: 15% auto 0;
    }
}