/* common styles */
html {
    font-size: 62.5%;
    box-sizing: border-box;
}

/* body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
} */


/* end of common styles */

/* navbar */

/* sidebar */
.sidebar {
    width: 8rem;
    height: 100vh;
    background-color: #eee;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 1050;
    margin: 0;
    padding: 0;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.04);
}

.menu-icon {
    margin-top: 3rem;
    margin-bottom: 2rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    transition: background 0.2s;
}

.menu-icon:focus,
.menu-icon:active {
    background: #e0e0e0;
    border-radius: 50%;
}

.menu-icon .line {
    margin-bottom: .6rem;
}

.line {
    height: .2rem;
    width: 2.5rem;
    background-color: #222;
    margin-bottom: .6rem;
}

.line-1,
.line-3 {
    width: 1.8rem;
    transition: all .4s;
}

.menu-icon:hover .line {
    width: 2.5rem;
}

.social-icons-list {
    list-style: none;
    padding: 0;
    height: 25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.social-link {
    font-size: 2rem;
    color: #777;
    transition: color .3s;
}

.social-link:hover {
    color: #deaa86;
}

.year {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #555;
}

/* end of sidebar */

/* navigation */
.navigation {
    position: fixed;
    top: 0;
    left: -32rem;
    width: 40rem;
    height: 100vh;
    background: linear-gradient(to top, rgba(34, 32, 41, 1), rgba(34, 32, 41, .8)), url(../img/sidebar_pic.jpg) center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: left .8s cubic-bezier(1, 0, 0, 1);
    z-index: 1040;

}

.navigation-heading {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: .2rem;
    color: #deaa86;
    text-align: center;
    margin-top: 2rem;
}


.navigation-list {
    list-style: none;
    padding: 0;
    height: 28rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.navigation-item {
    position: relative;
}

.navigation-link {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: .1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .5s;
}

.navigation-link::before {
    content: "";
    width: 0rem;
    height: .1rem;
    background-color: #deaa86;
    position: absolute;
    top: 1rem;
    left: -4rem;
    transition: width .5s cubic-bezier(1, 0, 0, 1);
}

.navigation-link::after {
    content: "";
    width: 0rem;
    height: .1rem;
    background-color: #deaa86;
    position: absolute;
    top: 1rem;
    right: -4rem;
    transition: width .5s cubic-bezier(1, 0, 0, 1);
}

.navigation-link:hover {
    color: #deaa86;
}

.navigation-link:hover::before,
.navigation-link:hover::after {
    width: 3rem;
}

.copyright {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* jQuery toggled navigation */
.navigation.nav-open {
    left: 8rem;
}

.nav-open~.sidebar .line-1 {
    transform: rotate(-405deg) translate(-5px, 6px);
    width: 2.5rem;
}

.nav-open~.sidebar .line-2 {
    opacity: 0;
}

.nav-open~.sidebar .line-3 {
    transform: rotate(405deg) translate(-5px, -6px);
    width: 2.5rem;
}

/* end of navigation */
/* end of navbar */

/* header */
.header {
    margin-top: 0;
    margin-left: 8rem;
    height: 100vh;
    background: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .5)), url(../img/home_banner.jpg) center no-repeat;
    background-size: cover;
}

.header-2 {
    margin-top: 0;
    margin-left: 8rem;
    height: 100vh;
    background: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .5)), url(../img/home_banner_2.jpg) center no-repeat;
    background-size: cover;
}

.header-3 {
    margin-top: 0;
    margin-left: 8rem;
    height: 100vh;
    background: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .5)), url(../img/home_banner_3.jpg) center no-repeat;
    background-size: cover;
}


.brand {
    display: flex;
    cursor: pointer;
}

/* .hotel-heading {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.7rem;
    font-weight: 400;
    color: #deaa86;
    letter-spacing: .2rem;
} */

