.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;
  text-shadow: 1px 1px 5px black;
}

.pastors__img-1,
.pastors__img-2,
.pastors__img-3,
.pastors__img-4,
.pastors__img-5,
.pastors__img-6,
.pastors__img-7,
.pastors__img-8,
.pastors__img-9,
.pastors__img-10,
.pastors__img-11,
.pastors__img-12,
.pastors__img-13 {
  width: 300px;
  height: 400px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: var(--spacing-sm);
}

.pastors__img-1 {
  background-image: url("../../assets/images/pastorate1.jpeg");
}

.pastors__img-2 {
  background-image: url("../../assets/images/pastorate2.jpeg");
}

.pastors__img-3 {
  background-image: url("../../assets/images/pastorate3.jpeg?v=222");
}

.pastors__img-4 {
  background-image: url("../../assets/images/pastorate4.jpeg?v=222");
}

.pastors__img-5 {
  background-image: url("../../assets/images/pastorate5.jpeg?v=222");
}

.pastors__img-6 {
  background-image: url("../../assets/images/pastorate6.jpeg");
}

.pastors__img-7 {
  background-image: url("../../assets/images/pastorate7.jpeg");
}

.pastors__img-8 {
  background-image: url("../../assets/images/pastorate8.jpeg?v=222");
}

.pastors__img-9 {
  background-image: url("../../assets/images/pastorate9.jpeg");
}

.pastors__img-10 {
  background-image: url("../../assets/images/founders-daddy.png");
}

.pastors__img-11 {
  background-image: url("../../assets/images/founders-mummy.png");
}

.pastors__img-12 {
  background-image: url("../../assets/images/pastorate11.jpg");
}

.pastors__img-13 {
  background-image: url("../../assets/images/pastorate11.jpeg?v=222");
}

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

.pastors-credentials__bio:hover {
  text-decoration: underline;
}

.bio-container {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  justify-content: center;
  align-items: center;
}

.bio {
  max-width: 750px;
  width: 90%;
  max-height: 600px;
  padding: 20px;
  padding-top: 0;
  z-index: 15;
  background-color: #ffffff;
  border-radius: 8px;
  text-align: center;
  overflow-y: scroll;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.bio__role {
  background-color: white;
  padding: 20px;
  position: sticky;
  top: 0;
}

.close-bio {
  margin-left: auto;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: rgb(194, 194, 194);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media only screen and (max-width: 450px) {
  .banner {
    height: 350px;
  }
}