.quran-card {
  .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #fff;
    h4 {
      font-family: merri-700;
      font-size: 36px;
    }
    .line {
      width: 35px;
      height: 1px;
      background-color: #fff;
    }
  }
  .aye {
    color: #212121;
    font-family: merri-900;
    font-size: 20px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .quran-card {
    .content {
      h4 {
        font-size: 20px;
      }
      .line {
        display: none;
      }
      span {
        font-size: 12px;
      }
    }
    .aye {
      font-size: 13px;
    }
  }
}
