.why-invest-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background: linear-gradient(78.9deg, 
    rgba(104, 0, 255, 0.045) -1.67%,    
    rgba(233, 38, 81, 0.024) 25.87%,    
    rgba(252, 250, 255, 0.036) 49.69%,  
    rgba(233, 38, 81, 0.024) 72.99%,    
    rgba(104, 0, 255, 0.045) 100%       
  );
}

.why-invest-section .why-invest-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-invest-section .why-invest-header .why-invest-title {
  font-size: var(--fs-h2);
  font-weight: 500;
  color: #222222;
  text-align: center;
  margin-bottom: 20px;
}

.why-invest-section .why-invest-header .why-invest-description {
  font-size: var(--fs-h5);
  color: #000000;
  text-align: center;
  margin-bottom: 50px;
}

.why-invest-section .why-invest-grid {
  max-width: 90%;
}

.why-invest-section .why-invest-grid .why-invest-feature-col {
  display: flex;
  margin-bottom: 25px;
}

.why-invest-section .why-invest-grid .why-invest-feature-card {
  padding: 25px 20px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0px 0px 16px 0px rgba(62, 0, 153, 0.2);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.why-invest-section .why-invest-grid .why-invest-feature-card .feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.why-invest-section .why-invest-grid .why-invest-feature-card .feature-description {
  flex: 1;
}

.why-invest-section .why-invest-grid .why-invest-feature-card .feature-icon-wrapper {
  max-height: 100px;
  margin-bottom: 20px;
}

.why-invest-section .why-invest-grid .why-invest-feature-card .feature-title {
  font-size: var(--fs-h5);
  font-weight: 700;
  color: #222222;
  margin-bottom: 10px;
}

.why-invest-section .why-invest-grid .why-invest-feature-card .feature-description {
  font-size: var(--fs-f6);
  font-weight: 400;
  color: #222222;
}

.only-show-desktop {
  display: block;
}

.only-show-mobile {
  display: none;
}

@media screen and (max-width: 991px) {
  .why-invest-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .why-invest-section .why-invest-header .why-invest-title {
    font-size: var(--fs-h6);
    font-weight: 700;
  }

  .why-invest-section .why-invest-header .why-invest-description {
    font-size: var(--fs-body);
    margin-bottom: 40px;
  }

  .why-invest-section .why-invest-grid {
    max-width: 100%;
  }

  .why-invest-section .why-invest-grid .why-invest-feature-col {
    margin-bottom: 20px;
  }

  .why-invest-section .why-invest-grid .why-invest-feature-card .feature-icon-wrapper-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .why-invest-section .why-invest-grid .why-invest-feature-card .feature-icon-wrapper {
    max-width: 64px;
    margin-bottom: 10px;
  }

  .why-invest-section .why-invest-grid .why-invest-feature-card .feature-title {
    font-size: var(--fs-body);
    text-align: left;
  }

  .why-invest-section .why-invest-grid .why-invest-feature-card .feature-description {
    font-size: var(--fs-footnote);
  }

  .only-show-mobile {
    display: block;
  }

  .only-show-desktop {
    display: none;
  }
}