.text {
  padding: 60px;
}

.text-card-wrapper {
  position: relative;
  max-height: 640px;
  overflow: hidden;
  /* fade efekt dışına taşmasın */
  border-radius: 40px;
  box-shadow:
    rgba(17, 17, 26, 0.1) 0px 8px 24px,
    rgba(17, 17, 26, 0.1) 0px 16px 56px,
    rgba(17, 17, 26, 0.1) 0px 24px 80px;
  background-color: #fff;
  margin-top: 40px;
}

.text-card {
  margin-top: 2.5%;
  height: 90%;
  overflow-y: auto;
  padding: 40px 60px;
}

.fade-bottom {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 200px;
  width: 97%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 80%);
  pointer-events: none;
  z-index: 10;
}

.text .text-title {
  font-size: 27px;
  font-weight: bold;
  text-align: center;
  color: #373737;
}

.text h1 {
  font-size: 25px;
  color: #7a7a7a;
  margin-bottom: 0;
}

.text h2 {
  font-size: 23px;
  color: #7a7a7a;
  margin-bottom: 0;
}

.text h3 {
  font-size: 16px;
  color: #c9c6c6;
  margin-bottom: 0;
}

.text p {
  margin-bottom: 0;
  font-size: 15px;
  color: #c9c6c6;
}

@media (max-width: 991px) {
  .text-card {
    margin-top: 20%;
    height: 85%;
    padding: 25px;
  }

  .text {
    padding: 15px;
  }
}
