

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    font-family: "Roboto";
    text-decoration: none;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

:root {
    /* fonts */
    --font-size-default: 18px;
    --font-size-small: 16px;
    --font-size-xsmall: 14px;
    --font-size-h1: 60px;
    --font-size-h2: 34px;
    --font-size-h3: 28px;
    --font-size-h4: 24px;
    --font-size-h5: 22px;

    /* Border Radius */
    --border-radius-large: 12px;
    --border-radius-default: 8px;

    /* font weight */
    --fontweight-light: 300;
    --fontweight-regular: 500;
    --fontweight-semibold: 600;
    --fontweight-bold: 700;
    --fontweight-black: 900;
    --border-default: 1.8px;
    --border-type: solid;
    --section-space: 43px;
}

h1 {
    font-size: var(--font-size-h1);
    line-height: 1.2;
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

h5 {
    font-size: var(--font-size-h5);
}

p {
    font-size: var(--font-size-default);
    line-height: 30px;
}

:root {
    --sec-p: 16px;
    --grid-cols-3-1: 1;
}

@media screen and (min-width: 678px) {
    :root {
        --sec-p: 16px;
        --grid-cols-3-1: 3;
    }
}

.bg-secondary {
    background: #f7f7fc;
}

.py-0 {
    padding-top: unset !important;
    padding-bottom: unset !important;
}

#pricing-page {
    text-align: center;

    section {
        width: 100%;
    }

    .container-fluid {
        max-width: 1280px;
        width: 100%;
        margin: 0 auto;
        padding: 32px var(--sec-p);
        display: grid;
        justify-items: center;
    }

    .flex {
        display: flex;
    }

    .grid {
        display: grid;
    }

    h1 {
        font-size: 40px;
        font-weight: 700;
        line-height: 42px;
        padding-top: 40px;
        margin-bottom: 10px;
    }

    p.h1_p {
        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
    }

    .pricing-section>div {
        padding: 32px var(--sec-p);
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }

    .pricing-section .item.invert-item {
        background: #232f44;
        color: #fff;

        .pre-btn {
            background: #007aff;
            border-color: transparent;
        }

        .pre-btn:hover {
            background: #0057ef;
        }
    }

    .pricing-section .item.invert-item * {
        color: #fff;
    }

    .pricing-section .item {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
        max-width: 343px;
        padding: 32px;
        border-radius: 16px;
        background: #ffffff;
        opacity: 0px;

        li {
            position: relative;
            list-style-type: none;
            display: flex;
            align-items: center;
        }

        li::before {
            content: url(../images/check.svg);
            position: absolute;
            left: -24px;
        }

        h2 {
            font-size: 24px;
            font-weight: 500;
            line-height: 32px;
        }

        p.h2_p {
            font-size: 14px;
            font-weight: 400;
            line-height: 20px;
            margin-top: 4px;
            text-align: start;
            height: 100%;
            min-height: 40px !important;
            color: #444c61;
        }

        .price {
            font-size: 40px;
            font-weight: 700;
            line-height: 50px;
            display: flex;
            justify-content: center;

            sup {
                font-size: 16px;
                font-weight: 700;
                line-height: 30px;
            }

            sub {
                font-size: 16px;
                font-weight: 400;
                line-height: 30px;
                margin-top: auto;
            }
        }

        .pre-btn {
            width: 100%;
            padding: 8px 24px 8px 24px;
            gap: 8px;
            border-radius: 8px;
            opacity: 0px;
            border: 1px solid #e2e2e2;
            color: #272d3c;
            background: #fff;
            font-family: Roboto;
            font-size: 16px;
            font-weight: 500;
            line-height: 24px;
            margin-top: 24px;
            cursor: pointer;
        }

        .pre-btn:hover {
            background: #fbfbfd;
        }

        ul {
            display: grid;
            gap: 10px;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            margin-top: 24px;
            text-align: left;
            margin-left: 24px;
        }
    }

    .creditCard-section {
        margin-bottom: 64px;

        p {
            font-size: 14px;
            font-weight: 400;
            line-height: 18px;
        }

        .payimgs {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin: 14px auto;
        }
    }


    /* Switch Plans Code Start */


    .switch {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        user-select: none;
    }

    /* Hide default checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
        position: absolute;
    }

    /* Track */
    .slider {
        position: relative;
        width: 40px;
        height: 22px;
        background-color: #ccc;
        border-radius: 999px;
        transition: background-color 0.3s;
    }

    .slider::before {
        content: "";
        position: absolute;
        height: 18px;
        width: 18px;
        left: 2px;
        top: 2px;
        background-color: #fff;
        border-radius: 50%;
        transition: transform 0.3s;
    }

    .switch input:checked+.slider {
        background-color: #007AFF;
    }

    .switch input:checked+.slider::before {
        transform: translateX(18px);
    }

    .switch-label {
        color: #272d3c;
        line-height: 20px;
        font-size: 14px;
        font-weight: 500;
    }

    .switch-label .switch-label {
        color: black;
    }

    .switch-label span {
        background: #007AFF;
        color: #fff;
        padding: 2px 6px;
        font-weight: 400;
        font-size: 10px;
        line-height: 14px;
        border-radius: 99px;
        min-height: 18px !important;
        min-width: 64px;
        margin-left: 5px;
    }


    .pricing-toggle {
        padding-top: 50px
    }

    .feature-table-head .feature-table-head-row {
        min-height: 150px !important;
        height: 150px !important;
        max-height: fit-content !important;
    }

    .item .item-inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        min-height: 109px;
        max-height: fit-content;
        margin: 0px;
        padding: 0px;
    }

    /* Switch Plans Code End */



    #feature {
        h2 {
            font-size: 28px;
            font-weight: 700;
            line-height: 42px;
            margin-bottom: 10px;
        }

        p.h2_p {
            font-size: 18px;
            font-weight: 400;
            line-height: 30px;
        }

        .feature-items {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            text-align: left;

            .item_card {
                max-width: 343px;
                border-radius: 6px;
                background: #fbfbfe;
            }

            h3 {
                font-size: 20px;
                font-weight: 700;
                line-height: 24px;
                padding: 32px 32px 0;
            }

            p {
                font-size: 16px;
                font-weight: 400;
                line-height: 24px;
                padding: 12px 32px 0;
            }

            img {
                width: 100%;
                margin-top: 24px;
            }
        }
    }

    #faq {
        padding-top: 32px;
        padding-bottom: 32px;

        h2 {
            font-size: 32px;
            font-weight: 700;
            line-height: 40px;
        }

        .accordion {
            display: flex;
            flex-direction: column;
            gap: 24px;
            width: 100%;
            text-align: left;
        }

        .accordion__item.active {
            box-shadow: -8px 8px 0px 0px #f4f4f5;
        }

        .accordion__item {
            border: 1px solid #e2e2e2;
            border-radius: 16px;
            overflow: hidden;
            max-width: 768px;
            margin: auto;
            padding: 24px;
            display: grid;
        }

        .accordion__header {
            cursor: pointer;
            position: relative;
            font-size: 20px;
            font-weight: 600;
            line-height: 30px;
            padding-bottom: 0px;
            transition: 0.5s;
            color: #272d3c;
        }

        .accordion__header::after {
            content: "";
            background: url(../images/angle-down.svg) no-repeat center;
            width: 20px;
            height: 20px;
            transition: 0.4s;
            display: inline-block;
            position: absolute;
            right: 20px;
            top: 5px;
            z-index: 1;
            transform: rotateX(180deg);
        }

        .accordion__header.active {
            padding-bottom: 16px;
        }

        .accordion__header.active::after {
            transform: rotateX(0deg);
        }

        .accordion__item .accordion__content {
            max-height: 0;
            transition: 0.5s;
            overflow: hidden;
            font-size: 18px;
            font-weight: 400;
            line-height: 30px;
        }
    }
}

