.height-165px {
    height: 165px;
}
/*New box pricing table start*/
/* Base Styles */
.pricing-table {
    background: #fff;
    box-shadow: 0px 1px 10px -6px rgba(0, 0, 0, .15);
    padding: 2rem;
    border-radius: 4px;
    transition: .3s;
    margin: 1rem; /* Add margin for spacing */
    max-width: 100%; /* Ensure it doesn't exceed container width */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

.pricing-table:hover {
    box-shadow: 0px 1px 10px -4px rgba(0, 0, 0, .15);
}

.pricing-table .pricing-label {
    border-radius: 2px;
    padding: .25rem .5rem;
    margin-bottom: 1rem;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
}

.pricing-table h2 {
    color: #3b3b3b;
    font-size: 24px;
    font-weight: 500;
}

.pricing-table h5 {
    color: #B3B3B3;
    font-size: 14px;
    font-weight: 400;
}

.pricing-table .pricing-features {
    margin-top: 2rem;
}

.pricing-table .pricing-features .feature {
    font-size: 14px;
    margin: .5rem 0;
    color: #B3B3B3;
}

.pricing-table .pricing-features .feature span {
    display: inline-block;
    float: right;
    color: #3b3b3b;
    font-weight: 500;
}

.pricing-table .price-tag {
    margin-top: 2rem;
    text-align: center;
    font-weight: 500;
}

.pricing-table .price-tag .symbol {
    font-size: 24px;
}

.pricing-table .price-tag .amount {
    letter-spacing: -2px;
    font-size: 64px;
}

.pricing-table .price-tag .after {
    color: #3b3b3b;
    font-weight: 500;
}

.pricing-table .price-button {
    display: block;
    color: #fff;
    margin-top: 2rem;
    padding: .75rem;
    border-radius: 2px;
    text-align: center;
    font-weight: 500;
    transition: .3s;
}

.pricing-table .price-button:hover {
    text-decoration: none;
}

/* Color Themes */
.purple .pricing-label {
    background: #cad2ff;
    color: #627afe;
}

.purple .price-tag {
    color: #627afe;
}

.purple .price-button {
    background: #627afe;
}

.purple .price-button:hover {
    background: #546dfe;
}

.turquoise .pricing-label {
    background: #b9edee;
    color: #44cdd2;
}

.turquoise .price-tag {
    color: #44cdd2;
}

.turquoise .price-button {
    background: #44cdd2;
}

.turquoise .price-button:hover {
    background: #2dbcc4;
}

.red .pricing-label {
    background: #ffc4c4;
    color: #ff5e5e;
}

.red .price-tag {
    color: #ff5e5e;
}

.red .price-button {
    background: #ff5e5e;
}

.red .price-button:hover {
    background: #f23c3c;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pricing-table {
        padding: 1.5rem;
    }

    .pricing-table h2 {
        font-size: 20px;
    }

    .pricing-table h5 {
        font-size: 12px;
    }

    .pricing-table .pricing-features .feature {
        font-size: 12px;
    }

    .pricing-table .price-tag .symbol {
        font-size: 20px;
    }

    .pricing-table .price-tag .amount {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .pricing-table {
        padding: 1rem;
    }

    .pricing-table h2 {
        font-size: 18px;
    }

    .pricing-table h5 {
        font-size: 11px;
    }

    .pricing-table .pricing-features .feature {
        font-size: 11px;
    }

    .pricing-table .price-tag .symbol {
        font-size: 18px;
    }

    .pricing-table .price-tag .amount {
        font-size: 36px;
    }

    .pricing-table .price-button {
        padding: .5rem;
        font-size: 14px;
    }
}

/*New box pricing table end*/


.pricing-box {
    display: inline-block;
    width: 100%;
    background: #fff;
    margin-bottom: 30px;
    border: 2px solid #fff;
    border-radius: 160px;
    padding: 30px 80px;
    position: relative;
    box-shadow: #3032F9 -5px 8px 10px 3px;
    transition: all 0.3s ease-in-out;
    color: #000000;

}

.pricing-box:hover {
    box-shadow: #3032F9 -5px 8px 20px 10px;
    transform: translateY(-10px);
}
