.banner {
    background: url('../../assets/images/about-banner.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    background-color: var(--fill-color);
    height: 500px;
    position: relative;
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}
.banner__text {
    font-size: 3rem;
}

.church-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}
.church__title {
    margin-bottom: var(--spacing-md);
}

.about-church {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    gap: 50px;
}
.about-church__banner {
    display: block;
    width: 50%;
    object-fit: cover;
    border-radius: 8px;
}
.about-church-desc {
    width: 50%;
}

.branches-stations {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    margin-bottom: var(--spacing-lg);
}
.branches {
    width: 60%
}
.stations {
    width: 40%;
}

.founders__img-1,
.founders__img-2,
.founders__img-3 {
    max-width: 400px;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: var(--spacing-sm);
}

.founders-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.founders__title {
    margin-bottom: var(--spacing-md);
}

.founders-info {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    /* width: 100%; */
    /* margin: 0 var(--spacing-md); */
}

.founders__img-1 {
    background-image: url('../../assets/images/founders-daddy.png');
}
.founders__img-2 {
    background-image: url('../../assets/images/founders-mummy.png');
}
.founders__img-3{
    background-image: url('../../assets/images/pastorate1.jpeg');
}

.founders-credentials {
    padding: 30px;
    margin-bottom: var(--spacing-sm);
    border: 2px solid var(--btn-border);
    border-radius: 8px;
    width: 300px;
    /* width: 100%; */
    min-height: 120px;
    line-height: 1.7;
}

.founders__bio {
    text-align: right;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--secondary-text-color);
    cursor: pointer;
    margin-top: 10px;
}

.founders__bio:hover {
    text-decoration: underline;
}

.anthem-container {
    padding: 50px;
    background-color: #0458A0;
    color: white;
    margin-bottom: var(--spacing-lg);
    background-image: url('../../assets/images/bg-pattern.png');
    background-size: 7%;
  }

.anthems {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 750px;
    width: 100%;
}
.church-anthem,
.closing-anthem {
    width: 45%;
}

.locations-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: var(--spacing-lg);
}
.locations-container__header {
    margin-bottom: 30px;
}
.address-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}
.address {
    width: 30%;
}

.campus-fellowship-info {
    text-align: center;
}

@media only screen and (max-width: 749px) {
    .about-church {
        flex-direction: column;
    }
    .about-church__banner,
    .about-church-desc {
        width: 100%;
    }
}

@media only screen and (max-width: 659px) {
    .anthems {
        flex-direction: column;
        gap: 30px;
    }
    .church-anthem,
    .closing-anthem {
        width: 100%;
    }

    .address {
        width: 100%;
    }

    .branches-stations {
        flex-direction: column;
    }
    .branches,
    .stations {
        width: 100%;
    }
}