/*!
 * -------------------------------------------------------
 * Project Name : Prop Funding
 * Author       : SoftwareZon
 * Author URL   : https://softwarezon.com
 * Version      : 1.0.0
 * Created      : 2025
 * Description  : Contains global CSS used by investor  components.
 * File         : investor-review.css
 * -------------------------------------------------------
 * ©2025 SoftwareZon. All Rights Reserved.
 * -------------------------------------------------------
 */
/*----------------------------------------------------
  01. Investor Section Styles
----------------------------------------------------*/

.investor-review-card-icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: linear-gradient(
    117.1deg,
    rgba(var(--brand), 1) 35.08%,
    rgba(var(--brand-secondary), 1) 105.57%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.6s;
}
.investor-review-card-icon img {
  max-width: 32px;
  width: 100%;
}
.investor-review-author img {
  max-width: 38px;
  width: auto;
}
.investor-review-author p {
  line-height: 18px;
  font-weight: 400;
}
.investor-review-author h6 {
  font-size: calc(var(--base) - 2px);
  font-weight: 600;
  line-height: 20px;
}
.investor-review-card:hover .investor-review-card-icon {
  background: rgba(var(--brand), 0.8);
}
@media all and (max-width: 991px) {
  .investor-review-card-icon {
    height: 50px;
    width: 50px;
  }
  .investor-review-card-icon img {
    max-width: 22px;
  }
}
