.gardensun-text-display {
  padding: 50px 0;
  background: #f3f3f3;
}
.gardensun-text-display .container {
  text-align: center;
}
.gardensun-text-display .text-title {
  color: #221815;
  text-align: center;
  font-size: 32px;
  text-transform: capitalize;
  line-height: 1.4;
  margin-bottom: 20px;
}
.gardensun-text-display .block-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.gardensun-text-display .block-item {
  background: #fff;
  flex: 0 0 calc(50% - 20px);
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.gardensun-text-display .block-title {
  color: #221815;
  font-size: 19px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 10px;
}
.gardensun-text-display .block-desc {
  color: #221815;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
}
@media (max-width: 900px) {
  .gardensun-text-display .block-list {
    gap: 20px 0;
  }
  .gardensun-text-display .block-item {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 0;
    padding: 24px 16px 20px 16px;
  }
  .gardensun-text-display .text-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 768px) {
  .gardensun-text-display {
    padding: 60px 0;
  }
  .gardensun-text-display .text-title {
    font-size: 28px;
    margin-bottom: 80px;
    line-height: normal;
  }
}