.banner {
    color: #ddd;
    height: 65rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-heading {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 7rem;
    font-weight: 400;
    margin-bottom: 0;
    animation: anim 2s;
}

.banner-paragraph {
    font-size: 3.5rem;
    font-weight: 300;
    animation: anim 1.5s .5s backwards;
}

/* .banner-button {
    width: 15rem;
    padding: 1.2rem 2rem;
    font-size: 2rem;
    color: #333;
    letter-spacing: .1rem;
    border: none;
    border-radius: 10rem;
    outline: none;
    background: linear-gradient(to right, gold, goldenrod);
    cursor: pointer;
    animation: anim 1s 1s backwards;
    text-decoration:none;
    text-align: center;
}

    .banner-button:hover {
        background: linear-gradient(to left, gold, goldenrod);
    }

    .banner-button:active {
        transform: translateY(.2rem);
    } */

@keyframes anim {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.banner2-heading {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 0;
    animation: anim 2s;
    text-transform: uppercase;
    letter-spacing: normal;

}

.banner2-paragraph {
    font-size: 3.5rem;
    font-weight: 300;
    animation: anim 1.5s .5s backwards;
}

/* end of header */

/* worship-with-us */
.worship-with-us {
    margin-left: 8rem;
    display: flex;
    background-color: #ddd;
}

.worship-with-us-content {
    flex: 0 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10rem;
    box-sizing: border-box;
}

.worship-with-us-heading {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #555;
}



.sub-heading {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: .2rem;
    color: #b85d1c;
}

.worship-with-us-paragraph {
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
    margin-top: 1rem;
}

.title-in-theme {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .2rem;
}

.worship-with-us-btn {
    width: 15rem;
    padding: .7rem .5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #b85d1c;
    background-color: transparent;
    border: .1rem solid #b85d1c;
    outline: none;
    cursor: pointer;
}

.btn-arrow {
    margin-left: .5rem;
    transition: margin-left .4s;
}

.worship-with-us-btn:hover .btn-arrow {
    margin-left: 1.5rem;
}

.worship-with-us-images {
    flex: 1 1;
    position: relative;
}

.image {
    width: 32rem;
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: 0 3rem 6rem rgba(0, 0, 0, .4);
    border-radius: .4rem;
    border: .2rem solid #b85d1c;
}

.image-1 {
    transform: translate(-40%, -90%);
}

.image-2 {
    transform: translate(-70%, -90%);
}

.image-3 {
    transform: translate(-90%, -50%);
}

.image-4 {
    transform: translate(-30%, -30%);
}

/* end of worship-with-us */

/* common header */
.common-header {
    padding: 5rem;
    text-align: center;
    color: #b85d1c;
}

.common-heading {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: .2rem;
}

.small-underline {
    width: 9rem;
    height: .1rem;
    margin: 0 auto 1rem auto;
    background-color: #b85d1c;
}

.big-underline {
    width: 20rem;
    height: .1rem;
    margin: auto;
    background-color: #b85d1c;
}

/* end of common header */

/* meet pastor section*/
.meet-our-pastor {
    margin-left: 8rem;
}

.meet-pastor-wrapper {
    display: flex;
    /* flex-wrap: wrap;*/
    justify-content: center;
    margin: 5rem;
}

.pastor {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 30rem;
    height: 50%;
    border-radius: 3rem;

    box-shadow: 0 3rem 6rem rgba(0, 0, 0, .3);
}

.pastor-info {
    flex: 1;
    margin: 0 4rem;
}



.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}


.pastor-name {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 6rem;
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-top: .5rem;
    border-bottom-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
    background-color: #15141b;
}

.pastor-name h4 {
    font-size: 2rem;
}

.pastor-text-lead {
    font-size: 1.5rem;
}

.pastor-text {
    font-size: 1.4rem;
    column-count: 2;
    column-gap: 1rem;
}



.pastor-img {
    width: 100%;
}





/* end of rooms */

/* customers */
.events {
    margin-left: 8rem;
    padding-bottom: 7rem;
    background-color: #15141b;
}

.events-paragraph {
    font-size: 1.8rem;
    color: #ddd;
    width: 50%;
    margin: 2rem auto 8rem auto;
    text-align: center;
}

.events-card-wrapper {
    display: flex;
    justify-content: space-evenly;
}

.events-card {
    background-color: #eee;
    width: 60rem;
    display: flex;
}

.events-image-wrapper {
    margin: auto 0;
}

.events-image {
    width: 20rem;
    margin-left: -1.3rem;
}

.events-info {
    padding: 0 2rem;
}

.events-fullname {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0;
}

.events-paragraph-1 {
    font-size: 1.2rem;
    font-style: italic;
    color: #b85d1c;
}

.events-paragraph-2 {
    font-size: 1.3rem;
    font-style: italic;
}

/* end of customers */

/* footer */
.footer {
    margin-left: 8rem;
}

.main-part {
    display: flex;
    justify-content: space-between;
    background-color: #1c1c1c;
    padding: 4rem;
}

.footer-heading {
    font-size: 2.5rem;
    font-weight: 300;
    color: goldenrod;
    margin: 1rem 0 3rem 0;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list-item {
    margin-bottom: 2rem;
}

.footer-list-link {
    font-size: 1.4rem;
    text-decoration: none;
    color: #bbb;
}

.contact p {
    font-size: 1.5rem;
    color: #bbb;
    margin-bottom: 4rem;
}

.footer-form {
    display: flex;
}

.footer-input {
    width: 25rem;
    padding: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.8rem;
    color: #444;
    outline: none;
}

.footer-btn {
    padding: 1rem;
    background-color: #b85d1c;
    color: #ddd;
    border: none;
}

.gallery {
    max-width: 45rem;
}

.image-wrapper {
    width: 12rem;
    margin: .4rem;
    overflow: hidden;
}

.footer-image {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: all .5s;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
}

.footer-image:hover {
    transform: scale(1.3);
    opacity: .8;
}

.creator-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111;
    padding: 0 4rem;
}

.copyright-text {
    font-size: 1.3rem;
    color: #aaa;
}

.text-right {
    font-size: 1.4rem;
    color: #bbb;
}

.text-right i {
    font-size: 2rem;
    margin: .5rem;
    color: tomato;
}

.text-right span {
    color: gold;
}

/* end of footer */



/* start of our general overseer */
.overseer-section {
    display: flex;
    gap: 2rem;
    margin: 4rem 0;
    margin-left: 8rem;
}

.overseer-col {
    .banner2-content {
        position: absolute;
        right: 4rem;
        bottom: 4rem;
        text-align: right;
        z-index: 2;
    }

    .banner2-heading {
        font-family: 'Josefin Sans', sans-serif;
        font-size: 7rem;
        font-weight: 400;
        margin-bottom: 0;
        animation: anim 2s;
        text-transform: uppercase;
        letter-spacing: .2rem;
    }

    .banner2-paragraph {
        font-size: 3.5rem;
        font-weight: 300;
        animation: anim 1.5s .5s backwards;
        margin-top: 1rem;
    }

    flex: 1;
    padding: 4rem;
    /*    background: #f8f8f8;
    box-sizing: border-box;
    border-radius: 1rem;
    text-align: center;*/
}

.about-us-details {
    font-size: 1.6rem;
    text-align: left;
    /*    font-weight:300;*/
}

.overseer-col ul {
    list-style: none;
    padding: 0;
    font-size: 1.6rem;
}

.overseer-col ul li {
    margin: 1rem 0;
}

.overseer-col a {
    color: #b85d1c;
    text-decoration: none;
}

.overseer-col a:hover {
    text-decoration: underline;
}

.theme-banner-section img {
    width: 100%;
    height: 30rem;
    position: relative;
}

.about-us-col-header {
    font-size: 2rem;
    margin-top: 0;
    flex: 1;
}

/* end of our general overseer */


/* start of mission statement */
.mission-statement-section {
    display: flex;
    margin: 4rem 0;
    margin-left: 8rem;
}

.mission-statement-text {
    flex: 2;
}

.mission-statement-section .related-links {
    flex: 1;
}

/* end of mission statement  */


/* start of our logo */
.our-logo-section {
    display: flex;
    margin: 4rem 0;
    margin-left: 8rem;
    gap: 2rem;
}

.logo-container {
    flex: 2;
    display: flex;
    justify-content: center;
}

.icgc-logo {
    width: 20rem
}

.col-1 {
    flex: 2;
    padding: 4rem;
}

.our-logo-col-2 {
    flex: 1;
    padding: 4rem;
}

/* end of our logo */


/* start of our history */
.banner-container {
    height: 50rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .5)), url(../img/seekers-temple.jpg) center no-repeat;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.our-history-banner-header {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: .2rem;
    text-align: center;
}

