.mainView {
    position: relative;
    height: 500px;
    background-image: linear-gradient(to right, #194FE8, #981CFF);
    margin-bottom: 80px;
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
  }

  .curve {
    position: absolute;
    bottom: 0;
    height: 200px;
    margin-bottom: -30px;
    border-radius: 50% 50% 50% 50% / 85% 85% 15% 15%;
    background-image: linear-gradient(to right, #194FE8, #981CFF);
    z-index: 1;
  }

  .part-3{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px;
    padding-top: 50px;
  }

  .curve-top{
    position: absolute;
    top: 0;
    height: 200px;
    width: 100%;
    margin-top: -170px;
    border-radius: 50% 50% 50% 50% / 85% 85% 15% 15%;
    background-color: #f1f3f3;
    z-index: 1;
  }

  @media only screen and (max-width: 600px) {
    .app-badge {
      width: 120px;
    }
  }

  @media only screen and (min-width: 600px) {
    .app-badge {
      width: 150px;
    }
  }

  .circle {
    /* background-image: linear-gradient(to right,  #194FE8, #981CFF); */
    background-color: #194FE8;
    color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
  }

  .csBtn{
    background-image: linear-gradient(to right, #194FE8, #981CFF);
    font-weight: 400;
    transition: 0.3s;
    color: white;
  }
  .csBtn:hover{
    background-image: linear-gradient(to right, #981CFF, #194FE8);
    font-weight: bold;
    color: white;
  }
  .csBtn-light{
    opacity: 0.55;
    border: white 1px solid;
    color: white;
    font-weight: 400;
    transition: 0.3s;
  }
  .csBtn-light:hover{
    opacity: 1;
    border: white 1px solid;
    color: white;
    font-weight: bold;
  }