#topHeader {
  position: relative;
  width: 100%;
  height: 40vh;
  background-image: url("../img/microfinance.jpg");
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: var(--primary-font);
}

#topHeader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--fade-color);
  z-index: 1;
}

#topHeader h1 {
  position: relative;
  z-index: 2;
  color: var(--background-color);
}
#topHeader .breadcrumb {
  z-index: 2;
  background: none;
}
#topHeader .breadcrumb .breadcrumb-item {
  list-style: none;
  font-size: var(--subHeader-size);
}
#topHeader .breadcrumb .active {
  color: var(--background-color);
}
#topHeader .breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: var(--highlight-color);
  font-weight: 600;
}
#features {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  #features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  #features {
    grid-template-columns: repeat(3, 1fr);
  }
}

#features .feature {
  min-width: 30%;
  min-height: 30%;
  padding: 10px;
  margin: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
#features .feature:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.subHeader,
.header {
  font-size: var(--subHeader-size);
  font-weight: 600;
  color: var(--text-color);
}
#features .subText,
#benefits .subText {
  font-size: var(--small-size);
  color: var(--text-color);
}
.section-title {
  font-size: var(--header-size);
  margin-bottom: 30px;
}
#features .tinyText {
  font-size: var(--tinyText);
  color: var(--text-color);
}
