.boxes {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.boxes .box {
  border-radius: 20px;
  box-shadow: 0px 8px 14px 0px rgba(0, 20, 83, 0.15);
  padding: 35px 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1em;
}
.boxes .box p {
  margin: 0;
}
.boxes .box.profitability {
  background: #36c3b0;
  color: #fff;
}
.boxes .box.drawdown {
  background: #40b5d6;
  color: #fff;
}
.boxes .box.profit {
  background: #fff;
  text-transform: uppercase;
}
.boxes .box.profit #profit {
  margin-top: 10px;
}

@media (max-width: 991px) {
  .boxes {
    flex-direction: column;
    gap: 10px;
  }
  .boxes .box {
    width: 100%;
    padding: 20px;
    font-size: 18px;
  }
  #hedge_fund {
  }
}
