.banner-pricing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 40px;
  height: 424px;

  p {
    text-align: center;

    &:nth-child(1) {
      font-size: 32px;
      font-weight: bold;
      background: linear-gradient(90deg, #7057DF 0%, #3DFF94 100%);
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    &:nth-child(2) {
      font-size: 16px;
      color: #3D3D3D;
    }
  }
}

.pricing-block-1 {
  border: 1px solid #EDEDED;
  background: #FCFCFC;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;

  .title-row {
    margin-top: 80px;
    margin-bottom: 0;
    font-size: 32px;
  }

  .pricing-block-1-main {
    border: 1px solid #D8D8D8;
    width: 906px;
    height: 616px;
    margin-top: 48px;
    border-radius: 12px;
    background: #FFFFFF;
    display: flex;
    padding: 0 60px;

    .pricing-block-1-main-left {
      width: 80px;

      p {
        padding-left: 20px;


      }

      img {
        width: 24px;
        object-fit: contain;
      }
    }

    .pricing-block-1-main-mid {
      width: 220px;

      p {
        padding-right: 36px;
      }
    }

    .pricing-block-1-main-right {
      flex: 1;

      p {
        font-weight: 600;
      }
    }

    div {
      display: inline-flex;
      flex-direction: column;

      p {
        flex: 1;
        display: inline-flex;
        align-items: center;
        height: 88px;

        font-size: 14px;
        font-weight: bold;
        color: #3D3D3D;
        border-bottom: 1px solid #D8D8D8;

        &:nth-child(1) {
          font-size: 18px;
        }

        &:nth-last-child(1) {
          border-bottom: none;
        }
      }



    }
  }
}

.pricing-block-2 {
  .title-row {
    font-size: 32px;
  }

  .pricing-block-2-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 80px;

    .pricing-block-2-main-item {
      width: 576px;
      height: 325px;
      display: flex;
      flex-direction: column;
      justify-content: center;

      p {
        font-size: 16px;
        line-height: 24px;
        color: #3D3D3D;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }

}