* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    transition: all 0.3 linear;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #74EbD5;
    background-image: linear-gradient(90deg, #74ebd5 0%, #9face6 100%);
}

.heading {
    font-size: 25px;
    padding: 5px 0;
    color: #000;
    justify-content: center;
    text-align: center;
}

.audio {
    display: none;
}

.box {
    width: 350px;
    height: 250px;
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    padding-top: 5px;
    margin: 15px;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    overflow: hidden;
    position: relative;
    z-index: 0;
}



.box h3 {
    width: 100%;
    margin-top: 5px;
    font-size: 25px;
    padding: 5px 0;
    cursor: pointer;
    color: #000;
}


.box::before {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.box::after {
    width: 100%;
    height: 100%;
    background-color: #FBDA61;
    background-image: linear-gradient(160deg, #0093e9 0%, #80D0c7 100%);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    clip-path: circle(20% at 90% 10%);
    transition: .2s;
}

.box .count {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 45px;
    font-weight: bolder;
    color: #fff;
}


.box:nth-child(2):after {
    background-color: #08AEEA;
    background-image: linear-gradient(0deg, #08AEEA 0%, #2AF598 100%);
}

.box:nth-child(4):after {
    background-color: #08AEEA;
    background-image: linear-gradient(0deg, #08AEEA 0%, #2AF598 100%);
}

.box:nth-child(6):after {
    background-color: #08AEEA;
    background-image: linear-gradient(0deg, #08AEEA 0%, #2AF598 100%);
}

.box:nth-child(8):after {
    background-color: #08AEEA;
    background-image: linear-gradient(0deg, #08AEEA 0%, #2AF598 100%);
}



.box:hover::after {
    clip-path: circle(100%);
}

.box:hover h3 {
    color: #fff;

}

.box:hover button {
    color: #333;
    background-color: #fff;
}

.box:hover ::before {
    background-color: rgba(0, 0, 0, .1);
}