.app-section-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image:url('../../../frontend/img/blur-background.svg');
  }

  .app-section-container .container {
    position: relative;
    z-index: 1;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   height: 400px;

    padding: 20px;
    & h2{
      font-weight: 700;
      line-height: 39px;
      text-align: center;
      color: #101010;
      margin-bottom:10px;
    }
    & p{
      color: #333333;
      line-height:32px;
      text-align: center;
      margin-bottom:50px;
    }
    & .app-section-buttons{
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      & a{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 280px;
        height: 54px;
        background: #101010;
        border-radius: 12px;
        font-size: 18px;
        line-height: 30px;
        text-align: center;
        color: #FFFFFF;
        gap:0.3rem;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
      }
        & a:hover{
          background: #333;
        }
    }
  }