.content-container {
    margin-left: 8rem;
    display: flex;
    margin-top: 2rem;
}

.content-col-1 {
    flex: 1;
    padding: 2rem;
}

.content-col-2 {
    flex: 1;
}

.history-img-1 {
    width: 100%;
}

.content-paragraph {
    font-size: 1.4rem;
}

/* start of our services */

.our-services-banner-container {
    height: 50rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .1), rgba(0, 0, 0, .5)), url(../img/join_us.jpg) center no-repeat;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.our-history-banner-header {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: .2rem;
    text-align: center;
}


.service-container {
    display: flex;
    flex-wrap: wrap;
    margin-left: 8rem;
    justify-content: space-between;
    /* gap: 2rem; */
    padding: 5rem;
}

.service-card-detail {
    background: #fff;
    /* border-radius: 1.5rem; */
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    /* padding: 1rem; */
    margin: 2rem 0;
    max-width: 30rem;
    text-align: center;
    transition: box-shadow 0.3s;
    flex: 1 1 1;
}

.service-card-detail img {
    width: 100%;
    /* border-radius: 1rem 1rem 0 0; */
    margin-bottom: 1.5rem;
}

.service-card-detail h3 {
    margin: 1rem 0 0.5rem 0;
    font-size: 2rem;
    color: #b85d1c;
}

