.curve {
    color: white !important;
    position: relative;
    overflow: hidden;
    text-align: left;
    padding: 1.5rem 1rem;
    width: 100%;
    z-index: 2;
    margin-top:0px !important;
    margin-bottom: 1rem !important;
    
    &::before {
      content: '';
      display: block;
      background: radial-gradient(ellipse at center, rgba(16, 31, 105, 0.6) 25%,rgb(16, 31, 105) 100%);
      position: absolute;
      left: 0%;
      bottom: 0;
      transform: translateX(-50%);
      border-radius: 250vw;
      width: 500vw;
      height: 500vw;
      z-index: -1;
    }
  }