.hero.pricing .background_shadow {
    background: radial-gradient(90% 100% at 50% 0%, rgba(56, 179, 167, .4), rgba(255, 255, 255, 0))
}

.pricing_plans {
    margin-top: 64px;
    opacity: 0;
    animation: fadeIn .4s .8s forwards
}

.pricing_plans .container {
    justify-content: center
}

.pricing_card_box {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 32px;
    align-items: center
}

.pricing_card {
    width: 100%;
    max-width: 384px;
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    background: rgb(27, 84, 87);
    backdrop-filter: blur(8px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: .4s ease;
    scale: .9
}

.pricing_card:hover {
    scale: .93
}

.pricing_card:nth-child(2) {
    scale: 1;
    background: linear-gradient(200deg, rgb(19, 74, 161), rgb(56, 76, 167), rgba(80, 126, 180))
}

.pricing_card:nth-child(2):hover {
    scale: 1.03
}

.plan_type_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.plan_type {
    border-radius: 8px;
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .1);
    font-size: 14px
}

.plan_popular {
    border-radius: 8px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, .1);
    font-size: 14px
}

.plan_price {
    margin: 16px 0;
    font-weight: 600
}

.plan_price_cost {
    font-size: 36px
}

.plan_price_duration {
    font-size: 24px;
    color: #d1d1d1
}

.plan_features {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 48px 0;
    gap: 12px;
    position: relative
}

.plan_features:before {
    content: "";
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .15)
}

.plan_features:after {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .15)
}

.plan_subhead {
    color: #fff
}

.plan_info {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    font-size: 18px
}

.plan_info svg {
    width: 24px
}

.plan_info svg path {
    stroke: #44b1d8
}

.plan_button {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 12px 0;
    border-radius: 12px;
    background: rgba(68, 216, 202, .3);
    cursor: pointer;
    font-weight: 600;
    transition: .4s ease
}

.plan_button:hover {
    background: rgba(56, 179, 167, .6)
}

@media screen and (max-width: 1200px) {
    .pricing_card_box {
        flex-direction: column;
        align-items: center;
        gap: 24px
    }

    .pricing_card {
        scale: 1
    }

    .pricing_card:hover {
        scale: 1.03
    }
}

.price_box {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-radius: 16px;
    border: 2px solid rgba(147, 206, 255, .4);
    background: rgba(32, 32, 32, .4);
    transition: .4s ease;
    cursor: pointer
}

.price_box:hover {
    background: rgba(147, 206, 255, .2)
}

.price_box.active {
    background: #93ceff;
    border: 2px solid rgba(147, 206, 255, 0)
}

.price_box.active .price_radio_indicator span:first-child {
    border: 2px solid #101010
}

.price_box.active .price_radio_indicator span:last-child {
    opacity: 1;
    scale: 1
}

.price_box.active .price_subscription_time, .price_box.active .price_cost {
    color: #101010
}

.price_left {
    display: flex;
    gap: 16px
}

.price_radio_indicator {
    width: 24px;
    height: 24px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center
}

.price_radio_indicator span {
    display: flex;
    position: absolute
}

.price_radio_indicator span:nth-child(1) {
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 9999px
}

.price_radio_indicator span:nth-child(2) {
    width: 12px;
    height: 12px;
    background: #101010;
    border-radius: 9999px;
    opacity: 0;
    scale: 0;
    transition: .4s ease
}

.price_subscription_time {
    font-weight: 600;
    transition: .4s ease
}

.price_cost {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    transition: .4s ease
}

.previous_price {
    font-size: 16px;
    color: #216196;
    position: relative
}

.previous_price:before {
    content: "";
    position: absolute;
    left: -5%;
    height: 1px;
    width: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: #216196
}