@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin&family=Poppins:wght@200;300&display=swap');

* {
    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%);
}

.box {
    width: 250px;
    height: 300px;
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    padding-top: 50px;
    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 {
    margin-top: 20px;
    font-size: 30px;
    padding: 5px 0;
    cursor: pointer;
    color: #444;
}

.box button {
    width: 130px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border: none;
    outline: none;
    font-size: 17px;
    cursor: pointer;
    border-radius: 50px;
    margin-top: 20px;
}

.box button:hover {
    letter-spacing: 2px;
    opacity: .8;
}

.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:nth-child(10):after {
    background-color: #08AEEA;
    background-image: linear-gradient(0deg, #08AEEA 0%, #2AF598 100%);
}

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

.box:nth-child(14):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);
}

.container-fluid span {
    color: red;
}

.container-fluid h2 {
    font-size: 20px;
    text-align: center;
}