.card {

    background-color: var(--p1);
    border-radius: 24px;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.notch {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 50px;
    background-color: #191919;
    border-radius: 0 0 60px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notch span {
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    font-family: "Kumbh Sans";
}

.card h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #000;
    margin-top: 10px;
}

.card p {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    margin: 0;
    padding: 0 15px;
}



.card-section-1 .card {
    transition: all .3s ease-in-out;
}

.card-section-1 .card:hover {
    background: #1AFB9A !important;
}

.card-section-1 .card h2,.card-section-1 .card p{
    transition: all .3s ease-in-out;
}

.card-section-1 .card:hover h2,  .card-section-1 .card:hover p{
    color: #141414 !important;
    transition: all .3s ease-in-out;
}


.card-section-3 .card {
    transition: all .3s ease-in-out;
}

.card-section-3 .card:hover {
    background: #1AFB9A !important;
}

.card-section-3 .card h2,.card-section-3 .card p{
    transition: all .3s ease-in-out;
}

.card-section-3 .card:hover h2,  .card-section-3 .card:hover p{
    color: #141414 !important;
    transition: all .3s ease-in-out;
}