
    /* 11) second last section /////////////////////*/
    .secondLast{
        padding:60px 4%;
        display:flex;
        gap:0.625rem;
        justify-content:center;
        align-items:center;
    }
    
    .secondLast img{
        max-width: 16%;
        height:auto;
        margin-top:1.25em;
    }
    
    .secondLast .secondLastContainer{
        display:flex;
        flex-direction:column;
        text-align:center;
    }
    
    .secondLast .secondLastContainer h1{
        line-height:1.875em;
    }
    
    .secondLast .secondLastContainer .ripple-button{
        font-family: 'Inter', sans-serif;
        text-decoration:none;
        font-size: clamp(0.75rem, 0.541rem + 0.788vw, 1.25rem);
        font-weight: 500;
        /* background:white; */
          background-color: #666;
            color: white;
        max-height:1.875em;
    
        margin:1.2em auto;
        
        border-radius: 0.25em;
        border: 0.125em solid rgba(171, 182, 190, 1);
        color:rgba(255, 255, 255, 0.94);
        cursor:pointer;

        padding:1em 2.5em;
        position: relative;
        transition: transform 0.3s ease;
        outline: none;
        overflow: hidden;
        transition:0.3s;display: flex;justify-content: center;align-items: center;
        
    }
    .secondLast .secondLastContainer  .ripple-button:hover{
        cursor:pointer;
        border: 0.125em solid rgba(80, 80, 80, 1);
        background:rgba(80, 80, 80, 1);
        color:white;
       
    }
    
  
    .secondLast .secondLastContainer  .ripple-button::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300%;
        height: 300%;
        background-color: rgba(0, 0, 0, 0.034);
        border-radius: 50%;
        transform: scale(0);
        transition: transform 0.6s ease-out, opacity 1s ease-out;
        pointer-events: none;
      }


      .secondLast .secondLastContainer  button:hover::before {
        transform: scale(2);
        opacity: 1;
      }

    .secondLast .secondLastContainer p{
        font-family: 'Montserrat', sans-serif;
        font-size: clamp(0.75rem, 0.536rem + 1.071vw, 1.5rem);
        font-weight: 600;
        line-height:1.5em;
        color:#000000;
    }

    @media only screen and (max-width: 768px) {
        .secondLast{
            padding:4.375em 8%;
           
        }
        .secondLast img{
           display:none;
        }
        
    }
    