:root {
    --color-payment: #696cff;
}

.servicePayment {
    color: var(--color-payment);
    background: var(--color-payment);
    text-align: center;
    padding: 50px 20px 30px;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.servicePayment:hover {
    transform: scale(1.05);
    transition: .3s transform cubic-bezier(.155, 1.105, .295, 1.12), .3s box-shadow, .3s -webkit-transform cubic-bezier(.155, 1.105, .295, 1.12);
}

.servicePayment:before {
    content: "";
    background: #fff;
    border-radius: 60px 40px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 70px;
    z-index: -1;
}

.servicePayment .title {
    color: var(--color-payment);
    font-family: 'Itim', cursive;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 7px;
}

.servicePayment .description {
    color: #888;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 0.3px;
    text-align: center;
    margin: 30px 0 35px;
}

.servicePayment .service-icon {
    color: var(--color-payment);
    background-color: #eee;
    font-size: 40px;
    line-height: 90px;
    height: 90px;
    width: 90px;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 0 0 10px #fff, 0 0 20px rgba(0, 0, 0, 0.5);
}

.servicePayment.orange {
    --color-payment: #F8931F;
}

.servicePayment.blue {
    --color-payment: #2336a1;
}

.servicePayment.purple {
    --color-payment: #632B8C;
}

@media only screen and (max-width: 1199px) {
    .servicePayment {
        margin: 0 0 30px;
    }
}