
    p {
   
    margin-top: 1rem;
    font-size: 1.5rem;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 50px;
    padding: 0 20px;
    background-color: rgb(241, 245, 248);
}

.pricing-table {
    box-shadow: 1px 2px 20px 11px rgba(126,151,161,1);
    text-align: center;
    padding: 30px 20px;
    border-radius: 5px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.pricing-table .head {
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.pricing-table .head .title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.pricing-table .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-table .content .price {
    background: linear-gradient(to right, #A7C4A0 10%, #f91e7c 90%);
    width: 90px;
    height: 90px;
    margin: -40px auto 20px auto;
    line-height: 90px;
    border-radius: 50%;
    transition: all 0.5s ease;
    box-shadow: 0px 0px 12px #2fd7b3;
}

.pricing-table:hover .content .price {
    transform: scale(1.2);
}

.pricing-table .content .price h1 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 90px;
}

.pricing-table span {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #f91e7c;
    color: #fff;
    padding: 7px 40px;
    font-size: 20px;
    border-radius: 5px;
}

.pricing-table .content ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
}

.pricing-table .content ul li {
    margin: 15px 0;
    font-size: 15px;
}

.pricing-table .buy-now {
    background: linear-gradient(to right, #A7C4A0 10%, #f91e7c 90%);
    border-radius: 50px;
    font-weight: 500;
    display: inline-block;
    margin-top: 20px;
}

.btn.round {
    color: #333;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: capitalize;
    border: none;
    position: relative;
    z-index: 9999;
    display: inline-block;
    text-align: center;
    transition: all 0.3s linear;
}

.pricing-table:hover .btn.round {
    color: #fff !important;
}

.btn.round::after {
    content: "";
    background: #fff;
    border-radius: 50px;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s linear;
    z-index: -1;
    transform: scale(1);
}

.pricing-table:hover .btn.round::after {
    opacity: 0;
    transform: scale(0);
}

.fa-circle-check {
    color: #54d994;
}

.fa-circle-xmark {
    color: #f91e7c;
}

@media screen and (max-width:768px) {
    .wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:600px) {
    .wrapper {
        grid-template-columns: 1fr;
    }
}

