
/* Pricing Part CSS */

.pricing-main {
    width: 64vw;
}

.pricing-main-heading {
    margin-top: 55px;
    margin-bottom: 23px;
    width: 100%;
    padding: 34px;
    font-size: 1.6rem;
    font-weight: bold;
}

.pricing-main-heading h1 {
    background-image: linear-gradient(135deg, #ffffff 0%, #78d4ff 50%, #ffffff 100%);
    background-clip: text;
    color: transparent;
}

.pricing-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 12px;
}

.pricing-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
    border-radius: 23px;
    width: 380px;
    height: 635px;
    border: 0.5px solid rgb(54, 52, 62);
    background-color: rgba(41, 41, 41, 0.342);
    padding: 28px 34px;
    color: rgb(200, 200, 200);
    font-size: 1.1rem;
    transition:
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-image 0.35s ease,
    box-shadow 0.35s ease;
}

.pricing-box:hover {
    transform: scale(1.01) translateY(-30px);
    background-color: rgba(37, 37, 37, 0.575);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-box::before {
    transition: opacity 0.6s ease;
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(10, 10, 10, 0.575);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.pricing-box:hover::before {
    opacity: 1;
}

.pricing-box>* {
    position: relative;
    z-index: 1;
}


.web-type-name {
    font-size: 2rem;
    font-weight: 650;
    color: rgb(232, 232, 232);
}

.pricing-box .prices {
    font-size: 2rem;
    font-weight: bold;
    color: #f5ff99;
    padding: 18px;
}

.pricing-box .web-pages {
    font-size: 0.9rem;

}

.price-service {
    padding: 12px 0px;
}

.price-service .box {
    padding: 8px 0px;
    border-bottom: 0.5px solid rgb(32, 31, 42);
}

.pricing-box a {
    width: 100%;
}

.pricing-box .button {
    padding: 15px 28px;
    margin: 16px 0px;
    font-size: 1.2rem;
    color: rgb(255, 255, 255);
    border: 1px solid rgb(53, 53, 53);
    font-weight: 600;
    width: 100%;
    border-radius: 28px;
    background-color: rgba(10, 10, 10, 0.575);
}

.pricing-box .btn {
    width: 81%;
    position: absolute;
    bottom: 0px;
}

.price-cut{
    color: white !important;
    font-size: 1.2rem !important;
    text-decoration: line-through !important;
}