/* section01 */
#section01 > .list-container{
  /*position: relative;*/
  /*padding: 70px 24px 48px;*/
}
.search-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  margin-bottom: 48px;
}

#input-search {
  width: 100%;
  margin-right: 0.625rem;
  border: 1px solid var(--gray4);
  border-radius: 4px;
  padding: 8px 16px;
}

#input-search::placeholder {
  color: var(--gray5);
  font-size: 1rem;
}

#btn-search {
  width: fit-content;
  height: 48px;
  flex-shrink: 0;
  padding: 8px 16px;
  color: var(--gray1);
  background-color: var(--primary);
  border-radius: 4px;
}

.funding-list-container {
  width: 94%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

.funding-list-box {
  width: 48%;
  margin-bottom: 1.25rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.3);
}

.funding-list {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.funding-info-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px;
  background-color: rgba(0, 0, 0, 0.3);
}

.funding-info-container > p {
  color: var(--gray1);
}

.achieved-percent {
  height: 20px;
}

.funding-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.funding-image > img {
  all: inherit;
}

.btn-funding {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background-color: var(--primary);
  color: var(--gray1);
}

#btn-more {
  margin-top: 3rem;
}