.service-card-detail p {
    font-size: 1.3rem;
    color: #555;
    margin: 0.5rem 0;
    padding: 1rem;
}

.service-card-detail:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.our-service-title-header {
    text-transform: uppercase;
}

/* end of our services */


/* start of gallery */
.gallery-container {
    margin-left: 8rem;
    padding: 5rem;
}

/* Start of event count down */
.event-countdown {
    margin-left: 8rem;
    padding: 2.5rem;
}

.event-countdown-heading {
    text-align: center;
}

.event-poster-img {
    height: 220px;
    width: 300px;
    object-fit: cover;
}

.event-slider {
    padding: 2rem;
}

.event-countdown-paragraph {
    font-size: 1.4rem;
}

.event-countdown-timer {
    font-size: 5rem;
    margin: 2rem 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.cd-box {
    background: #f8f8f8;
    border-radius: 1rem;
    padding: 1rem 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cd-num {
    font-size: 4rem;
    color: #b85d1c;
    display: block;
    font-weight: bold;
}

/* end of event count down */


/*Gallery page*/
.filter-btn {
    font-size: 1.3rem;
}

/*End of Gallery Page*/



@media(max-width:1250px) {
    .worship-with-us {
        flex-direction: column;
        padding-bottom: 15rem;
    }

    .worship-with-us-paragraph {
        margin-bottom: 2rem;
    }

    .worship-with-us-btn {
        margin-bottom: 5rem;
    }

    .image {
        width: 20rem;

    }
}

@media(max-width:950px) {
    .main-part {
        flex-direction: column;
    }

    .footer-list {
        display: flex;
    }

    .footer-list-item {
        margin-right: 3rem;
    }

    .creator-part {
        flex-direction: column;
        text-align: center;
    }

    .copyright-text {
        order: 1;
    }

}

@media(max-width:685px) {
    .worship-with-us-heading{
        font-size: 3rem;
    }
    .footer-list {
        flex-direction: column;
    }

    .pastor-text {
        font-size: 1.4rem;
        column-count: 1;
        /* column-gap: 1rem; */
    }
}

@media(max-width:900px) {
    .meet-pastor-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 0;
    }

    .pastor{
        margin-bottom: 4rem;
    }

    .pastor-text {
        font-size: 1.4rem;
        column-count: 1;
        /* column-gap: 1rem; */
    }

     .banner-heading{
        font-size: 6rem;
        text-align: center;
    }

    .banner-paragraph{
        text-align: center;
         font-size: 3rem;
         margin-bottom: 8rem;
    }

     .banner2-heading{
        font-size: 5rem;
        text-align: left;
    }

    .banner2-paragraph{  
         font-size: 2.5rem;
         margin-bottom: 8rem;
    }

    .banner2-content{
        margin-left: 0;
    }
}

@media(max-width:500px){

    .banner-heading{
        font-size: 3.5rem;
        text-align: center;
    }

    .banner-paragraph{
        text-align: center;
         font-size: 2rem;
         margin-bottom: 5rem;
    }

     .banner2-heading{
        font-size: 3rem;
        text-align: left;
    }

    .banner2-paragraph{
        
         font-size: 2rem;
         margin-bottom: 7rem;
    }

    .banner2-content{
        margin-left: 2rem;
    }

     .image {
        width: 17rem;

    }

  

    .worship-with-us-heading{
        font-size: 2.2rem;
        padding-bottom: 2rem;
    }

    .big-underline{
margin-bottom: 1rem;
    } 
}