.text-start {
    text-align: start !important;
}

.feature-table-head {
    background-color: #f7f7fc;
    border-radius: 16px 16px 0px 0px;
    /* background-color: red */
    /* background-color: #E2E2E2; */
}

.feature-table-head th {
    height: fit-content;
    padding: 20px 24px;
    border: 1px solid #e2e2e2;
}

.feature-table-head-element-1 {
    width: 40%;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
}

.feature-table {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 25px;
}

.package-pricing {
    font-weight: 600;
    color: #272d3c !important;
    font-size: 36px;
    line-height: 0px;
    padding: 0px;
    min-height: 40px !important;
    max-height: fit-content !important;
}

.package-pricing sup {
    line-height: 24px;
    color: #272d3c !important;
    font-weight: 700;
    font-size: 14px;
}

.package-pricing span {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

.price-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #272d3c;
}

.package-pricing-btn {
    background-color: #007aff;
    padding: 8px 16px;
    width: fit-content;
    height: 36px;
    white-space: nowrap;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    border-radius: 4px;
    border: none;
    color: #fff;
    cursor: pointer;
}

.feature-table table tbody tr td {
    border: 1px solid #e2e2e2;
    margin: 0px;
    padding: 16px 24px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #444c61;
}

.table-adjust-padding {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    color: #272d3c;
}

