/*!
 * -------------------------------------------------------
 * Project Name : Prop Funding
 * Author       : SoftwareZon
 * Author URL   : https://softwarezon.com
 * Version      : 1.0.0
 * Created      : 2025
 * Description  : Contains global CSS used by why choose section.
 * File         : why-choose.css
 * -------------------------------------------------------
 * ©2025 SoftwareZon. All Rights Reserved.
 * -------------------------------------------------------
 */
/*----------------------------------------------------
  01. Why Choose Section Styles
----------------------------------------------------*/
.why-choose-section:after {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  right: 0;
  height: 85%;
  width: 40%;
  background-color: rgba(var(--brand), 0.08);
  filter: blur(100px);
  z-index: -2;
  margin: 0 auto;
}
.curve-line {
  position: relative;
}
.curve-line:after {
  content: "";
  position: absolute;
  left: 16%;
  top: -37px;
  height: 60px;
  width: 350px;
  background-image: url("../images/shape/curve-line.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.18;
  z-index: -1;
}
.curve-line:before {
  content: "";
  position: absolute;
  right: 16%;
  top: -37px;
  height: 60px;
  width: 350px;
  background-image: url("../images/shape/curve-line.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.18;
  z-index: -1;
}
