.pricing-block{
    padding: 100px 0 ;
    @media all and (max-width: 767px) {
        padding: 56px 0;
    }
    .container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 1049px;
    }
    .price-heading{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        margin-bottom: 16px;
        .price-head{
            color: #4262FF;
            display: block;
        }
    }
    p{
        font-size: 24px;
        font-weight: 400;
        color: #191D23;
        margin-bottom: 32px;
        text-align: center;
    }
    .price-cost-wrp{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        .price-fig-wrp{
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
            @media all and (max-width: 767px) {
                gap: 6px;
            }
            .old-prc{
                font-size: 28px;
                font-weight: 600;
                font-family: "Roboto Flex", sans-serif;
                text-decoration: line-through;
                color: rgb(66, 98, 255 , 0.2);
                @media all and (min-width: 768px) {
                    font-size: 42px;
                }
                @media all and (min-width: 992px) {
                    font-size: 54px;
                }
            }
            .new-prc{
                font-size: 28px;
                font-weight: 600;
                font-family: "Roboto Flex", sans-serif;
                color: #4262FF;
                @media all and (min-width: 768px) {
                    font-size: 42px;
                }
                @media all and (min-width: 992px) {
                    font-size: 54px;
                }
            }
            .fig-month{
                margin-left: 12px;
                font-size: 18px;
                font-weight: 300;
                font-family: "Roboto Flex", sans-serif;
                color: #4262FF;
                @media all and (max-width: 767px) {
                    font-size: 16px;
                    margin-left: 4px;
                }
            }
        }
        .price-fig-offer{
                font-size: 16px;
                font-weight: 400;
                font-family: "Roboto Flex", sans-serif;
                color: #4262FF;
                margin-bottom: 32px;
                @media all and (max-width: 767px) {
                    font-size: 14px;
                }
        }
    }
    .price-whole-wrp{
        display: flex;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        @media all and (max-width: 767px) {
            flex-direction: column;
        }
        .prc-list-one{
            width: 48%;
            @media all and (max-width: 767px) {
                width: 100%;
                /* margin-bottom: 24px; */
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
        }
        .prc-list-two{
            width: 44%;
            @media all and (max-width: 767px) {
                width: 100%;
                /* margin-bottom: 24px; */
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
        }
        .price-list-wrp{
            width: 100%;
            margin-bottom: 32px;
             
            .price-list-head{
                display: flex;
                align-items: center;
                gap: 16px;
                margin-bottom: 14px;
                .ai-icon{
                    background: url("../images/ai-icon.svg") no-repeat center;
                    display: inline-block;
                    width: 32px;
                    height: 32px;
                }
                .smart-icon{
                    background: url("../images/frame-icon.svg") no-repeat center;
                    display: inline-block;
                    width: 32px;
                    height: 32px;
                }
                .notes-icon{
                    background: url("../images/notes-icon.svg") no-repeat center;
                    display: inline-block;
                    width: 32px;
                    height: 32px;
                }
                .personal-icon{
                    background: url("../images/personal-icon.svg") no-repeat center;
                    display: inline-block;
                    width: 32px;
                    height: 32px;
                }
                .focus-icon{
                    background: url("../images/focus-icon.svg") no-repeat center;
                    display: inline-block;
                    width: 32px;
                    height: 32px;
                }
                h2{
                    font-size: 24px;
                    font-weight: 500;
                    @media all and (max-width: 991px) {
                        font-size: 18px;
                    }
                }
            }
            .pricing-listing-wrp{
                .price-inner-list{
                    display: flex;
                    align-items: center;
                    gap: 16px;
                    font-size: 16px;
                    font-weight: 500;
                    font-family: "Roboto Flex", sans-serif;
                    margin-bottom: 8px;
                    @media all and (max-width: 991px) {
                        font-size: 12px;
                        gap: 4px;
                    }
                    .list-tick-icon{
                        background: url("../images/tick-icon.svg") no-repeat center;
                        display: inline-block;
                        width: 32px;
                        height: 32px;
                        @media all and (max-width: 991px) {
                        width: 24px;
                        height: 24px;
                        background-size: cover;
                    }
                    }
                }
            }
        }
    }
    .price-btn-strt{
        font-size: 18px;
                    font-weight: 500;
                    font-family: "Roboto Flex", sans-serif;
                    margin-bottom: 8px;
                    padding: 16px 88px;
                    background: #4262FF;
                    color: #fff;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    border-radius: 32px;
                    transition: all 0.3s linear;
                    @media (min-width: 768px) and (max-width: 991px) {
                        font-size: 16px;
                        padding: 14px 68px;
                    }
                    @media all and (max-width: 767px) {
                        font-size: 14px;
                        padding: 12px 48px;
                    }

                    .price-arrow{
                        background: url("../images/arrow-right-icon.svg") no-repeat center;
                        display: inline-block;
                        width: 24px;
                        height: 20px;
                    }
                    &:hover{
                        box-shadow: 0 0 20px #071f797a;
                    }
    }
}