.feature-table table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #e2e2e2;
    border-radius: 16px !important;
}

.pricing-table-wrapper {
    border-radius: 16px;
    overflow: hidden;
    /* border: 1px solid #e2e2e2; */
    display: inline-block;
    margin: 0px;
    padding: 0px;
    max-width: 1224px;
    width: 95%;
    margin-bottom: 50px;
}

.price-table-mobile-wrapper {
    display: none;
}

@media (max-width: 767px) {
    .pricing-table-wrapper {
        display: none !important;
    }

    .price-table-mobile-wrapper {
        display: block;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px;
    }

    .feature-table table tbody tr td {
        border: 1px solid #E2E2E2;
        margin: 0px;
        padding: 16px 24px;
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        color: #444C61;

    }


    .price-table-mobile-header {
        background-color: #f7f7fc;
        height: 104px;
        width: 100%;
        padding: 16px 16px 0px 16px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    .price-table-mobile-btns {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }

    .price-table-btn {
        /* width: 33%; */
        padding: 0px 16px 8px 16px;
        background-color: transparent;
        border: none;
        outline: none;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    .price-table-mobile-according-header {
        font-weight: 600;
        font-size: 18px;
        line-height: 28px;
        color: #272d3c;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
        border-top: 1px solid #e2e2e2;
    }

    /* .feature-table-head-mobile{
        border-bottom: 1px solid #e2e2e2;

    } */

    .price-table-mobile-according-body span {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin: 0px;
        padding: 16px;
        border-top: 1px solid #e2e2e2;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #444c61;
    }

    #table_arrow {
        transition: transform 0.3s ease;
    }

    .feature-table-head-mobile {
        padding: 20px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hidden {
        display: none !important;
    }

    .tabs-active {
        color: #007aff !important;
        border-bottom: 2px solid #007aff !important;
    }
}

.custom-line-add {
    font-family: Roboto;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    /* color: #ffffff; */
    padding: 0px;
}

.text-black {
    color: #000000;
}

.text-white {
    color: #ffffff;
}

.feature-table table tbody tr .weight-500 {
    font-weight: 500 !important;
}

.price-table-mobile {
    border: 1px solid #E2E2E2;
    border-radius: 16px;
    overflow: hidden;
    width: 90%;
}

.feature-table-head-element-mobile {
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 32px;
}

.text-linear {
    background: linear-gradient(90deg, #F56341 0%, #F37D2E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-right: 5px;
    font-weight: 500;
    font-size: 16px;
}

.relative {
    position: relative !important;
}

.absolute-discount-badge {
    position: absolute;
    background-color: #00B698;
    color: #fff;
    rotate: 45deg;
    top: 25px;
    right: -25px;
    padding: 2px 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    height: 24px;
    min-width: 120px;
    max-width: fit-content;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    box-shadow: 0px 0.5px 2px rgba(0, 0, 0, 0.32);
}

.item {
    overflow: hidden;
}

.unlimited-badge {
    font-weight: 800;
    font-style: Italic;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(90deg, #F56341 20%, #F37D2E 70%);
    border-radius: 99px;
    /* min-height: 24px; */
    max-height: fit-content;
    min-width: 73px;
    max-width: fit-content;
    color: #fff;
    padding: 0px 6px;
    text-align: center;
    margin-left: 6px;

}

.old-price {
    font-size: 16px;
    font-weight: 700;
    color: #B4B6BC !important;
    text-decoration: line-through;
    /* margin-top: 24px; */
    min-height: 25px;
    height: 25px;
}
.yearly-only{
    visibility: hidden;
}
.invert-item>.pre-btn{
    color: #fff !important;
}
.invert-item>.h2_p{
    color: #fff !important;
}