.quote-section{
  min-height: 631px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  align-items: end;
  display: flex;
}
.quote-section::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000000 100%),
  linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
  radial-gradient(41.46% 208.58% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  align-self: stretch;
  position: absolute;
  bottom: 0;
  z-index: 0;
  left: 0;
}
.quote-section .container{
  position: relative;
  z-index: 1;
}
.quote-section .quote-text h3{
  font-family: 'Fraunces';
  font-weight: 300;
  letter-spacing: -0.5px;
}
.quote-section .quote-caption{
  margin-top: 64px;
}
.quote-section .quote-caption .quote-caption-name{
  margin-bottom: 8px;
  font-family: 'Bahij-TheSansArabic-bold';
}
.quote-section .quote-caption .quote-caption-post{
  color:rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .quote-section{
    min-height: 100vh;
  }
}
@media (max-width: 767px) {
  .quote-section{
    background-position: center;
  }
  .quote-section .quote-text h3{
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -0.3px;
  }
  .quote-section .quote-caption{
    margin-top: 32px;
  }
}