    /*-----------------------------------------------------------------------------------

[Table of contents]

1. Font
2. Css Variable for colors
3. Common CSS
4. Preloader CSS
5. Header - Main Navigation ( section )
6. Hero Slider ( section )
7. Trusted Logo Slider ( section )
8. Features ( section )
9. About us ( section )
10. Modern UI ( section )
11. How it works ( section )
12. Testimonials ( section )
13. Pricing ( section )
14. Faq ( section )
15. Interface ( section )
16. Download app ( section )
17. Latest story ( section )
18. Newsletter ( section )
19. Footer ( section )
20. Animation CSS ( section )


-----------------------------------------------------------------------------------*/
    /* --------Font--------------- */
    /* poppins-500 - latin */
    /* -----------Css-variable------ */
    
     :root {
        --light-purple: #f9f9f9;
        /* --blue-002: #24d1dd; */
        --blue-002: #24c0cb;
        --bg-purple: #6A49F2;
        --dark-purple: #000000;
        --body-text-purple: #000000;
        --text-white: #ffffff;
        --bg-white: #ffffff;
        --slider-dots-color: #D4D2DD;
        --light-bg: #f9f9f9;
    }
    /* ------Common-Css------------- */
    
    html {
        scroll-behavior: smooth
    }
    
    body {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-size: 16px;
        line-height: 1.7;
        font-family: "FC Minimal";
        color: var(--body-text-purple);
        background-color: var(--light-purple);
    }
    
    .page_wrapper {
        width: 100%;
        overflow-x: hidden;
    }
    
    a {
        text-decoration: none;
        color: var(--body-text-purple);
    }
    
    a:hover {
        text-decoration: none;
        color: var(--body-text-purple);
    }
    
    ul,
    li {
        padding: 0;
        list-style-type: none;
        margin: 0;
    }
    
    button:focus,
    .btn.focus,
    .btn:focus {
        outline: none;
        box-shadow: none;
    }
    
    @media screen and (min-width:1200px) {
        .container {
            max-width: 1170px;
        }
    }
    
    .section_title {
        text-align: center;
    }
    /* section heading h2 */
    
    .section_title h2 {
        font-size: 40px;
        font-weight: 500;
        /* color: #3d3d3d; */
        color: #000000;
    }
    
    .section_title h2 span {
        color: var( --blue-002);
    }
    
    .row_am {
        padding: 50px 0;
    }
    /* purple button */
    
    .puprple_btn {
        background-color: var( --blue-002);
        color: var(--text-white);
        border-radius: 50px;
        padding: 10px 40px;
        position: relative;
        overflow: hidden;
        z-index: 1;
        font-weight: 500;
    }
    
    .puprple_btn::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0%;
        height: 100%;
        background-color: var(--bg-white);
        border-radius: 50px;
        transition: .6s all;
        z-index: -1;
    }
    
    .puprple_btn:hover::before {
        width: 100%;
    }
    
    .puprple_btn:hover {
        color: var( --blue-002);
    }
    
    .tex-blue {
        color: var(--blue-002);
    }
    
    .wh100 {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }
    /* white button */
    
    .white_btn {
        padding: 10px 45px;
        border: 1px solid var( --blue-002);
        color: var( --blue-002);
        border-radius: 50px;
        background-color: var(--bg-white);
        font-weight: 700;
        position: relative;
        z-index: 1;
        overflow: hidden;
        font-weight: 500;
    }
    
    .white_btn::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0%;
        height: 100%;
        background-color: var(--bg-purple);
        border-radius: 50px;
        transition: .6s all;
        z-index: -1;
    }
    
    .white_btn:hover::before {
        width: 110%;
    }
    
    .white_btn:hover {
        color: var(--text-white);
    }
    
    .highlited_block .white_btn:hover {
        border-color: var(--bg-white);
    }
    /* slider controls */
    
    .owl-carousel .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-top: 20px;
    }
    
    .owl-carousel .owl-dots button {
        display: block;
        width: 15px;
        height: 15px;
        background-color: var(--slider-dots-color);
        border-radius: 15px;
        margin: 0 5px;
    }
    
    .owl-carousel .owl-dots button.active {
        background-color: var( --blue-002);
    }
    /* -------------Preloader-Css-Start-------------- */
    /* Preloader */
    
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        z-index: 999999;
    }
    
    #loader {
        display: block;
        position: relative;
        left: 50%;
        top: 50%;
        width: 150px;
        height: 150px;
        margin: -75px 0 0 -75px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #24d1dd;
        -webkit-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;
    }
    
    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #24d1dd;
        -webkit-animation: spin 3s linear infinite;
        animation: spin 3s linear infinite;
    }
    
    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: var(--dark-purple);
        -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.5s linear infinite;
    }
    
    @-webkit-keyframes spin {
        0% {
            -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
        }
        100% {
            -webkit-transform: rotate(360deg);
            -ms-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }
    
    @keyframes spin {
        0% {
            -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
        }
        100% {
            -webkit-transform: rotate(360deg);
            -ms-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }
    /* -----------Header-Css-Start------------------- */
    /* header wraper */
    
    header {
        position: absolute;
        width: 100%;
        z-index: 99999;
        transition: .4s all;
        /* background-color: #fff; */
    }
    
    header.fix_style {
        position: fixed;
        top: 0;
        backdrop-filter: blur(5px);
        background-color: rgb(255 255 255 / 90%);
        padding: 10px 0;
        transition: none;
        opacity: 0;
        pointer-events: none;
    }
    
    header.fixed {
        pointer-events: all;
        opacity: 1;
        transition: .4s all;
    }
    
    header.fixed .navbar {
        padding: 0;
    }
    /* navigation bar */
    
    .navbar {
        padding-left: 0;
        padding-right: 0;
        padding-top: 15px;
    }
    
    .navbar-expand-lg .navbar-nav {
        align-items: center;
    }
    
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 5px 20px;
        font-weight: 500;
        color: var(--text-white);
    }
    
    .navbar-expand-lg .navbar-nav .nav-link:hover {
        color: var(--text-white);
    }
    /* .navbar-expand-lg .navbar-nav .nav-link.dark_btn {
    color: var( --blue-002);
    background-color: var(--bg-white);
    font-size: 16px;
    padding: 9px 40px;
    border-radius: 25px;
    margin-left: 20px;
    position: relative;
    border: 1px solid var(--bg-purple);
} */
    
    .navbar-expand-lg .navbar-nav .nav-link.dark_btn {
        color: var(--blue-002);
        background-color: var(--bg-white);
        font-size: 16px;
        padding: 7px 30px 9px;
        border-radius: 10px;
        margin-left: 20px;
        position: relative;
        border: 1px solid #24d1dd;
    }
    
    .navbar-expand-lg .navbar-nav .nav-link.dark_btn-main {
        color: var(--text-white);
        background-color: var(--blue-002);
        font-size: 16px;
        padding: 7px 30px 9px;
        border-radius: 10px;
        margin-left: 20px;
        position: relative;
        border: 1px solid var(--blue-002);
    }
    
    .navbar-expand-lg .navbar-nav .nav-link.dark_btn:hover {
        color: var(--text-white);
        background: rgba(2, 129, 131, 0.749);
        border: 1px solid rgba(2, 129, 131, 0.749);
    }
    
    .navbar-expand-lg .navbar-nav .nav-link.dark_btn-main:hover {
        color: var(--text-white);
        background: rgb(8 100 103);
        border: 1px solid rgb(8 100 103);
    }
    
    .navbar-expand-lg .navbar-nav .nav-link.dark_btn::before,
    .navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 42px;
        z-index: -1;
    }
    
    .navbar-expand-lg .navbar-nav .nav-link.dark_btn-main::before,
    .navbar-expand-lg .navbar-nav .nav-link.dark_btn-main::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 42px;
        z-index: -1;
    }
    
    .navbar-expand-lg .navbar-nav .nav-link.dark_btn::before {
        animation: pulse-blue-medium-sm 3.5s infinite
    }
    
    .navbar-expand-lg .navbar-nav .nav-link.dark_btn-main::before {
        animation: pulse-blue-medium-sm 3.5s infinite
    }
    
    .navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
        animation: pulse-blue-small-sm 3.5s infinite
    }
    
    .navbar-expand-lg .navbar-nav .nav-link.dark_btn-main::after {
        animation: pulse-blue-small-sm 3.5s infinite
    }
    
    .navbar-brand img {
        width: 120px;
    }
    /* navigation bar dropdown */
    
    .navbar-expand-lg .navbar-nav .has_dropdown {
        display: flex;
        align-items: center;
        position: relative;
        border-radius: 10px 10px 0 0;
        transition: .4s all;
    }
    
    .navbar-expand-lg .navbar-nav .has_dropdown:hover {
        background-color: var(--bg-white);
        box-shadow: 0px 4px 10px #c5c5c580;
    }
    
    .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
        position: relative;
        right: 15px;
        color: var(--text-white);
    }
    
    .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {
        position: absolute;
        top: 100%;
        background-color: var(--bg-white);
        border-radius: 0 10px 10px 10px;
        min-width: 210px;
        max-width: 230px;
        margin-top: -10px;
        transition: .4s all;
        opacity: 0;
        pointer-events: none;
        box-shadow: 0px 4px 10px #c5c5c580;
    }
    
    .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {
        margin-left: 0;
        padding: 10px 20px;
    }
    
    .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
        font-size: 15px;
        position: relative;
        transition: .4s all;
        line-height: 35px;
        font-weight: 500;
    }
    
    .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a::before {
        content: "";
        width: 10px;
        height: 10px;
        display: inline-block;
        border: 2px solid var( --blue-002);
        border-radius: 10px;
        margin-right: 5px;
        position: absolute;
        left: -10px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
        transition: .4s all;
    }
    
    .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover {
        padding-left: 15px;
        color: var( --blue-002);
    }
    
    .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover::before {
        opacity: 1;
        left: 0;
    }
    
    .navbar-expand-lg .navbar-nav .has_dropdown:hover>a,
    .navbar-expand-lg .navbar-nav .has_dropdown:hover>.drp_btn {
        color: var( --blue-002);
    }
    
    .navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {
        opacity: 1;
        pointer-events: all;
        margin-top: -1px;
    }
    /* navigation toggle menu */
    
    .toggle-wrap {
        padding: 10px;
        position: relative;
        cursor: pointer;
        /*disable selection*/
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    .toggle-bar,
    .toggle-bar::before,
    .toggle-bar::after,
    .toggle-wrap.active .toggle-bar,
    .toggle-wrap.active .toggle-bar::before,
    .toggle-wrap.active .toggle-bar::after {
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }
    
    .toggle-bar {
        width: 25px;
        margin: 10px 0;
        position: relative;
        border-top: 4px solid var(--bg-white);
        display: block;
    }
    
    .toggle-bar::before,
    .toggle-bar::after {
        content: "";
        display: block;
        background: var(--bg-white);
        height: 4px;
        width: 30px;
        position: absolute;
        top: -12px;
        right: 0px;
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -ms-transform-origin: 13%;
        -webkit-transform-origin: 13%;
        transform-origin: 13%;
    }
    
    .toggle-bar::after {
        top: 4px;
    }
    
    .toggle-wrap.active .toggle-bar {
        border-top: 6px solid transparent;
    }
    
    .toggle-wrap.active .toggle-bar::before {
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    
    .toggle-wrap.active .toggle-bar::after {
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    /* ---------Hero-banner-Css-Start------------------ */
    /* hero banner wraper */
    
    .banner_section {
        padding-top: 180px;
        position: relative;
        background: #6a49f2;
    }
    
    .banner_section .container {
        position: relative;
    }
    /* wave backgound after banner */
    
    .banner_section::after {
        /*content: "";
    display: block;
    background-image: url(../images/banner-shape.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 200px;
    background-position: center;
    margin-top: -50px;*/
    }
    
    .banner_section .row {
        align-items: center;
    }
    /* hero banner text */
    
    .banner_section .banner_text {
        margin-top: -50px;
    }
    /* hero banner heading h1 */
    
    .banner_section .banner_text h1 {
        font-size: 55px;
        color: var(--text-white);
        letter-spacing: -1.5px;
        font-weight: 700;
    }
    
    .banner_section .banner_text h1 span {
        color: var(--text-white);
    }
    
    .banner_section .banner_text p {
        color: var(--text-white);
    }
    /* hero banner button */
    
    .banner_section .app_btn {
        display: flex;
        align-items: center;
        margin: 30px 0;
    }
    /* hero banner list */
    
    .banner_section .app_btn li a {
        display: block;
        padding: 12px 30px;
        background-color: var(--bg-white);
        border: 2px solid var( --blue-002);
        position: relative;
        border-radius: 12px;
        transition: .4s all;
    }
    
    .banner_section .app_btn li:last-child {
        margin-left: 25px;
    }
    
    .banner_section .app_btn li a img {
        transition: .4s all;
    }
    
    .banner_section .app_btn li a .white_img {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
    }
    
    .banner_section .app_btn li a:hover {
        background-color: var( --blue-002);
        border: 2px solid var(--bg-white);
    }
    
    .banner_section .app_btn li a:hover .blue_img {
        opacity: 0;
    }
    
    .banner_section .app_btn li a:hover .white_img {
        opacity: 1;
    }
    /* hero banner users */
    
    .banner_section .used_app {
        display: flex;
        align-items: center;
        margin-top: 35px;
    }
    
    .banner_section .used_app ul {
        display: flex;
        align-items: center;
        margin-right: 10px;
    }
    
    .banner_section .used_app ul li:not(:first-child) {
        margin-left: -15px;
    }
    
    .banner_section .used_app p {
        font-size: 15px;
        line-height: 19px;
        margin-bottom: 0;
        color: var(--text-white);
    }
    /* hero banner images */
    
    .banner_section .banner_image {
        display: flex;
        position: relative;
        width: 100%;
    }
    
    .banner_section .banner_image img {
        max-width: 100%;
    }
    
    .owl-carousel .owl-item img {
        max-width: 100%;
        width: auto;
    }
    /* hero banner shape animation */
    
    .banner_section .banner_shape1,
    .banner_shape2,
    .banner_shape3 {
        position: absolute;
    }
    
    .banner_section .banner_shape1 {
        top: 200px;
        left: -15%;
        animation: mymove 10s infinite;
    }
    
    .banner_section .banner_shape2 {
        top: 100px;
        right: -10%;
        animation: mymove 5s infinite;
    }
    
    .banner_section .banner_shape3 {
        top: 400px;
        right: -20%;
        animation: mymove 3s infinite;
    }
    
    @keyframes mymove {
        50% {
            transform: rotate(180deg);
        }
    }
    /* features section wraper */
    
    .features_section .feature_detail {
        background-color: var(--bg-white);
        border-radius: 30px;
        position: relative;
        display: flex;
        justify-content: space-between;
        margin-top: 120px;
        padding-top: 60px;
        padding-bottom: 20px;
        box-shadow: 0px 4px 30px #EDE9FE;
    }
    /* features section image */
    
    .features_section .feature_detail .feature_img {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -75px;
    }
    
    .features_section .feature_detail .feature_img img {
        max-width: 100%;
    }
    /* features section box */
    
    .features_section .feature_detail .feature_box {
        max-width: 410px;
    }
    
    .features_section .feature_detail .feature_box .data_block {
        margin-bottom: 50px;
    }
    
    .features_section .feature_detail .feature_box .data_block h4 {
        font-size: 20px;
        color: var(--dark-purple);
        font-weight: 600;
    }
    
    .features_section .feature_detail .left_data {
        text-align: right;
        padding-left: 130px;
    }
    
    .features_section .feature_detail .right_data {
        padding-right: 130px;
    }
    
    .features_section .feature_detail .left_data .data_block .icon {
        margin-right: -15px;
    }
    
    .features_section .feature_detail .right_data .data_block .icon {
        margin-left: -15px;
    }
    
    .features_section .container {
        max-width: 1370px;
    }
    /* -------------How_It_Works-Section-Css-Start------------------ */
    /* how it works video model   */
    
    .modal {
        z-index: 999999;
    }
    
    .modal-backdrop.show {
        z-index: 99999;
        opacity: .7;
    }
    
    .youtube-video .modal-dialog {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 100%;
        padding: 0 15px;
        height: 100%;
        max-width: 1240px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    #video-container {
        position: relative;
        padding-bottom: 50%;
        padding-top: 30px;
        height: 0;
        overflow: hidden;
    }
    
    iframe#youtubevideo {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
    
    .youtube-video .modal-footer {
        border: none;
        text-align: center;
        display: block;
        padding: 0;
    }
    
    .youtube-video .modal-content {
        background: none !important;
        border: none;
    }
    
    #close-video {
        color: #fff;
        font-size: 30px;
    }
    /* video banner shape animation */
    
    .thumbnil .banner_shape1,
    .banner_shape2,
    .banner_shape3 {
        position: absolute;
    }
    
    .thumbnil .banner_shape1 {
        top: 100px;
        left: 10%;
        animation: mymove 10s infinite;
    }
    
    .thumbnil .banner_shape2 {
        bottom: 50px;
        left: 20%;
        animation: mymove 5s infinite;
    }
    
    .thumbnil .banner_shape3 {
        top: 40px;
        right: 8%;
        animation: mymove 3s infinite;
    }
    
    @keyframes mymove {
        50% {
            transform: rotate(180deg);
        }
    }
    /* ------------Testimonial-Slider-Css-Start------------- */
    /* testimonials wraper  */
    
    #testimonial_slider {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .testimonial_section .testimonial_block {
        background-image: url(../images/testimonial_bg.png);
        background-size: cover;
        background-position: center;
        position: relative;
        margin-top: 65px;
    }
    
    .testimonial_section .testimonial_block .testimonial_slide_box {
        text-align: center;
        width: 430px;
        padding: 10px;
        margin: 0 auto;
    }
    /* testimonials rating  */
    
    .testimonial_section .testimonial_block .rating span {
        color: #FC9400;
        font-size: 18px;
    }
    
    .testimonial_section .testimonial_block .testimonial_slide_box .review {
        margin-top: 10px;
        margin-bottom: 30px;
    }
    /* testimonials image  */
    
    .testimonial_section .testimonial_block .testimonial_slide_box .testimonial_img img {
        margin: 0 auto;
    }
    /* testimonials heading h3 */
    
    .testimonial_section .testimonial_block .testimonial_slide_box h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 0;
        margin-top: 10px;
    }
    
    .testimonial_section .testimonial_block .testimonial_slide_box .designation {
        font-size: 15px;
    }
    /* testimonials total review */
    
    .testimonial_section .total_review {
        text-align: center;
        margin-top: 60px;
    }
    
    .testimonial_section .total_review .rating {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* testimonials paragraph */
    
    .testimonial_section .total_review .rating p {
        margin-bottom: 0;
        font-weight: 600;
        margin-left: 5px;
        color: var(--dark-purple);
    }
    /* testimonials heading */
    
    .testimonial_section .total_review h3 {
        font-size: 50px;
        font-weight: 600;
        margin-bottom: 0;
        color: var(--dark-purple);
    }
    
    .testimonial_section .total_review a {
        color: var( --blue-002);
        font-weight: 700;
    }
    
    .testimonial_section .testimonial_block .avtar_faces {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
        width: 100%;
    }
    
    .testimonial_section .testimonial_block .avtar_faces img {
        max-width: 100%;
    }
    /* -------------------Pricing-Section---------------------- */
    /* pricing wraper  */
    
    .pricing_section .toggle_block {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* pricing toggle button */
    
    .pricing_section .toggle_block span {
        color: var(--dark-purple);
        font-weight: 600;
        display: block;
        margin: 0 5px;
    }
    
    .tog_btn.month_active {
        left: 35px !important;
    }
    
    .pricing_section .toggle_block span.deactive {
        color: var(--body-text-purple);
    }
    
    .pricing_section .toggle_block .offer {
        background-color: var(--bg-white);
        border-radius: 5px;
        padding: 2px 10px;
        font-weight: 400;
        font-size: 13px;
        color: var( --blue-002);
    }
    
    .pricing_section .toggle_block .tog_block {
        width: 70px;
        height: 35px;
        background-color: var(--bg-white);
        border-radius: 18px;
        margin: 0 10px;
        position: relative;
        cursor: pointer;
    }
    
    .pricing_section .toggle_block .tog_block .tog_btn {
        height: 23px;
        width: 23px;
        border-radius: 25px;
        display: block;
        background-color: var( --blue-002);
        position: absolute;
        left: 3px;
        top: 50%;
        transform: translateY(-50%);
        transition: .4s all;
    }
    
    .pricing_section .toggle_block .month.active,
    .pricing_section .toggle_block .years.active {
        color: var( --blue-002);
    }
    /* pricing pannel */
    
    .pricing_section .pricing_pannel {
        margin-top: 50px;
        display: none;
    }
    
    .pricing_section .pricing_pannel.active {
        display: block;
    }
    
    .pricing_section .pricing_pannel .pricing_block {
        text-align: center;
        background-color: var(--bg-white);
        min-height: 700px;
        border-radius: 12px;
        padding-top: 60px;
        margin-bottom: 40px;
        box-shadow: 0px 4px 30px #EDE9FE;
    }
    
    .pricing_section .pricing_pannel .pricing_block.highlited_block {
        background-color: var( --blue-002);
    }
    
    .pricing_section .pricing_pannel .pricing_block.highlited_block p,
    .pricing_section .pricing_pannel .pricing_block.highlited_block h3,
    .pricing_section .pricing_pannel .pricing_block.highlited_block span,
    .pricing_section .pricing_pannel .pricing_block.highlited_block .pkg_name span {
        color: var(--text-white);
    }
    
    .pricing_section .pricing_pannel .pricing_block .icon {
        margin-bottom: 35px;
    }
    /* pricing box image */
    
    .pricing_section .pricing_pannel .pricing_block .icon img {
        width: 120px;
    }
    /* pricing box heading h3 */
    
    .pricing_section .pricing_pannel .pricing_block .pkg_name h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 0;
    }
    
    .pricing_section .pricing_pannel .pricing_block .pkg_name span {
        color: var(--body-text-purple);
        font-size: 15px;
    }
    
    .pricing_section .pricing_pannel .pricing_block .price {
        font-size: 48px;
        color: var( --blue-002);
        margin: 25px 0;
        display: block;
        font-weight: 600;
    }
    /* pricing box list */
    
    .pricing_section .pricing_pannel .pricing_block .benifits {
        margin-bottom: 40px;
    }
    
    .pricing_section .pricing_pannel .pricing_block .benifits li p {
        margin-bottom: 5px;
    }
    
    .pricing_section .contact_text {
        text-align: center;
        margin-bottom: 0;
    }
    
    .pricing_section .contact_text a {
        color: var( --blue-002);
        text-decoration: underline;
    }
    /* -------------FAQ-Section-Css-Start----------------- */
    /* faq wraper */
    
    .faq_section .faq_panel {
        margin-top: 40px;
    }
    /* faq box */
    
    .faq_section .faq_panel .card {
        border: none;
        margin-bottom: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 10px #EDE9FE;
        padding: 16px 0;
    }
    
    .faq_section .faq_panel .card:last-child {
        margin-bottom: 0;
    }
    
    .faq_section .faq_panel .card-header {
        background-color: transparent;
        border: none;
        padding-bottom: 0;
        padding-top: 0;
    }
    
    .faq_section .faq_panel .card-header .btn {
        padding: 0;
        color: var(--dark-purple);
        font-weight: 600;
        font-size: 20px;
    }
    
    .faq_section .faq_panel .card-header .btn.active {
        color: var( --blue-002);
    }
    
    .faq_panel .accordion button,
    .faq_panel .accordion button:hover,
    .faq_panel .accordion button:focus {
        text-decoration: none;
    }
    
    .faq_section .faq_panel .card-header .icon_faq {
        position: absolute;
        right: 20px;
        color: #839BC0;
    }
    /* faq heading h2 */
    
    .faq_section .faq_panel .card-header h2 {
        line-height: 1;
    }
    /* faq paragraph */
    
    .faq_section .faq_panel .card-body {
        padding-bottom: 0;
    }
    /* -----------Interface_Section-Css-Start----------------- */
    /* interface wraper */
    
    .interface_section .screen_slider {
        margin-top: 35px;
        min-height: 720px;
    }
    /* interface images */
    
    .interface_section .owl-item .screen_frame_img img {
        transform: scale(.9);
        border: 2px solid #000;
        border-radius: 20px;
        transition: 1s all;
        margin: 0 auto;
    }
    
    .interface_section .owl-item.center .screen_frame_img img {
        transform: scale(1);
        border: 3px solid #000;
    }
    /* -----------Download_App_Section-Start------------------ */
    /* download app wraper */
    
    .free_app_section {
        padding-top: 70px;
        position: relative;
    }
    
    .free_app_section .container {
        max-width: 1370px;
    }
    
    .free_app_section .container .free_app_inner {
        background-color: var(--bg-purple);
        border-radius: 30px;
        padding: 20px 100px;
        padding-bottom: 50px;
        position: relative;
        z-index: 999999;
    }
    /* download app dark background */
    
    .free_app_section .container .free_app_inner .dark_bg {
        overflow: hidden;
    }
    
    .free_app_section .container .free_app_inner .dark_bg span {
        z-index: 9999;
    }
    
    .free_app_section .container .free_app_inner .row {
        align-items: center;
    }
    
    .free_app_section .container .free_app_inner .free_text .section_title {
        text-align: left;
    }
    /* download app heading h2 */
    
    .free_app_section .container .free_app_inner .free_text .section_title h2 {
        margin-bottom: 20px;
    }
    
    .free_app_section .container .free_app_inner .free_text .section_title h2,
    .free_app_section .container .free_app_inner .free_text .section_title p {
        color: var(--text-white);
    }
    
    .free_app_section .container .free_app_inner .free_text .app_btn {
        display: flex;
        align-items: center;
    }
    
    .free_app_section .container .free_app_inner .free_text .app_btn li a {
        display: block;
        padding: 12px 30px;
        background-color: var(--bg-white);
        border: 2px solid var( --blue-002);
        position: relative;
        border-radius: 12px;
        transition: .4s all;
    }
    
    .free_app_section .container .free_app_inner .free_text .app_btn li a:hover {
        -webkit-box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
        box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
    }
    
    .free_app_section .container .free_app_inner .free_text .app_btn li:last-child {
        margin-left: 25px;
    }
    
    .free_app_section .container .free_app_inner .free_img {
        display: flex;
        align-items: center;
        margin-top: -120px;
    }
    
    .free_app_section .container .free_app_inner .free_img img:last-child {
        margin-left: -65px;
    }
    
    .purple_backdrop {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        background-color: rgba(50, 35, 111, 0.95);
        width: 100%;
        height: 100%;
        z-index: 99999;
        opacity: 0;
        transition: .4s all;
        pointer-events: none;
    }
    /* ---------------Latest_Story-Css-Start------------- */
    /* latest story wraper */
    
    .latest_story {
        margin-bottom: 80px;
    }
    /* latest story box */
    
    .latest_story .story_box {
        background-color: var(--bg-white);
        text-align: center;
        border-radius: 10px;
        box-shadow: 0px 4px 30px #EDE9FE;
    }
    /* latest story image */
    
    .latest_story .story_box .story_img {
        position: relative;
    }
    
    .latest_story .story_box .story_img img {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .latest_story .story_box .story_img span {
        position: absolute;
        left: 15px;
        top: 15px;
        font-size: 14px;
        color: var(--text-white);
    }
    /* latest story pargraph */
    
    .latest_story .story_box .story_text {
        padding: 20px 30px;
    }
    /* latest story heading h3 */
    
    .latest_story .story_box .story_text h3 {
        color: var(--dark-purple);
        font-size: 20px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    /* latest story link text */
    
    .latest_story .story_box .story_text a {
        color: var( --blue-002);
        margin-top: 25px;
        display: block;
        font-size: 14px;
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .latest_story .story_box .story_text a:hover {
        text-decoration: underline;
    }
    /* -------------Newsletter-Section-Css-Start------------- */
    /* newsletter  wraper */
    
    .newsletter_box {
        background-color: var(--bg-purple);
        padding: 50px;
        border-radius: 12px;
        box-shadow: 0 4px 10px #0c0c0c21;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: -95px;
        position: relative;
        z-index: 99;
    }
    
    .newsletter_box .section_title {
        width: 45%;
    }
    
    .newsletter_box form {
        width: 60%;
    }
    /* newsletter heading h2 */
    
    .newsletter_box .section_title h2 {
        margin-bottom: 5px;
        letter-spacing: -1px;
    }
    
    .newsletter_box .section_title h2,
    .newsletter_box .section_title p {
        color: var(--text-white);
        text-align: left;
    }
    /* newsletter paragraph */
    
    .newsletter_box .section_title p {
        margin-bottom: 0;
    }
    /* newsletter input  */
    
    .newsletter_box form {
        display: flex;
    }
    
    .newsletter_box form .form-group {
        margin-bottom: 0;
    }
    
    .newsletter_box form .form-group .form-control {
        width: 430px;
        height: 55px;
        border-radius: 6px;
        color: var(--dark-purple);
    }
    
    .newsletter_box form .form-group .form-control::placeholder {
        color: var(--dark-purple);
    }
    /* newsletter button */
    
    .newsletter_box form .form-group .btn {
        height: 55px;
        width: 170px;
        text-transform: uppercase;
        color: var( --blue-002);
        background-color: var(--bg-white);
        border-radius: 6px;
        margin-left: 10px;
        font-weight: 600;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .newsletter_box form .form-group .btn::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0%;
        height: 100%;
        background-color: var(--bg-purple);
        border-radius: 0;
        transition: .6s all;
        z-index: -1;
    }
    
    .newsletter_box form .form-group .btn:hover::before {
        width: 100%;
    }
    
    .newsletter_box form .form-group .btn:hover {
        color: var(--text-white);
    }
    /* ------Footer-Css-Start-------------- */
    /* footer wraper */
    
    footer {
        position: relative;
    }
    
    footer .top_footer {
        background-color: #583BD3;
        padding: 180px 0 60px 0;
        position: relative;
        overflow: hidden;
    }
    
    footer .top_footer .container {
        position: relative;
    }
    /* footer logo */
    
    footer .top_footer .logo {
        margin-bottom: 40px;
    }
    
    footer .top_footer .logo img {
        width: 150px;
    }
    
    footer .top_footer .abt_side li {
        padding: 0 0 10px 0;
    }
    /* footer social media icon */
    
    footer .top_footer .social_media {
        display: flex;
        margin-top: 20px;
    }
    /* footer link list */
    
    footer .top_footer .social_media li a {
        display: block;
        width: 37px;
        height: 37px;
        text-align: center;
        line-height: 37px;
        font-size: 15px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50px;
        margin-right: 10px;
        transition: .4s all;
    }
    
    footer .top_footer .social_media li a:hover {
        background-color: var(--bg-white);
        color: var( --blue-002);
    }
    
    footer .top_footer .try_out {
        margin-left: -20px;
    }
    
    footer .app_btn li a {
        display: block;
        padding: 12px 10px;
        background-color: var(--bg-white);
        border: 2px solid var( --blue-002);
        position: relative;
        border-radius: 12px;
        transition: .4s all;
        width: 175px;
        text-align: center;
    }
    
    footer .app_btn li a:hover {
        -webkit-box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
        box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
    }
    
    footer .app_btn li:last-child {
        margin-top: 20px;
    }
    
    footer .bottom_footer {
        background-color: var(--bg-purple);
    }
    /* footer heading and text colors variable */
    
    footer h2,
    footer h3,
    footer p,
    footer a {
        color: var(--text-white);
    }
    
    footer a:hover {
        color: var(--text-white);
    }
    /* footer heading h3 */
    
    footer h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 50px;
        padding-top: 10px;
    }
    
    footer .links ul li a {
        display: block;
        margin-bottom: 10px;
    }
    /* footer last */
    
    footer .bottom_footer {
        padding: 20px 0;
    }
    
    footer .bottom_footer p {
        margin-bottom: 0;
        font-size: 15px;
    }
    
    footer .bottom_footer .developer_text {
        text-align: right;
    }
    
    footer .bottom_footer .developer_text a {
        text-decoration: underline;
    }
    /* footer shape animation */
    
    .top_footer .banner_shape1,
    .banner_shape2,
    .banner_shape3 {
        position: absolute;
    }
    
    .top_footer .banner_shape1 {
        top: 200px;
        left: -15%;
        animation: mymove 10s infinite;
    }
    
    .top_footer .banner_shape2 {
        top: 100px;
        right: -10%;
        animation: mymove 5s infinite;
    }
    
    .top_footer .banner_shape3 {
        top: 400px;
        right: -20%;
        animation: mymove 3s infinite;
    }
    
    @keyframes mymove {
        50% {
            transform: rotate(180deg);
        }
    }
    /* footer go top button */
    
    .go_top {
        position: fixed;
        right: 30px;
        bottom: 75px;
        cursor: pointer;
        transition: .4s all;
        opacity: 0;
    }
    
    .go_top:hover {
        bottom: 80px;
    }
    /* -----------Animation-Css-Start-------------- */
    /* animation line wraper */
    
    .anim_line {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .anim_line span {
        position: absolute;
        z-index: 99999;
        top: -275px;
        animation: star_down_one 6s infinite linear;
        opacity: 0;
    }
    
    .anim_line.dark_bg {
        max-width: 1170px;
    }
    
    .anim_line.dark_bg span {
        transform: rotate(180deg);
    }
    
    .anim_line span:first-child {
        left: -17%;
        animation-delay: 3s;
    }
    
    .anim_line span:nth-child(2) {
        left: 0%;
        animation-delay: 5s;
    }
    
    .anim_line span:nth-child(3) {
        left: 17%;
        animation-delay: 1s;
    }
    
    .anim_line span:nth-child(4) {
        left: 34%;
        animation-delay: 4s;
    }
    
    .anim_line span:nth-child(5) {
        left: 51%;
        animation-delay: 7s;
    }
    
    .anim_line span:nth-child(6) {
        left: 68%;
    }
    
    .anim_line span:nth-child(7) {
        left: 85%;
        animation-delay: 3s;
    }
    
    .anim_line span:nth-child(8) {
        left: 99%;
        animation-delay: 2s;
    }
    
    .anim_line span:nth-child(9) {
        left: 117%;
        animation-delay: 5s;
    }
    /* footer .top_footer .anim_line span:first-child {
    left: 5%;
}

footer .top_footer .anim_line span:nth-child(2) {
    left: 13%;
} */
    
    @keyframes star_down_one {
        0% {
            opacity: 0;
            top: -250px;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            top: 100%;
            opacity: 0;
        }
    }
    /* --------Object-Moving-Animation-Css-Start----- */
    
    .moving_animation {
        animation: moving_object 6s infinite linear;
    }
    
    .moving_position_animatin {
        position: relative;
        animation: moving_position_animatin 6s infinite linear;
        z-index: -1;
    }
    
    .about_app_section .about_img .screen_img img {
        animation-delay: 3s;
    }
    
    .modern_ui_section .ui_images .right_img img:nth-child(3) {
        animation-delay: 3s;
    }
    
    .modern_ui_section .ui_images .right_img img:nth-child(2) {
        animation-delay: 3s;
    }
    
    .modern_ui_section .ui_images .right_img img:nth-child(1) {
        animation-delay: 3s;
    }
    
    @keyframes moving_object {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-30px);
        }
        100% {
            transform: translateY(0);
        }
    }
    
    @keyframes moving_position_animatin {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-30px);
        }
        100% {
            transform: translateY(0);
        }
    }
    /*------Header Btn Animation------*/
    
    @keyframes pulse-blue-small-sm {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        }
        100%,
        30% {
            box-shadow: 0 0 0 12px transparent
        }
    }
    
    @keyframes pulse-blue-medium-sm {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        }
        100%,
        30% {
            box-shadow: 0 0 0 20px transparent
        }
    }
    /* Character Css Start */
    
    .character_section {
        padding: 50px 0;
        margin-top: -295px;
    }
    
    .character_section .character_box {
        padding: 40px 30px;
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 10px #EDE9FE;
        margin: 20px 0;
        box-shadow: 0px 4px 30px #a4aeafb5;
    }
    
    .character_section .character_box .rating ul {
        display: flex;
    }
    
    .character_section .character_box .rating ul li span {
        color: #FC9400;
        font-size: 18px;
    }
    
    .character_section .character_box h3 {
        font-size: 20px;
        color: var( --blue-002);
        margin: 10px 0;
    }
    
    .character_section .character_box .reviewer {
        display: flex;
        align-items: center;
        margin-top: 35px;
    }
    
    .character_section .character_box .reviewer .avtar {
        width: 80px;
    }
    
    .character_section .character_box .reviewer .text {
        margin-left: 20px;
        width: calc(100% - 100px);
    }
    
    .character_section .character_box .reviewer .text h3 {
        font-weight: 600;
        color: var(--dark-purple);
        margin-bottom: 0;
    }
    
    .character_box video {
        width: 100%;
        height: auto;
    }
    
    .character-box {
        position: relative;
        width: 100%;
        /* padding-bottom: 300px; */
        padding-bottom: 350px;
        overflow: hidden;
        background-color: #ffffff;
        height: auto;
        /* border-radius: 30px; */
        border-radius: 15px;
        box-shadow: 0px 4px 30px #a4aeafb5;
    }
    
    .character_section.character_section2 {
        padding: 50px 25%;
        margin-top: -295px;
    }
    
    .character-box2 {
        width: 100%;
        margin: auto;
        /* height: auto; */
        text-align: center;
        /* border-radius: 30px;
    box-shadow: 0px 4px 30px #a4aeafb5; */
    }
    
    .character-box video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .pd-lr-01 {
        padding: 0 10px!important;
    }
    /* character-box*/
    /* //////////////////banner-hero-05////////////////////// */
    
    .fw-bold {
        font-weight: 500;
    }
    
    .bg-light {
        background-color: #f8f9fa !important;
    }
    
    .bg-light {
        --bs-bg-opacity: 1;
        background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
    }
    
    .bg-primary {
        background-color: #1f61eb !important;
    }
    
    .bg-soft-primary {
        background-color: rgba(31, 97, 235, 0.15) !important;
    }
    
    .border-primary {
        border-color: #24d1dd !important;
    }
    
    .text-primary {
        color: #24c0cb !important;
        font-weight: 400;
    }
    
    .shadow-primary {
        box-shadow: 0px 5px 14px rgba(31, 97, 235, 0.08);
    }
    
    .bg-secondary {
        background-color: #536976 !important;
    }
    
    .bg-soft-secondary {
        background-color: rgba(83, 105, 118, 0.15) !important;
    }
    
    .border-secondary {
        border-color: #536976 !important;
    }
    
    .text-secondary {
        color: #536976 !important;
    }
    
    .shadow-secondary {
        box-shadow: 0px 5px 14px rgba(83, 105, 118, 0.08);
    }
    
    .bg-info {
        background-color: #4bbbce !important;
    }
    
    .bg-soft-info {
        background-color: rgba(75, 187, 206, 0.15) !important;
    }
    
    .border-info {
        border-color: #4bbbce !important;
    }
    
    .text-info {
        color: #4bbbce !important;
    }
    
    .shadow-info {
        box-shadow: 0px 5px 14px rgba(75, 187, 206, 0.08);
    }
    
    .page-title {
        padding-top: 70px;
    }
    
    .hero-bottom-shape {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
    }
    
    .hero-content {
        position: relative;
        z-index: 1;
    }
    
    .hero-5 {
        padding: 105px 0 300px;
        position: relative;
        background-image: url(../images/heros/hero-5-bg.webp);
        background-repeat: no-repeat;
        width: 100%;
        background-size: cover;
        background-position: bottom;
        background-color: #ffffff !important;
    }
    
    .hero-5-img {
        margin-top: -22rem;
    }
    
    @media (min-width: 768px) and (max-width: 991.98px) {
        .hero-5 {
            padding: 100px 0 420px;
        }
    }
    
    @media (max-width: 768px) {
        .hero-5 {
            padding: 100px 0 320px;
        }
        .hero-5-img {
            margin-top: -16rem;
        }
    }
    
    .features-bg {
        background-image: url("../images/features-bg.png");
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
    }
    
    .cta-bg {
        background-image: url("../images/counter-bg.jpg");
        background-size: cover;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
    }
    /*# sourceMappingURL=style.css.map */
    
    .end-0 {
        right: 0 !important;
    }
    
    .start-0 {
        left: 0 !important;
    }
    
    .bottom-0 {
        bottom: 0 !important;
    }
    
    .position-absolute {
        position: absolute !important;
    }
    
    .w-100 {
        width: 100% !important;
    }
    
    img,
    svg {
        vertical-align: middle;
    }
    /* ////////test////// */
    /* ------------Trusted-Section-Css-Start----------- */
    /* trusted logos wraper */
    
    .survey_section {
        margin-top: 0px;
    }
    
    .survey_section .company_logos {
        padding-top: 20px;
    }
    
    .survey_section .company_logos img {
        filter: grayscale(1);
        margin: 0 auto;
        transition: .4s all;
    }
    
    .survey_section .company_logos img:hover {
        filter: grayscale(0);
    }
    /* ----------Feature-Detail-Section-start------ */
    
    .crop-test {
        padding: 50px 0;
        justify-content: center;
        text-align: center;
    }
    
    .test-box {
        width: 100%;
        max-width: 750px;
    }
    /* ///// */
    
    .footer-new {
        /* background: #050B0F; */
        background: linear-gradient(90deg, #0a0a0a 0%, rgb(5 11 14) 50%, rgb(5 11 14) 100%);
        border-radius: 10px !important;
    }
    
    .timeline-style-two {
        position: relative;
        padding: 50px 50px 50px 50px;
        border-radius: var(--radius-big);
    }
    /* .rainbow-section-gapBottom {
        padding-bottom: 90px !important;
    } */
    
    .rainbow-section-gapBottom {
        padding-bottom: 60px !important;
    }
    
    .align-items-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    
    .justify-content-center {
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    
    .text-contact {
        color: #ffffff !important;
        font-weight: 300;
        font-size: 16px;
    }
    
    .icon-contact img {
        width: 40px;
        margin: 10px 0;
        padding-right: 10px;
    }
    
    .logo-efin {
        width: 150px;
    }
    /* ///////////////////////////////////// */
    
    .mt-sub-main-pic {
        margin-top: -275px;
    }
    /* Blog Detail Css Start */
    
    .blog_detail_section {
        margin-bottom: 40px;
    }
    
    .blog_detail_bredcrumb.bred_crumb .bred_text {
        margin-top: -30px;
    }
    
    .blog_detail_section .blog_inner_pannel {
        margin-top: 85px;
        /* background-color: #FFFFFF;
    border-radius: 30px;
    padding: 45px 60px; */
        /* position: relative;
    box-shadow: 0 8px 30px #c0bad76b; */
    }
    
    .blog_detail_section .blog_inner_pannel .review {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .blog_detail_section .blog_inner_pannel .review span {
        line-height: 1;
    }
    
    .blog_detail_section .blog_inner_pannel .review span:first-child {
        color: var( --blue-002);
        display: inline-block;
        font-weight: 700;
    }
    
    .blog_detail_section .blog_inner_pannel .review span:last-child {
        color: var(--dark-purple);
        display: inline-block;
        margin-left: 15px;
        padding-left: 15px;
        border-left: 1px solid var(--dark-purple);
    }
    
    .blog_detail_section .blog_inner_pannel .section_title {
        margin-bottom: 40px;
    }
    
    .blog_detail_section .blog_inner_pannel .section_title h2 {
        margin-bottom: 0;
    }
    
    .blog_detail_section .blog_inner_pannel img {
        max-width: 100%;
    }
    
    .blog_detail_section .blog_inner_pannel .main_img {
        margin-bottom: 30px;
    }
    
    .blog_detail_section .blog_inner_pannel .info h3 {
        font-weight: 700;
        color: var(--dark-purple);
        margin-top: 30px;
        font-size: 25px;
        margin-bottom: 15px;
    }
    
    .blog_detail_section .blog_inner_pannel .info ul {
        padding-left: 25px;
        padding-top: 10px;
        margin-bottom: 30px;
    }
    
    .blog_detail_section .blog_inner_pannel .info ul li p {
        position: relative;
        padding-left: 25px;
        margin-bottom: 0;
    }
    
    .blog_detail_section .blog_inner_pannel .info ul li p .icon {
        position: absolute;
        left: 0;
        color: var( --blue-002);
    }
    
    .blog_detail_section .blog_inner_pannel .two_img {
        margin-bottom: 70px;
    }
    
    .blog_detail_section .blog_inner_pannel .quote_block {
        background-color: #f0f0f0;
        border-radius: 12px;
        padding: 55px 35px 35px 60px;
        position: relative;
        margin-top: 50px;
        margin-bottom: 75px;
    }
    
    .blog_detail_section .blog_inner_pannel .quote_block h2 {
        font-size: 25px;
        line-height: 37px;
    }
    
    .blog_detail_section .blog_inner_pannel .quote_block p {
        margin-bottom: 0;
        margin-top: 15px;
    }
    
    .blog_detail_section .blog_inner_pannel .quote_block .name {
        color: var( --blue-002);
        font-weight: 700;
    }
    
    .blog_detail_section .blog_inner_pannel .quote_block .q_icon {
        position: absolute;
        top: -20px;
        width: 63px;
        height: 63px;
        background-color: var(--bg-white);
        border-radius: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .blog_detail_section .blog_inner_pannel .quote_block .q_icon img {
        width: 35px;
    }
    
    .blog_detail_section .blog_inner_pannel .blog_authore {
        display: flex;
        /* justify-content: space-between; */
        justify-content: center;
        align-items: center;
        padding: 15px 0;
        /* border-top: 1px solid #D6D3E3; */
        /* border-bottom: 1px solid #D6D3E3; */
        /* margin: 35px 0; */
    }
    
    .blog_detail_section .blog_inner_pannel .blog_authore .authore_info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 50px;
        border: 2px solid #a2e1e5;
        border-radius: 15px;
        background-color: #ffffff;
    }
    
    .blog_detail_section .blog_inner_pannel .blog_authore .authore_info:hover {
        border: 2px solid #a2e1e5;
        background-color: #eaeaea;
    }
    
    .blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text {
        margin-left: 20px;
    }
    
    .blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text h3 {
        font-size: 20px;
        font-weight: 400;
        color: var(--dark-purple);
        margin-bottom: 5px;
        line-height: 25px;
    }
    
    .blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text span {
        /* font-size: 14px; */
        color: var(--blue-002);
        font-size: 20px;
        font-weight: 400;
        line-height: 25px;
    }
    
    .blog_detail_section .blog_inner_pannel .blog_authore .social_media ul {
        display: flex;
    }
    /* Social Media link list */
    
    .blog_detail_section .blog_inner_pannel .blog_authore .social_media ul li a {
        display: block;
        width: 37px;
        height: 37px;
        text-align: center;
        line-height: 37px;
        font-size: 15px;
        border: 1px solid #CCC9D7;
        border-radius: 50px;
        margin-right: 10px;
        transition: .4s all;
    }
    
    .blog_detail_section .blog_inner_pannel .blog_authore .social_media ul li:last-child a {
        margin-right: 0;
    }
    
    .blog_detail_section .blog_inner_pannel .blog_authore .social_media ul li a:hover {
        background-color: var(--bg-purple);
        color: var(--text-white);
    }
    
    .blog_detail_section .blog_inner_pannel .blog_tags ul {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .blog_detail_section .blog_inner_pannel .blog_tags ul .tags p {
        margin-bottom: 0;
        color: var(--dark-purple);
        font-weight: 500;
        margin-right: 5px;
    }
    
    .blog_detail_section .blog_inner_pannel .blog_tags ul li span {
        color: var( --blue-002);
        font-weight: 500;
    }
    
    .btn-facebook {
        width: 65px;
        height: 65px;
        text-align: center;
        justify-items: center;
        border-radius: 50%;
        padding: 2px;
        font-size: 35px;
        background-color: #0866ff;
        color: #ffffff;
    }
    
    .btn-download {
        width: 65px;
        height: 65px;
        text-align: center;
        justify-items: center;
        border-radius: 50%;
        padding: 2px;
        font-size: 35px;
        background-color: #1eacb5;
        color: #ffffff;
    }
    
    .mbt-55 {
        margin-top: 65px;
    }
    
    .box-menu {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    
    .box-crop-btn-Mobile {
        position: fixed;
        bottom: 75px;
        transition: .4s all;
        justify-content: center;
        text-align: center;
        left: 0;
        right: 0;
        margin: auto;
        display: flex;
    }
    
    .box-btn-Mobile {
        background-color: #ffffff;
        padding: 45px 30px;
        max-width: 90%;
        text-align: center;
        border-radius: 10px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    
    .btn-test2 {
        color: var(--blue-002);
        background-color: var(--bg-white);
        font-size: 16px;
        padding: 9px 40px;
        border-radius: 10px;
        margin-left: 20px;
        position: relative;
        border: 1px solid #24d1dd;
    }
    
    .btn-register2 {
        color: var(--text-white);
        background-color: var(--blue-002);
        font-size: 16px;
        padding: 9px 40px;
        border-radius: 10px;
        margin-left: 20px;
        position: relative;
        border: 1px solid var(--blue-002);
    }
    
    .box-crop-btn-Mobile {
        display: none;
    }
    
    .text-contact:hover {
        color: var(--blue-002)!important;
    }
    
    .btn-register2:hover {
        color: var(--text-white);
        background: rgba(2, 129, 131, 0.749);
        border: 1px solid rgba(2, 129, 131, 0.749);
    }
    
    .btn-test2:hover {
        color: var(--text-white);
        background: rgb(8 100 103);
        border: 1px solid rgb(8 100 103);
    }
    
    .btn-test2::before,
    .btn-test2::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 42px;
        z-index: -1;
    }
    
    .btn-register2::before,
    .btn-register2::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 42px;
        z-index: -1;
    }
    
    .btn-test2::before {
        animation: pulse-blue-medium-sm 3.5s infinite
    }
    
    .btn-register2::before {
        animation: pulse-blue-medium-sm 3.5s infinite
    }
    
    .btn-test2::after {
        animation: pulse-blue-small-sm 3.5s infinite
    }
    
    .btn-register2::after {
        animation: pulse-blue-small-sm 3.5s infinite
    }
    /* ///////////// */
    
    .box-01 {
        display: block;
    }
    
    .box-02 {
        display: none;
    }
    
    .main_img img {
        border-radius: 15px;
    }