@media (max-width: 767px) {
    .g-wrap{
        width: 90%;
    }
    .pay-btn{
        margin-top: 2.25rem;
        width: 100%;
        height: 4.375rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #0095FF;
        color: #fff;
        font-weight: bold;
        border-radius: 12px;

    }
    .service-item{
        background-color: #fafafa;
        border-radius: 1rem;
        padding: 1.5rem;
        width: 100%;
        margin-bottom: 3rem;

        box-sizing: border-box;
    }
    .service-footer{
        margin-top: 32px;
        display: flex;
        justify-content: space-between;
    }

    .look-btn{
        margin-top: 2.25rem;
        width: 100%;
        height: 4.375rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fafafa;
        color: #111;
        font-weight: bold;
        border-radius: 12px;

    }
}
@media (min-width: 767px) {

    .g-wrap{
        width: 62.5%;
    }
    .pay-btn{
        margin-top: 2.25rem;
        width: 12.5rem;
        height: 3.375rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #0095FF;
        color: #fff;
        font-weight: bold;
        border-radius: 12px;
        font-size: 1rem;
    }
    .look-btn{
        margin-top: 2.25rem;
        width: 12.5rem;
        height: 3.375rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fafafa;
        color: #111;
        font-weight: bold;
        border-radius: 12px;
        font-size: 1rem;
    }
    .service-item{
        background-color: #f5f5f5;
        border-radius: 1rem;
        padding: 1.5rem;
        width: 95%;
        margin-bottom: 1rem;
        box-sizing: border-box;
    }
    .service-footer{
        margin-top: 40px;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

}


.item-txt{
    font-size: 36px;
}

.service-list{
    padding-top: 1rem;
}
.go-btn{
     width: 13rem !important;
    height: 3.562rem;
    background: #F02C02;
    border-radius: 1.812rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 1.75rem !important;
   
     font-size: 16px;
    border-radius: 12px;
    border: unset!important;
    cursor: pointer;
      background-color: #F02C02;
       color: #fff;
     animation: bounce 0.5s infinite;
}

.go-btn a {
    color: #fff!important;
}




/* Define the keyframes for the bounce effect */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Adjust the value to change the jump height */
    }
}

/* Add a hover state to start the animation on mouseover */
.go-btn {
    animation-play-state: running;
}

