
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/inter-tight/InterTight-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/inter-tight/InterTight-VariableItalic.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
    font-style: italic;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-VariableItalic.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --heading_font: "Inter Tight", sans-serif;
    --body_font: "Inter", sans-serif;
    --body_font_color: #2f3a4bde;
    --dark_section_background_color: #1A0A4C;
    --headline_primary_color: #1C252E;
    --btn_primary_bg_color: #633AE5;
    --btn_primary_bg_color_hover: #2B117F;

}

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    height: 100%;
    width: 100%;
    font-family: var(--body_font);
    font-weight: 400;
    color: var(--body_font_color);
    scroll-behavior: smooth;
}


h1, h2, h3, h4, h5, h6, span, p, a, a:hover {
    color: inherit;
    text-decoration: none;
    padding: 0;
}



ul, ol, li {
    list-style: none;
    padding: 0;
    margin: 0;
}





/* =======================================*/
/* Divider */
/* =======================================*/
.appilix_sec_divider{
    background-color: var(--dark_section_background_color);
}
hr.appilix_divider {
    background-color: transparent;
    background-image: linear-gradient(90deg, rgba(206, 211, 246, 0) 0, #bbb 38%, #bbb 64%, rgba(206, 211, 246, 0) 99%);
    opacity: .3;
    height: 1px;
    border: 0;
}


/* =======================================*/
/* Container */
/* =======================================*/
.appilix_container {
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
}
.appilix_container_article {
    margin: 0 auto;
    width: 100%;
    max-width: 1170px;
}
@media screen and (max-width: 1350px) {
    .appilix_container, .appilix_container_article {
        max-width: 80%;
    }
}
/* For Large Screen */
@media screen and (max-width: 1280px) {
    .appilix_container, .appilix_container_article {
        max-width: 85%;
    }
}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_container, .appilix_container_article {
        max-width: 90%;
    }
}
/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_container, .appilix_container_article {
        max-width: 90%;
    }
}
/* For Small Mobile View */
@media screen and (max-width: 576px){
    .appilix_container, .appilix_container_article {
        max-width: 90%;
    }
}



/* =======================================*/
/* Animation Styles */
/* =======================================*/

.appilix_expanding_cta{
    transition: transform .2s ease-in-out;
}
.appilix_expanding_cta.expanding_cta_active{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.appilix_expanding_cta_bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(211deg,rgba(0, 0, 0, 0.4) 0%,rgba(0, 0, 0, 0.62) 100%),url(https://www.divi-pixel.com/wp-content/uploads/2022/05/cta-bg-01.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal;
}

/* =======================================*/
/* Section Spacing */
/* =======================================*/

.appilix_section_space_hero{
    margin: 98px 0 0 0;
    padding: 50px 0 128px 0;
}
body.has_notification_bar .appilix_section_space_hero{
    margin: 138px 0 0 0;
}
.appilix_section_space_large{
    padding: 128px 0 128px 0;
}
.appilix_section_space_medium{
    padding: 64px 0 64px 0;
}
.appilix_section_space_large_to_medium{
    padding: 128px 0 64px 0;
}
.appilix_section_space_medium_to_large{
    padding: 64px 0 128px 0;
}
/* =======================================*/
/* Section Header */
/* =======================================*/

.appilix_section_header span.top_title{
    display: block;
    margin: 0 auto;
    font-size: 16px;
    color: #6941C6;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 24px;
    text-align: center;
}
.appilix_section_header h1,
.appilix_section_header h2{
    margin: 0 auto;
    font-family: var(--heading_font);
    font-size: 48px;
    font-weight: 600;
    color: var(--headline_primary_color);
    text-align: center;
}
.appilix_section_header p{
    margin: 20px auto 0 auto;
    color: #2f3a4bde;
    font-size: 20px;
    font-weight: 400;
    max-width: 768px;
    line-height: 30px;
    text-align: center;
}
.appilix_section_header .left_then_center{
    text-align: left !important;
}
/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_section_header h1,
    .appilix_section_header h2{
        font-size: 38px;
    }
    .appilix_section_header p{
        font-size: 20px;
    }
    .appilix_section_header .left_then_center{
        text-align: center !important;
    }

}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_section_header h1,
    .appilix_section_header h2{
        font-size: 30px;
    }
    .appilix_section_header p{
        font-size: 18px;
    }
}

/* For Mobile View */
@media screen  and (max-width: 576px){

}




/* ================================*/
/* Appilix Discount Notification Bar */
/* ================================*/

.appilix_discount_notification_bar{
    position: fixed;
    width: 100%;
    top: 0;
    height: 40px;
    background-color: #230e65;
    display: flex;
    align-items: center;
    z-index: 999;
}
.appilix_discount_notification_bar .notification{
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
.appilix_discount_notification_bar .notification .discount_ends{
    font-weight: 400;
}
.appilix_discount_notification_bar .notification nn{
    color: #fffb00;
    font-style: italic;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}



/* ===================================*/
/*  Appilix Nav Bar Section */
/* ===================================*/

.appilix_nav_bar{
    position: fixed !important;
    width: 100%;
    top: 0;
    z-index: 999;
    padding: 25px 0;
    background-color: #FFFFFF;
    transition: all .6s ease-in-out;
}
body.has_notification_bar .appilix_nav_bar{
    top: 40px;
}
.appilix_nav_bar.fixed {
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.99);
    box-shadow: 5px 12px 18px rgba(0, 0, 0, .05);
    z-index: 9999;
    padding: 15px 0;
}
body.has_notification_bar .appilix_nav_bar.fixed{
    top: 40px;
}
.appilix_nav_bar.expanded{
    box-shadow: 0 2px 0 #fff, 0 5px 15px rgba(0, 0, 0, 0.18);
    background-color: rgba(255, 255, 255, 0.99);
    transition: box-shadow 0.15s ease-in-out;
    opacity: 1;
}
.appilix_nav_bar .nav_bar_elements {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*Appilix Logo*/
.appilix_nav_bar .nav_bar_elements .appilix_logo{
    display: inline-block;
    width: 150px;
    height: 41px;
}

/*Appilix NavBar Menu Items*/
.appilix_nav_bar .nav_bar_elements .menu_items{
    display: flex;
    align-items: center;
    gap: 24px;
}
.appilix_nav_bar .nav_bar_elements .menu_items li a{
    font-size: 16px;
    font-weight: 500;
}
.appilix_nav_bar .nav_bar_elements .menu_items li a:hover{
    color: var(--btn_primary_bg_color);
}
.appilix_nav_bar .nav_bar_elements .menu_items li a.active{
    color: var(--btn_primary_bg_color);
}
.appilix_nav_bar.expanded .nav_bar_elements{
    flex-direction: column;
}
.appilix_nav_bar.expanded .nav_bar_elements .nav_bar_menu{
    display: block;
    width: 100%;
}
.appilix_nav_bar.expanded .nav_bar_elements .menu_items{
    flex-direction: column;
    align-items: start;
    padding: 20px 5px;
    gap: 10px;
}

/*Appilix NavBar Buttons*/
.appilix_nav_bar .nav_bar_elements .nav_bar_btns{
    display: flex;
    gap: 24px;
}
.appilix_nav_bar .nav_bar_elements .nav_bar_btns a{
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.25px;
    font-weight: 600;
    padding: 10px 15px;
    outline: none;
    border: 1px solid var(--btn_primary_bg_color);
    border-radius: 4px;
}
.appilix_nav_bar .nav_bar_elements .nav_bar_btns .login{
    transition: all .5s ease;
    background-color: #ffffff;
    color: var(--btn_primary_bg_color);
}
.appilix_nav_bar .nav_bar_elements .nav_bar_btns .login:hover{
    border: 1px solid var(--btn_primary_bg_color_hover);
    background-color: var(--btn_primary_bg_color_hover);
    color: #FFFFFF;
}
.appilix_nav_bar .nav_bar_elements .nav_bar_btns .account{
    transition: all .6s ease;
    background-color: var(--btn_primary_bg_color);
    color: #ffffff;
}
.appilix_nav_bar .nav_bar_elements .nav_bar_btns .account:hover{
    background-color: var(--btn_primary_bg_color_hover);
}
.appilix_nav_bar .nav_bar_elements .action_menu{
    background: url("../images/theme/appilix_action_menu.svg") no-repeat center;
    width: 40px;
    height: 40px;
    display: none;
    cursor: pointer;
}
.appilix_nav_bar.expanded .nav_bar_elements .action_menu{
    background: url("../images/theme/appilix_nav_x_close.svg") no-repeat center;
}
.appilix_nav_bar.expanded .nav_bar_elements .nav_bar_btns{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    padding: 20px 20px 0;
    border-top: 1px solid #CFCFCF;;
}

/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_nav_bar .nav_bar_elements .nav_bar_container{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .appilix_nav_bar .nav_bar_elements .action_menu{
        display: block;
    }
    .appilix_nav_bar .nav_bar_elements .nav_bar_menu{
        display: none;
    }
    .appilix_nav_bar .nav_bar_elements .nav_bar_btns{
        display: none;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){

}

/* For Small Mobile View */
@media screen and (max-width: 576px){

}



/* =======================*/
/*  Hero Section */
/* =======================*/

.appilix_hero{
    background-size: 1400px;
}

/*Landing Page Hero Notification*/
.appilix_hero .notification_slide{
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    height: 45px;
}

.appilix_hero .notification_slide .hero_notification{
    cursor: pointer;
    border: 1px solid #CFCFCF;
    display: flex;
    width: fit-content;
    border-radius: 48px;
    background-color: #fff;
    padding: 5px;
    margin-bottom: 45px;
}
.appilix_hero .notification_slide .hero_notification:first-child{
    animation: notify_slide 7s forwards infinite;
}
@keyframes notify_slide {
    0% {margin-top: -270px;}
    3% {margin-top: -173px;}
    35% {margin-top: -173px;}
    38% {margin-top: -86px;}
    66% {margin-top: -86px;}
    71% {margin-top: 1px;}
    95% {margin-top: 1px;}
    98% {margin-top: 60px;}
    99.99% {margin-top: 60px;}
    100% {margin-top: -270px;}
}

.appilix_hero .notification_slide .hero_notification .notification{
    white-space: nowrap;
    color: #121212;
    font-size: 14px;
    font-weight: 400;
    background: #F8F8F8;
    padding: 5px 10px;
    border-radius: 48px;
    border: 1px solid #CFCFCF;
    margin: 0 0 0 -4px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.appilix_hero .notification_slide .hero_notification .notification b{
    color: #000000;
    font-weight: 500;
}

.appilix_hero .notification_slide .hero_notification.users .user_icon{
    width: 82px;
    height: 30px;
    background: url("../images/theme/appilix_hero_notification_users.png") no-repeat center;
    background-size: contain;
}

.appilix_hero .notification_slide .hero_notification.trustpilot .user_icon,
.appilix_hero .notification_slide .hero_notification.google .user_icon{
    width: 30px;
    height: 30px;
    margin: 0 14px 0 4px;
}
.appilix_hero .notification_slide .hero_notification.trustpilot .user_icon{
    background: url("../images/theme/appilix_hero_notification_trustpilot.svg") no-repeat center;
}
.appilix_hero .notification_slide .hero_notification.google .user_icon{
    background: url("../images/theme/appilix_hero_notification_google.svg") no-repeat center;
}


.appilix_hero .notification_slide .hero_notification.trustpilot .notification span,
.appilix_hero .notification_slide .hero_notification.google .notification span{
    height: 12px;
    width: 60px;
    display: inline-block;
    margin: 0 5px 0 2px;
}
.appilix_hero .notification_slide .hero_notification.trustpilot .notification span{
    background: url("../images/theme/appilix_hero_notification_4_8_star.svg") no-repeat center;
}
.appilix_hero .notification_slide .hero_notification.google .notification span{
    background: url("../images/theme/appilix_hero_notification_4_5_star.svg") no-repeat center;
}








/*Landing Page Section Top*/
.appilix_hero .appilix_section_header{
    margin: 30px 0 0 0;
}
.appilix_hero .appilix_section_header h1{
    font-size: 54px;
    max-width: 1000px;
    line-height: 65px;
}
.appilix_hero .appilix_section_header p{
    max-width: 796px;
    margin: 20px auto 0 auto;
}


.appilix_hero .create_form{
    margin: 40px auto 0 auto;
    display: flex;
    width: 575px;
}

/*Input Field*/
.appilix_hero .create_form .input_block{
    position: relative;
    flex: 1;
}
.appilix_hero .create_form .input_block input{
    flex: 1;
    background: #ffffff url("../images/theme/appilix_hero_input_internet_icon.svg") no-repeat;
    background-size: 20px;
    background-position-y: center;
    background-position-x: 15px;
    border: 2px solid var(--btn_primary_bg_color);
    border-right: 0;
    font-size: 18px;
    font-weight: 400;
    padding: 16px 15px 16px 45px;
    outline: none;
    border-radius: 8px 0 0 8px;
    display: inline-block;
    width: 100%;
}
.appilix_hero .create_form .input_block span.placeholder {
    position: absolute;
    color: #a29db7;
    display: flex;
    align-items: center;
    font-size: 18px;
    top: 18px;
    left: 45px;
    transition: all 0.2s;
    transform-origin: 0 0;
    background: none;
    pointer-events: none;
}
.appilix_hero .create_form .input_block input:valid + span.placeholder,
.appilix_hero .create_form .input_block input:focus + span.placeholder {
    transform: scale(0.8) translateY(-34px);
    background: linear-gradient(to bottom, transparent 50%,  #ffffff 50% );
}
.appilix_hero .create_form .input_block input:focus{
    color: var(--btn_primary_bg_color_hover);
    border-color: var(--btn_primary_bg_color_hover);
}
.appilix_hero .create_form .input_block input:focus + span.placeholder {
    color: var(--btn_primary_bg_color_hover);
}
.appilix_hero .create_btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 14px 0 30px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s;
    background-color: var(--btn_primary_bg_color);
    border-radius: 0 8px 8px 0;
    z-index: 1;
    outline: none;
    border: 1px solid var(--btn_primary_bg_color);
}
.appilix_hero .create_btn:hover{
    background-color: var(--btn_primary_bg_color_hover);
}
.appilix_hero .create_form:focus-within .create_btn {
    background-color: var(--btn_primary_bg_color_hover);
}
.appilix_hero .create_btn .arrow_right{
    margin: 0 0 0 10px;
    display: inline-block;
    width: 26px;
    height: 26px;
    background-image: url("../images/theme/appilix_arrow_right_white.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    z-index: 1;
}



/*Hero Section Cards*/
.appilix_hero .hero_features{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 45px 0 0 0;
}
.appilix_hero .hero_features .hf_card{
    width: 108px;
    height: 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.appilix_hero .hero_features .hf_card .icon{
    border-radius: 8px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    min-width: 60px;
    min-height: 60px;
}
.appilix_hero .hero_features .hf_card .icon.icon_1{
    background: #f3f4f6 url("../images/theme/modules/circle_firebase.svg") no-repeat center;
    background-size: 33px;
}
.appilix_hero .hero_features .hf_card .icon.icon_2{
    background: #f3f4f6 url("../images/theme/modules/circle_admob.svg") no-repeat center;
    background-size: 33px;
}
.appilix_hero .hero_features .hf_card .icon.icon_3{
    background: #f3f4f6 url("../images/theme/modules/circle_biometric.svg") no-repeat center;
    background-size: 33px;
}
.appilix_hero .hero_features .hf_card .icon.icon_4{
    background: #f3f4f6 url("../images/theme/modules/circle_nav_drawer.svg") no-repeat center;
    background-size: 33px;
}
.appilix_hero .hero_features .hf_card .icon.icon_5{
    background: #f3f4f6 url("../images/theme/modules/circle_deeplink.svg") no-repeat center;
    background-size: 33px;
}
.appilix_hero .hero_features .hf_card .icon.icon_6{
    background: #f3f4f6 url("../images/theme/modules/circle_splash_screen.svg") no-repeat center;
    background-size: 33px;
}
.appilix_hero .hero_features .hf_card .details{
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.25px;
}



/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_hero .appilix_section_header h1{
        font-size: 48px;
        line-height: 60px;
    }
    .appilix_hero .hero_features{
        gap: 24px;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_hero {
        background-size: 1200px;
    }
    .appilix_hero .appilix_section_header h1{
        font-size: 36px;
        line-height: 45px;
    }
    .appilix_hero .hero_features {
        display: none;
    }
    .appilix_hero .create_form{
        width: 80%;
        flex-direction: column;
        gap: 16px;
    }

    .appilix_hero .create_form .input_block input{
        border: 2px solid var(--btn_primary_bg_color);
        border-radius: 8px;
    }

    .appilix_hero .create_btn {
        justify-content: center;
        padding: 16px 14px 16px 30px;
        border-radius: 8px;
    }
}

/* For Small Mobile View */
@media screen and (max-width: 576px){
    .appilix_hero .appilix_section_header{
        margin: 25px 0 0 0;
    }
    .appilix_hero .notification_slide .hero_notification .notification{
        font-size: 10px;
    }
    .appilix_hero .notification_slide .hero_notification.users .user_icon{
        width: 64px;
        height: 24px;
    }
    .appilix_hero .create_form{
        width: 90%;
    }
}



/* ================================*/
/* Appilix 3 Steps Section*/
/* ================================*/

.appilix_3_steps{
    background-color: #1A0A4C;
}
.appilix_3_steps .steps_elements{
    display: flex;
    align-content: center;
    align-items: center;
    gap: 128px;
    justify-content: center;
}
.appilix_3_steps .steps_elements .details{
    flex: 1;
}
.appilix_3_steps .steps_elements .details .appilix_section_header h2{
    background: url("../images/theme/appilix_3_stap_design_1.svg") no-repeat center;
    background-size: 37px;
    background-position-x: 0;
    background-position-y: 0;
    color: #fff;
    text-indent: 40px;
}
.appilix_3_steps .steps_elements .details h2 span{
    color: #F3EF15;
}
.appilix_3_steps .steps_elements .details .appilix_section_header  p{
    color: #FFFFFFD6;
}
.appilix_3_steps .steps_elements .details .three_cards .card{
    margin: 35px 0 0 0;
    display: flex;
    align-items: center;
    border: 1px dashed #92975B;
    border-radius: 20px;
    padding: 20px;
}
.appilix_3_steps .steps_elements .details .three_cards .card:not(:first-child){
    margin: 20px 0 0 0;
}
.appilix_3_steps .steps_elements .details .three_cards .card .icon{
    background: #4B4265 url("../images/theme/appilix_arrow_right_white.svg") no-repeat center;
    background-size: 28px;
    width: 24px;
    height: 24px;
    margin: 0 20px 0 0;
    padding: 30px;
    border-radius: 12px;
}
.appilix_3_steps .steps_elements .details .three_cards .card h3{
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
}
.appilix_3_steps .steps_elements .details .three_cards .card p{
    color: #FFFFFFD6;
    margin: 12px 0 0 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}
.appilix_3_steps .steps_elements .section_img{
    position: relative;
    padding:0;
    width: 45%;
}
.appilix_3_steps .steps_elements .section_img .play_btn{
    background: url("../images/theme/appilix_3_steps_play_button.svg") no-repeat center;
    width: 74px;
    height: 74px;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    cursor: pointer;
    margin: auto;
}
.appilix_3_steps .steps_elements .section_img img{
    height: auto;
    max-width: 100%;
    border-radius: 58px 10px;
    border: 5px solid white;
    object-fit: cover;
}

/* For Large Screen */
@media screen and (max-width: 1280px) {
    .appilix_3_steps .steps_elements{
        gap: 96px;
    }
    .appilix_3_steps .steps_elements .section_img{
        width: 40%;
    }
    .appilix_3_steps .steps_elements .section_img img{
        border-radius: 38px 10px;
    }
}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_3_steps .steps_elements{
        flex-direction: column;
        gap: 64px;
    }
    .appilix_3_steps .steps_elements .details .design_icon{
        left: 10px;
        top: -15px;
    }
    .appilix_3_steps .steps_elements .section_img{
        display: none;
    }
    .appilix_3_steps .steps_elements .details .three_cards{
        margin: 0 auto;
        max-width: 600px;
    }
    .appilix_3_steps .steps_elements .details .three_cards .card p{
        text-align: left;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){

}

/* For Small Mobile View */
@media screen and (max-width: 576px){
    .appilix_3_steps .steps_elements .details .three_cards .card h3{
        font-size: 16px;
    }
    .appilix_3_steps .steps_elements .details .three_cards .card p{
        font-size: 14px;
    }
}



/* ================================*/
/* Features 01 Section*/
/* ================================*/
.appilix_features_1{
}
.appilix_features_1 .features_integrator_cards{
    padding: 64px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 32px;
    grid-row-gap: 64px;
}
.appilix_features_1 .features_integrator_cards .card{
    margin-top: 24px;
    background-color: #F9FAFB;
    padding: 52px 24px 32px 24px;
    border-radius: 16px;
}
.appilix_features_1 .features_integrator_cards .card h3{
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 8px;
    color: #111827;
}
.appilix_features_1 .features_integrator_cards .card p{
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.appilix_features_1 .features_integrator_cards .card .icon{
    width: 64px;
    height: 64px;
    background-color: #FFFFFF;
    padding: 6px;
    border-radius: 12px;
    border: #E4E7EC 1px solid;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin: -85px auto 25px auto;
}
.appilix_features_1 .important_note{
    margin: 60px 0 0 0;
}
.appilix_features_1 .important_note p{
    text-align: center;
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
}
.appilix_features_1 .important_note p a{
    color: #6941C6;
    text-decoration: underline;
}
.appilix_features_1 .important_note p a.with_arrow{
    background: url("../images/theme/appilix_arrow_right_purple.svg") no-repeat center right;
    background-position-y: 3px;
    background-size: 18px;
    padding: 0 22px 0 0;
}

/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_features_1 .features_integrator_cards{
        margin: 48px 0 0 0;
        grid-template-columns: 1fr 1fr;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_features_1 .features_integrator_cards{
        padding: 48px 0 0 0;
    }
    .appilix_features_1 .features_integrator_cards{
        grid-template-columns: 1fr;
    }
    .appilix_features_1 .features_integrator_cards .card h3{
        font-size: 18px;
        line-height: 28px;
    }
}

/* For Small Mobile View */
@media screen and (max-width: 576px){

}


/* ================================*/
/* CTA 01 Section*/
/* ================================*/

.appilix_cta_1{

}
.appilix_cta_1 .appilix_section_header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url("../images/theme/appilix_cta_1_bg.svg") no-repeat center;
    background-size: cover;
    border-radius: 20px;
    padding: 80px 45px;
    width: 100%;

}
.appilix_cta_1 .appilix_section_header h2{
    font-size: 65px;
    color: #111827;
    width: 100%;
    max-width: 785px;
}
.appilix_cta_1 .appilix_section_header p{
    margin: 16px auto 32px;
    color: #354C33;
}
.appilix_cta_1 .appilix_section_header a{
    cursor: pointer;
    border-radius: 100px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    background-color: #061F25;
    color: #FFFFFF;
}

/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_cta_1 .appilix_section_header{
        padding: 70px 35px;
    }
    .appilix_cta_1 .appilix_section_header h2{
        font-size: 56px;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_cta_1 .appilix_section_header{
        padding: 70px 25px;
    }
    .appilix_cta_1 .appilix_section_header h2{
        font-size: 48px;
    }
}

/* For Small Mobile View */
@media screen and (max-width: 576px){
    .appilix_cta_1 .appilix_section_header h2{
        font-size: 36px;
    }
}



/* ================================*/
/* Builder Highlight Section*/
/* ================================*/

.appilix_builder_highlight{

}
.appilix_builder_highlight .highlighted_contents{
    margin: 110px 0 0 0;
}
.appilix_builder_highlight .highlighted_contents .sec_img{
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 0 auto;
}
.appilix_builder_highlight .highlighted_contents .sec_img img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.appilix_builder_highlight .highlighted_card_container{
    margin: 60px 0 0 0;
}
.appilix_builder_highlight .highlighted_card_container .features_cards {
    display: flex;
    gap: 64px;
}
.appilix_builder_highlight .highlighted_card_container .features_cards .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.appilix_builder_highlight .highlighted_card_container .features_cards .card .icon{
    height: 48px;
    width: 48px;
}
.appilix_builder_highlight .highlighted_card_container .features_cards .card .icon.i_1{
    background: url("../images/theme/appilix_builder_icon_1.svg") no-repeat center transparent;
}
.appilix_builder_highlight .highlighted_card_container .features_cards .card .icon.i_2{
    background: url("../images/theme/appilix_builder_icon_2.svg") no-repeat center transparent;
}
.appilix_builder_highlight .highlighted_card_container .features_cards .card .icon.i_3{
    background: url("../images/theme/appilix_builder_icon_3.svg") no-repeat center transparent;
}
.appilix_builder_highlight .highlighted_card_container .features_cards .card .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.appilix_builder_highlight .highlighted_card_container .features_cards .card .text h3 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 30px;
    font-family: var(--heading_font);
}
.appilix_builder_highlight .highlighted_card_container .features_cards .card .text p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_builder_highlight .highlighted_card_container .features_cards {
        flex-direction: column;
    }
    .appilix_builder_highlight .highlighted_card_container .features_cards .card {
        gap: 16px;
    }
    .appilix_builder_highlight .highlighted_card_container .features_cards .card .text h3 {
        font-size: 18px;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_builder_highlight .highlighted_contents{
        margin: 55px 0 0 0;
    }
}

/* For Small Mobile View */
@media screen and (max-width: 576px){

}



/* ================================*/
/* Pricing Section*/
/* ================================*/

.appilix_pricing_section{

}
.appilix_pricing_section .tab{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #061f251a;
    width: 300px;
    border-radius: 100px;
    padding: 8px;
    max-width: 100%;
    margin: 50px auto 0 auto;
}
.appilix_pricing_section .tab .item{
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 12px;
    margin: 0 auto;
    border-radius: 100px;
    text-align: center;
    cursor: pointer;
}
.appilix_pricing_section .tab .item.active{
    background-color: #EDFF6C;
}
.appilix_pricing_section .price_cards_container{
    display: flex;
    overflow: hidden;
}
.appilix_pricing_section .price_cards{
    min-width: 100%;
    padding: 60px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.appilix_pricing_section .price_cards:nth-child(2){
    margin: 0 0 0 30px;
}
.appilix_pricing_section .price_cards .p_card{
    flex: 1;
    max-width: 406px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #E9E6F2;
    border-radius: 14px;
    padding: 40px 24px 32px;
}
.appilix_pricing_section .price_cards .p_card .card_head{
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -.32px;
}
.appilix_pricing_section .price_cards .p_card .price{
    letter-spacing: -1.04px;
    margin: 26px 0 24px 0;
    font-family: var(--heading_font);
    font-size: 40px;
    font-weight: 600;
}
.appilix_pricing_section .price_cards .p_card .price s{
    margin: 0 0 0 5px;
    font-family: var(--body_font);
    text-decoration: underline #0000007a 2px;
    text-underline-offset: -9px;
    text-decoration-skip-ink: none;
    font-size: 23px;
    font-weight: 400;
    color: #0000007a;
}
.appilix_pricing_section .price_cards .p_card.p_card_highlight .price s{
    text-decoration: underline #ffffffbd 2px;
    color: #ffffffbd;
}
.appilix_pricing_section .price_cards .p_card p{
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}
.appilix_pricing_section .price_cards .p_card .card_btn{
    background-color: #EDFF6C;
    margin: 32px 0;
    padding: 12px 0;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 100px;
}
.appilix_pricing_section .price_cards .p_card .features_list{
    margin: 4px 0 0;
    display: block;
    width: 100%;
}
.appilix_pricing_section .price_cards .p_card .features_list li{
    margin: 12px 0 0;
    padding: 0 0 0 36px;
    font-size: 18px;
    font-weight: 400;
}
.appilix_pricing_section .price_cards .p_card .features_list li.checked{
    background: url("../images/theme/appilix_pricing_feature_check.svg")no-repeat;
    background-size: 24px;
}
.appilix_pricing_section .price_cards .p_card .features_list li.unchecked{
    background: url("../images/theme/appilix_pricing_feature_x.svg")no-repeat;
    background-size: 24px;
}
.appilix_pricing_section .price_cards .p_card .features_list li a{
    border-bottom: #333333 2px dotted;
}
.appilix_pricing_section .price_cards .p_card.p_card_highlight{
    background-color: var(--dark_section_background_color);
    color: #FFFFFF;
}
.appilix_pricing_section .price_cards .p_card.p_card_highlight .features_list li.checked{
    filter: invert(100%) brightness(200%) contrast(200%);
    color: #000000;
}
.appilix_pricing_section .price_cards .p_card.p_card_highlight .features_list li.unchecked{
    filter: invert(100%) brightness(200%) contrast(200%);
    color: #000000;
}
.appilix_pricing_section .important_note{
    margin: 60px 0 0 0;
}
.appilix_pricing_section .important_note p{
    text-align: center;
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
}

/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_pricing_section .price_cards .p_card{
        min-width: 356px;
    }
    .appilix_pricing_section .price_cards .p_card.p_card_highlight{
        order: 3;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_pricing_section .price_cards .p_card{
        min-width: 100%;
    }
    .appilix_pricing_section .price_cards .p_card.p_card_3{
        order: 3;
    }
}

/* For Small Mobile View */
@media screen and (max-width: 576px){
    .appilix_pricing_section .price_cards .p_card{
        min-width: 100%;
    }
    .appilix_pricing_section .price_cards .p_card.p_card_3{
        order: 3;
    }
    .appilix_pricing_section .price_cards .p_card .features_list li{
        margin: 14px 0 0;
        font-size: 16px;
    }
    .appilix_pricing_section .price_cards .p_card .features_list li.checked{
        background-size: 20px;
    }
    .appilix_pricing_section .price_cards .p_card .features_list li.unchecked{
        background-size: 20px;
    }
}



/* ================================*/
/* Statement Section*/
/* ================================*/
.appilix_statement{

}
.appilix_statement .content{
    align-content: center;
    align-items: center;
    display: flex;
    gap: 92px;
    justify-content: space-between;
    overflow: hidden;
    padding: 0 50px;
    position: relative;
}
.appilix_statement .content .profile{
    position: relative;
    padding:0;
    min-width: 374px;
    max-width: 100%;
    height: 484px;
}
.appilix_statement .content .profile .arrow{
    background: url("../images/theme/appilix_statement_arrow.svg") no-repeat;
    width: 121px;
    height: 48px;
    position: absolute;
    top: 65%;
    right: -20%;
}
.appilix_statement .content .profile img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border: #222222 solid 2px;
    border-radius: 24px;
}
.appilix_statement .content .details p{
    font-family: var(--heading_font);
    font-size: 46px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 58px;
    color: #111827;
}
.appilix_statement .content .details p span{
    color: var(--btn_primary_bg_color);
}
.appilix_statement .content .details .intro{
    margin: 40px 0 0;
}
.appilix_statement .content .details .intro .person_name{
    display: block;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #171717;
}
.appilix_statement .content .details .intro .person_designation{
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 400;
    color: #7C7C7C;
}
.appilix_statement .user_companies{
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 68px 0 0 0;
}
.appilix_statement .user_companies img{
    height: 48px;
    width: auto;
}

/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_statement .content{
        flex-direction: column;
        gap: 45px;
    }
    .appilix_statement .content .profile .arrow{
        top: 70%;
        left: -20%;
    }
    .appilix_statement .content .details p{
        font-size: 38px;
        text-align: center;
        line-height: 50px;
    }

    .appilix_statement .content .details .intro .person_name{
        text-align: center;
    }
    .appilix_statement .content .details .intro .person_designation{
        display: block;
        text-align: center;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_statement .content .profile .arrow{
        display: none;
    }
    .appilix_statement .content .details p{
        font-size: 36px;
        line-height: 42px;
    }
}

/* For Small Mobile View */
@media screen and (max-width: 576px){
    .appilix_statement .content .details p{
        font-size: 32px;
    }
}





/* ================================*/
/* Review Section*/
/* ================================*/

.appilix_review{

}
.appilix_review .appilix_section_header{
    display: flex;
}
.appilix_review .appilix_section_header h2{
    flex: 2;
}
.appilix_review .appilix_section_header .slider{
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: right;
}
.appilix_review .appilix_section_header .slide{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: #FFFFFF solid 1px;
    filter: invert(100%);
    cursor: pointer;
}
.appilix_review .appilix_section_header .s_left{
    background: url("../images/theme/appilix_review_arrow.svg")no-repeat center;
    rotate: -180deg;
    background-size: 26px;
}
.appilix_review .appilix_section_header .s_right{
    background: url("../images/theme/appilix_review_arrow.svg")no-repeat center;
    background-size: 26px;
}
.appilix_review .review_cards{
    display: flex;
    gap: 30px;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
    margin: 50px 0 0 0;
}
.appilix_review .review_cards .card{
    display: flex;
    flex-flow: column;
    min-width: calc(50% - 15px);
    border: #E5E8E8 solid 1px;
    padding: 40px;
    border-radius: 25px;
    justify-content: space-between;
    flex-direction: column;
}
.appilix_review .review_cards .card p{
    letter-spacing: -.16px;
    margin-top: 0;
    padding-bottom: 32px;
    color: #2f3a4bde;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}
.appilix_review .review_cards .card p a.review_link{
    background: url("../images/theme/appilix_review_open_in_external_icon.svg") no-repeat center right;
    background-position-x: center;
    background-position-y: center;
    background-size: 17px;
    margin: 0 0 0 5px;
    width: 18px;
    height: 18px;
    display: inline-block;
}
.appilix_review .review_cards .card p button.read_more{
    cursor: pointer;
    text-decoration: none;
    margin: 0 0 0 5px;
    border: 0;
    background: transparent;
    color: rgb(141, 149, 164);
    font-size: 16px;
    font-weight: 400;
}
.appilix_review .review_cards .card .card_bottom{
    padding: 32px 0 0 0;
    border-top: 1px solid #E5E8E8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.appilix_review .review_cards .card .card_bottom .reviewer h3{
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}
.appilix_review .review_cards .card .card_bottom .reviewer span{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.appilix_review .review_cards .card .card_bottom .reviewer_dp {
    height: 54px;
    width: 54px;
    border: #4A5362 solid 1px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.appilix_review .review_cards .card .card_bottom .reviewer_dp img{
    height: 100%;
    width: 100%;
    border-radius: 50%;

}
.appilix_review .statistics {
    display: flex;
    margin-top: 80px;
    gap: 78px;
}
.appilix_review .statistics .sts h3{
    letter-spacing: -.16px;
    font-family: var(--body_font);
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 8px;
}
.appilix_review .statistics .sts p{
    font-size: 18px;
    font-weight: 400;
    color: #061f25cc
}
.appilix_review .statistics .sts{
    flex: 1;
    border-left: #E5E8E8 solid 1px;
    padding: 10px 0 10px 80px;
}
.appilix_review .statistics .sts.st_1{
    border-left: none;
    padding: 10px 0;
}

@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_review .appilix_section_header{
        display: block;
    }
    .appilix_review .appilix_section_header .slider{
        margin: 10px 0 0 0;
        justify-content: center;
    }
    .appilix_review .statistics{
        gap: 36px;
    }
    .appilix_review .statistics .sts{
        padding: 10px 0 10px 50px;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_review .review_cards .card{
        min-width: calc(100% - 2px);
    }
    .appilix_review .review_cards .card.card_2{
        display: none;
    }
    .appilix_review .statistics {
        display: flex;
        flex-direction: column;
        margin-top: 80px;
        gap: 48px;
    }
    .appilix_review .statistics .sts h3{
        text-align: center;
    }
    .appilix_review .statistics .sts p{
        text-align: center;
        max-width: 70%;
        margin: 0 auto;
    }
    .appilix_review .statistics .sts{
        border-left: none;
        padding: 0;
    }
    .appilix_review .statistics .sts.st_1{
        border-left: none;
        padding: 10px 0;
    }

}

/* For Small Mobile View */
@media screen and (max-width: 576px){

}




/* ================================*/
    /* Newsletter Section*/
/* ================================*/

.appilix_newsletter{
    background-color: var(--dark_section_background_color);
}
.appilix_newsletter.no_margin{
    margin: 0;
}
.appilix_newsletter .flex_container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}
.appilix_newsletter .appilix_section_header,
.appilix_newsletter .newsletter_form{
    flex: 1;
}
.appilix_newsletter .appilix_section_header h2{
    color: #FFFFFF;
    font-size: 38px;
}
.appilix_newsletter .newsletter_form{
    display: flex;
    width: 100%;
    max-width: 600px;
}
.appilix_newsletter .newsletter_form .email_input{
    color: #CCCCCC;
    font-size: 16px;
    font-weight: 400;
    padding: 13px 15px;
    border: 2px solid #4B4265;
    border-radius:  5px 0 0 5px;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    width: 100%;
}
.appilix_newsletter .newsletter_form .btn{
    display: block;
    padding: 18px 32px;
    color: #fff;
    background-color: #4B4265;
    outline: none;
    border: #4B4265 5px solid;
    font-size: 18px;
    font-weight: 500;
    border-radius: 0 5px 5px 0;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_newsletter .flex_container{
        flex-direction: column;
        gap: 50px;
    }

}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_newsletter .appilix_section_header h2{
        font-size: 30px;
    }
    .appilix_newsletter .newsletter_form {
        flex-direction: column;
    }
    .appilix_newsletter .newsletter_form .btn{
        margin-top: 16px;
        border: 1px solid #4B4265;
        border-radius: 5px ;
    }
    .appilix_newsletter .newsletter_form .email_input{
        border: 1px solid #4B4265;
        padding: 18px 32px;
        border-radius: 5px ;
    }


}

/* For Small Mobile View */
@media screen and (max-width: 576px){

}



/* ================================*/
/* Footer Section*/
/* ================================*/

.appilix_footer{
    padding-bottom: 32px;
    background-color: var(--dark_section_background_color);
}
.appilix_footer .footer_row{
    display: flex;
}
.appilix_footer .footer_row .footer_info {
    flex: 0 0 auto;
    width: 25%;
    margin-bottom: 40px;
}
.appilix_footer .footer_row .footer_info .footer_logo {
    width: auto;
    max-width: inherit;
    max-height: 35px;
}
.appilix_footer .footer_row .column {
    flex: 0 0 auto;
    width: 16.98%;
    padding: 0 12px;
}
.appilix_footer .footer_row .footer_links {
    margin-bottom: 40px;
}
.appilix_footer .footer_row .footer_links h6 {
    line-height: 1;
    margin-bottom: 25px;
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 500;
    letter-spacing: -0.75px;
}
.appilix_footer .footer_row .footer_links li {
    width: auto !important;
    display: block !important;
    vertical-align: top;
    clear: none !important;
    margin: 0;
    padding: 0;
}
.appilix_footer .footer_row .footer_links li a {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.6666;
    font-weight: 400;
}
.appilix_footer .footer_row .footer_links li a {
    color: #BAB9BE;
}
.appilix_footer .footer_row .footer_links .footer_socials {
    color: #D3D3D3;
    opacity: 1;
    margin: 0;
    display: inline-block;
}
.appilix_footer .footer_row .footer_links .footer_socials li {
    float: left;
    width: auto !important;
    display: inline-block !important;
    vertical-align: top;
    clear: none !important;
    margin: 0;
    padding: 0;
}
.appilix_footer .footer_row .footer_links .footer_socials li a {
    margin-right: 16px;
    display: block;
}
.appilix_footer .footer_row .footer_links .footer_socials li a i {
    font-size: 25px;
    color: #acacae;
}
.appilix_footer .footer_row .footer_links .footer_socials li a .social_icon{
    height: 25px;
    width: 25px;
    display: inline-block;
}
.appilix_footer .footer_row .footer_links .footer_socials li a .facebook_icon {
    background: url("../images/theme/appilix_facebook_icon.svg") no-repeat center;
}
.appilix_footer .footer_row .footer_links .footer_socials li a .linkedin_icon {
    background: url("../images/theme/appilix_linkedin_icon.svg") no-repeat center;
}
.appilix_footer .footer_row .footer_links .footer_socials li a .youtube_icon {
    background: url("../images/theme/appilix_youtube_icon.svg") no-repeat center;
}
.appilix_footer .bottom_footer {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
}
.appilix_footer .bottom_footer .footer_copyright p {
    font-size: 17px;
    margin-bottom: 0;
    color: #BAB9BE;
}
.appilix_footer .bottom_footer .bottom_footer_list {
    color: #BAB9BE;
    opacity: 1;
    text-align: right;
}
.appilix_footer .bottom_footer .bottom_footer_list .last_li {
    width: auto !important;
    display: inline-block !important;
    vertical-align: top;
    clear: none !important;
    padding-left: 10px;
}
.appilix_footer .bottom_footer .bottom_footer_list .last_li a {
    display: inline-block;
    float: left;
    margin-bottom: 0;
    font-size: 17px;
}
.appilix_footer .bottom_footer .bottom_footer_list .last_li a {
    color: #BAB9BE;
}


@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_footer .footer_row{
        flex-wrap: wrap;
    }
    .appilix_footer .footer_row .footer_info {
        flex: 0 0 100%;
        margin-bottom: 50px;
    }
    .appilix_footer .footer_links .h6-xl{
        font-size: 18px;
    }
    .appilix_footer .footer_links .foo-links li p{
        font-size: 17px;
    }

    .appilix_footer .footer_row .fst_col{
        margin-left: 0;
    }
    .appilix_footer .footer_row .column {
        width: 25%;
        padding: 0;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_footer .footer_links .h6{
        font-size: 18px;
    }
    .appilix_footer .bottom_footer .bottom_footer_list .first_li p,
    .appilix_footer .bottom_footer .bottom_footer_list .last_li p{
        font-size: 17px;
    }
    .appilix_footer .bottom_footer .bottom_footer_list{
        color:rgb(108, 117, 125);
        opacity: 1;
        text-align: left;
    }
    .appilix_footer .bottom_footer{
        flex-direction: column;
    }
    .appilix_footer .bottom_footer .footer_copyright{
        order: 2;
        margin: 5px 0 0 0;
    }
    .appilix_footer .bottom_footer .bottom_footer_list .last_li{
        padding-left: 0;
    }
    .appilix_footer .footer_row .column {
        width: 35%;
        padding: 0;
    }

}

/* For Small Mobile View */
@media screen and (max-width: 576px){
    .appilix_footer .footer_row{
        flex-direction: column;
    }
    .appilix_footer .footer_links .h6-xl{
        font-size: 17px;
        margin-bottom: 20px;
    }
    .appilix_footer .footer_links .foo-links li a{
        font-size: 16px;
    }
    .appilix_footer .bottom_footer .footer_copyright p{
        font-size: 16px;
    }
    .appilix_footer .bottom_footer .bottom_footer_list .first_li a,
    .appilix_footer .bottom_footer .bottom_footer_list .last_li a{
        font-size: 16px;
    }
    .appilix_footer .footer_row .column {
        width: 35%;
        padding: 0;
    }
}



/* ================================*/
/* Feature Hero Section*/
/* ================================*/


.appilix_feature_hero{

}
.appilix_feature_hero .feature_elements{
    margin-top: 110px;
    display: flex;
    gap: 15px;
}
.appilix_feature_hero .feature_elements .elements{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.appilix_feature_hero .feature_elements .feature_card {
    position: relative;
    flex: 1;
    color: #FFFFFFD6;
    border-radius: 25px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background: #1A0A4C;
}
.appilix_feature_hero .feature_elements .feature_card .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}
.appilix_feature_hero .feature_elements .feature_card .content {
    z-index: 1;
}
.appilix_feature_hero .feature_elements .feature_card .bg.bg_1 {
    background: url('../images/theme/appilix_feature_bg_content_sync.svg') no-repeat;
    background-size: 211px;
    background-position-y: calc(100% + 60px);
    background-position-x: calc(100% + 80px);
}
.appilix_feature_hero .feature_elements .feature_card .bg.bg_2 {
    background: url('../images/theme/appilix_feature_bg_resource_cache.svg') no-repeat;
    background-size: 211px;
    background-position-y: calc(100% + 70px);
    background-position-x: calc(100% + 100px);
}
.appilix_feature_hero .feature_elements .feature_card .bg.bg_3 {
    background: url('../images/theme/appilix_feature_bg_push_notification.svg') no-repeat;
    background-size: 279px;
    background-position-y: calc(100% + 70px);
    background-position-x: calc(100% + 100px);
}
.appilix_feature_hero .feature_elements .feature_card .bg.bg_4 {
    background: url('../images/theme/appilix_feature_bg_revenue.svg') no-repeat;
    background-size: 291px;
    background-position-y: calc(100% + 0px);
    background-position-x: calc(100% + 120px);
}
.appilix_feature_hero .feature_elements .feature_card .bg.bg_5 {
    background: url('../images/theme/appilix_feature_bg_file_upload_download.svg') no-repeat;
    background-size: 211px;
    background-position-y: calc(100% + 70px);
    background-position-x: calc(100% + 100px);
}
.appilix_feature_hero .feature_elements .feature_card .bg.bg_6 {
    background: url('../images/theme/appilix_feature_bg_push_hardware_access.svg') no-repeat;
    background-size: 211px;
    background-position-y: calc(100% + 70px);
    background-position-x: calc(100% + 100px);
}
.appilix_feature_hero .feature_elements .feature_card .card_top{
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.appilix_feature_hero .feature_elements .feature_card .card_top .mod_name{
    font-size: 16px;
    font-weight: 500;
}
.appilix_feature_hero .feature_elements .feature_card .card_top .icon{
    /*background: url("../images/appilix_feature_bell_icon.svg") no-repeat center;
    max-width: 65px;
    min-width: 65px;
    max-height: 65px;
    min-height: 65px;
    display: inline-block;*/
}
.appilix_feature_hero .feature_elements .feature_card h3{
    margin: 50px 0 0 0;
    font-family: var(--heading_font);
    letter-spacing: 1px;
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
}
.appilix_feature_hero .feature_elements .feature_card p{
    margin: 12px 0 0 0;
    font-size: 16px;
    font-weight: 300;
}
.appilix_feature_hero .feature_elements .feature_card.big_card{
    flex: 0 0 100%;
}
.appilix_feature_hero .feature_elements .feature_card.big_card .card_top .mod_name{
    font-size: 18px;
}
.appilix_feature_hero .feature_elements .feature_card.big_card .card_top .icon{
    width: 75px;
    height: 75px;
}
.appilix_feature_hero .feature_elements .feature_card.big_card h3{
    margin: 90px 0 0 0;
    font-size: 26px;
}
.appilix_feature_hero .feature_elements .feature_card.big_card p{
    font-size: 18px;
}

@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_feature_hero .feature_elements{
        margin-top: 75px;
    }
    .appilix_feature_hero .feature_elements .feature_card {
        flex: 0 0 100%;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_feature_hero .feature_elements{
        margin-top: 55px;
        gap: 8px;
    }
    .appilix_feature_hero .feature_elements .elements{
        gap: 8px;
    }
    .appilix_feature_hero .feature_elements .feature_card .card_top .mod_name{
        font-size: 14px;
    }
    .appilix_feature_hero .feature_elements .feature_card .card_top .icon{
        width: 45px;
        height: 45px;
    }
    .appilix_feature_hero .feature_elements .feature_card h3{
        font-size: 20px;
    }
    .appilix_feature_hero .feature_elements .feature_card p{
        margin: 10px 0 0 0;
        font-size: 14px;
    }
    .appilix_feature_hero .feature_elements .feature_card.big_card .card_top .mod_name{
        font-size: 16px;
    }
    .appilix_feature_hero .feature_elements .feature_card.big_card .card_top .icon{
        width: 55px;
        height: 55px;
    }
    .appilix_feature_hero .feature_elements .feature_card.big_card h3{
        font-size: 22px;
    }
    .appilix_feature_hero .feature_elements .feature_card.big_card p{
        font-size: 16px;
    }
}

/* For Small Mobile View */
@media screen and (max-width: 576px){
    .appilix_feature_hero .feature_elements{
        flex-direction: column;
        align-items: center;
    }
    .appilix_feature_hero .feature_elements .elements{
        gap: 8px;
    }
    .appilix_feature_hero .feature_elements .feature_card.big_card h3{
        margin: 50px 0 0 0;
    }
    .appilix_feature_hero .feature_elements .feature_card.big_card .card_top .icon{
        width: 45px;
        height: 45px;
    }
    .appilix_feature_hero .feature_elements .feature_card.big_card h3{
        font-size: 20px;
    }
    .appilix_feature_hero .feature_elements .feature_card.big_card p{
        font-size: 14px;
    }
}



/* ================================*/
/* Details 01 Section*/
/* ================================*/

.appilix_details_1{

}
.appilix_details_1 .details_elements{
    margin: 90px 0 0 0;
    display: flex;
    align-items: normal;
    gap: 100px;
}
.appilix_details_1 .details_elements .details_img{
    flex: 1;
}
.appilix_details_1 .details_elements .details_img img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}
.appilix_details_1 .details_elements .details_text{
    flex: 1;
}
.appilix_details_1 .details_elements .details_text .point{
    display: inline-block;
    border: #E4E7EC 1px solid;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 500;
}
.appilix_details_1 .details_elements .details_text p{
    font-size: 16px;
    margin: 20px 0 0 0;
}
.appilix_details_1 .details_elements .details_text p{
    font-size: 18px;
    margin: 20px 0 0 0;
}
.appilix_details_1 .details_elements .details_text .key_points{
    margin: 20px 0 0 5px;
}
.appilix_details_1 .details_elements .details_text .key_points li{
    margin: 10px 0 0 0;
    position: relative;
    font-weight: 600;
    font-size: 18px;
    padding: 6px 0 6px 40px;
}
.appilix_details_1 .details_elements .details_text .key_points li:before{
    content: " ";
    display: block;
    border: solid 11px #1A0A4C;
    border-radius: 50%;
    height: 0;
    width: 0;
    position: absolute;
    left: 8px;
    top: 7px;
}
.appilix_details_1 .details_elements .details_text .key_points li:after{
    content: " ";
    display: block;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    position: absolute;
    left: 15px;
    top:10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.appilix_details_1 .details_elements .details_text a{
    background-color: #EDFF6C;
    margin: 32px 0 0 0;
    padding: 16px 32px;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    border-radius: 100px;
}


/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_details_1 .details_elements{
        margin: 75px 0 0 0;
        flex-direction: column;
        gap: 50px;
    }
    .appilix_details_1 .details_elements .details_img{
        margin: 0 auto;
    }
    .appilix_details_1 .details_elements .details_text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .appilix_details_1 .details_elements .details_text p{
        text-align: center;
    }
    .appilix_details_1 .details_elements .details_text p{
        font-size: 18px;
        margin: 20px 0 0 0;
    }
    .appilix_details_1 .details_elements .details_text .key_points{
        display: block;
        width: 100%;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){

}

/* For Small Mobile View */
@media screen and (max-width: 576px){

}







/* ================================*/
/* Details 02 Section*/
/* ================================*/

.appilix_details_2{

}
.appilix_details_2 .st_2_elements{
    display: flex;
    gap: 50px;
}
.appilix_details_2 .st_2_elements .details {
    flex: 1;
}
.appilix_details_2 .st_2_elements .details .st_cards {
    margin: 50px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 40px;
}
.appilix_details_2 .st_2_elements .details .st_cards .card{
    flex: calc(50% - 20px);
}
.appilix_details_2 .st_2_elements .details .st_cards .card .icon{
    width: 46px;
    height: 46px;
}
.appilix_details_2 .st_2_elements .details .st_cards .card .icon.i_1{
    background: url("../images/theme/appilix_details_2_icon_1.svg") no-repeat center;
}
.appilix_details_2 .st_2_elements .details .st_cards .card .icon.i_2{
    background: url("../images/theme/appilix_details_2_icon_2.svg") no-repeat center;
}
.appilix_details_2 .st_2_elements .details .st_cards .card .icon.i_3{
    background: url("../images/theme/appilix_details_2_icon_3.svg") no-repeat center;
}
.appilix_details_2 .st_2_elements .details .st_cards .card .icon.i_4{
    background: url("../images/theme/appilix_details_2_icon_4.svg") no-repeat center;
}
.appilix_details_2 .st_2_elements .details .st_cards .card h3{
    margin: 13px 0 0 0;
    font-size: 18px;
    font-weight: 600;
}
.appilix_details_2 .st_2_elements .details .st_cards .card p{
    margin: 8px 0 0 0;
    font-size: 14px;
}
.appilix_details_2 .st_2_elements .sec_image{
    flex: 1;
}
.appilix_details_2 .st_2_elements .sec_image img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_details_2 .st_2_elements{
        gap: 50px;
        flex-direction: column;
    }
    .appilix_details_2 .st_2_elements .details .st_cards .card{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .appilix_details_2 .st_2_elements .details .st_cards .card h3{
        text-align: center;
    }
    .appilix_details_2 .st_2_elements .details .st_cards .card p{
        text-align: center;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){

}

/* For Small Mobile View */
@media screen and (max-width: 576px){
    .appilix_details_2 .st_2_elements .details .st_cards {
        flex-direction: column;
    }
}



/* ================================*/
/* Pricing Comparison Section*/
/* ================================*/

.appilix_comparison{

}
.appilix_comparison .compare_table{
    width: 100%;
}
.appilix_comparison .compare_table .table_item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    border-bottom: 1px solid #E4E7EC;
    padding: 0 30px 20px 30px;
    margin: 20px 0 0 0;
}
.appilix_comparison .compare_table .table_item:last-child{
    border-bottom: none;
}
.appilix_comparison .compare_table .table_headline{
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    font-family: var(--heading_font);
}
.appilix_comparison .compare_table .table_headline div:first-child{
    flex: 2;
}
.appilix_comparison .compare_table .table_headline div:not(:first-child){
    flex: 1;
    text-align: center;
}
.appilix_comparison .compare_table .table_item p:first-child{
    flex: 2;
}
.appilix_comparison .compare_table .table_item p:not(:first-child){
    flex: 1;
    text-align: center;
}
.appilix_comparison .compare_table .table_item span{
    display: none;
}

/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){

}

/* For Mobile View */
@media screen  and (max-width: 768px){

}

/* For Small Mobile View */
@media screen and (max-width: 576px){
    .appilix_comparison .compare_table .table_item{
        display: block;
        font-size: 18px;
        border-bottom: 1px solid #E4E7EC;
        padding: 0 30px 20px 30px;
        margin: 20px 0 0 0;
    }
    .appilix_comparison .compare_table .table_headline{
        display: none;
    }
    .appilix_comparison .compare_table .table_item p:first-child{
        font-weight: 600;
        margin: 0 0 10px 0;
    }
    .appilix_comparison .compare_table .table_item p:not(:first-child){
        display: flex;
        justify-content: space-between;
        font-size: 14px;
    }
    .appilix_comparison .compare_table .table_item span{
        display: block;
    }
}



/* ================================*/
/* Pricing Strength 01 Section*/
/* ================================*/


.appilix_strength_1{
    background-color: var(--dark_section_background_color);
}
.appilix_strength_1 .strength_elements{
    display: flex;
    gap: 100px;
    align-items: flex-start;
}
.appilix_strength_1 .strength_elements .appilix_section_header{
    flex: 1;
    position: sticky;
    top: 160px;
}
.appilix_strength_1 .strength_elements .appilix_section_header h2{
    color: #ffffff;
}
.appilix_strength_1 .strength_elements .appilix_section_header p{
    color: #FFFFFFD6;
}

.appilix_strength_1 .strength_elements .appilix_section_header .get_start_btn{
    background-color: #EDFF6C;
    margin: 32px 0;
    padding: 16px 32px;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
    display: block;
    max-width: 220px;
    text-align: center;
    border-radius: 100px;
}
.appilix_strength_1 .strength_elements .strength_cards{
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.appilix_strength_1 .strength_elements .strength_cards .s_card{
    position: sticky;
    top: 160px;
    background-color: #3d395a;
    padding: 50px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
}
.appilix_strength_1 .strength_elements .strength_cards .s_card.card_1{
    z-index: 1;
}
.appilix_strength_1 .strength_elements .strength_cards .s_card.card_2{
    z-index: 2;
    background-color: #3D5272;
}
.appilix_strength_1 .strength_elements .strength_cards .s_card.card_3{
    z-index: 3;
}
.appilix_strength_1 .strength_elements .strength_cards .s_card .card_icon{
    width: 65px;
    height: 65px;
    min-width: 65px;
    min-height: 65px;
}
.appilix_strength_1 .strength_elements .strength_cards .s_card .card_icon.i_1{
    background: url("../images/theme/appilix_strength_1_icon_1.svg")no-repeat center;
}
.appilix_strength_1 .strength_elements .strength_cards .s_card .card_icon.i_2{
    background: url("../images/theme/appilix_strength_1_icon_2.svg")no-repeat center;
}
.appilix_strength_1 .strength_elements .strength_cards .s_card .card_icon.i_3{
    background: url("../images/theme/appilix_strength_1_icon_3.svg")no-repeat center;
}
.appilix_strength_1 .strength_elements .strength_cards .s_card .card_details h3{
    font-size: 24px;
    color: #ffffff;
}
.appilix_strength_1 .strength_elements .strength_cards .s_card .card_details p{
    margin: 20px 0 0 0;
    color: #E4E7EC;
    font-size: 16px;
}
.appilix_strength_1 .strength_elements .strength_cards .s_card .card_details a{
    margin: 30px 0 0 0;
    font-size: 16px;
    display: block;
    font-weight: 800;
    background: url("../images/theme/appilix_strength_1_arrow.svg") no-repeat;
    background-position-x: 90px;
    color: #FFFFFF;
}

/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_strength_1 .strength_elements{
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    .appilix_strength_1 .strength_elements .appilix_section_header{
        position: unset;
        top: unset;
    }
    .appilix_strength_1 .strength_elements .appilix_section_header .get_start_btn{
        margin: 32px auto;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_strength_1 .strength_elements .strength_cards{
        flex: 1.5;
    }
    .appilix_strength_1 .strength_elements .strength_cards .s_card .card_details p{
        margin: 20px 0 0 0;
        font-size: 16px;
    }
}

/* For Small Mobile View */
@media screen and (max-width: 576px){
    .appilix_strength_1 .strength_elements .strength_cards .s_card{
        flex-direction: column;
    }
}



/* ================================*/
/* Pricing Table 02 Section*/
/* ================================*/

.appilix_pricing_table_2{

}
.appilix_pricing_table_2 .price_table{
    margin: 90px 0 0 0;
    display: flex;
    gap: 30px;
}
.appilix_pricing_table_2 .price_table .feature_check{
    flex: 1;
    border: #E4E7EC 1px solid;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.appilix_pricing_table_2 .price_table .feature_check h3{
    font-size: 22px;
    font-weight: 600;
}
.appilix_pricing_table_2 .price_table .feature_check .purchase{
    cursor: pointer;
    border-radius: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    background-color: #2B117F;
    display: inline-block;
    margin: 20px 0 0 0;
    color: #FFFFFF;
    text-align: center;
}
.appilix_pricing_table_2 .price_table .feature_check .feature_list{
    width: 100%;
    margin: 20px 0 0 0;
}
.appilix_pricing_table_2 .price_table .feature_check .feature_list li:not(:first-child){
    margin: 10px 0 0 0;
}
.appilix_pricing_table_2 .price_table .feature_check .feature_list li{
    padding: 0 18px 0 0;
    font-size: 16px;
    background: url("../images/theme/appilix_pricing_feature_check.svg")no-repeat center right;
    background-size: 16px;
}
.appilix_pricing_table_2 .price_table .f_2{
    display: none;
}
.appilix_pricing_table_2 .price_table .f_3{
    display: none;
}
.appilix_pricing_table_2 .price_table .cards{
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.appilix_pricing_table_2 .price_table .cards .card{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background-color: #E9E6F2;
    border-radius: 16px;
    cursor: pointer;
}
.appilix_pricing_table_2 .price_table .cards .card.background_1{
    background-color: #A39DB7;
    color: #ffffff;
}
.appilix_pricing_table_2 .price_table .cards .card.background_2{
    background-color: #E9E6F2;
    color: var(--body_font_color);
}
.appilix_pricing_table_2 .price_table .cards .card .card_detail h3{
    font-size: 20px;
    font-weight: 600;
}
.appilix_pricing_table_2 .price_table .cards .card .card_detail p{
    font-size: 14px;
    font-weight: 400;
    margin: 8px 0 0 0;
}
.appilix_pricing_table_2 .price_table .cards .card h3{
    font-size: 32px;
    font-weight: 600;
}
.appilix_pricing_table_2 .price_table .cards .card h3 span{
    font-size: 14px;
    font-weight: 400;
}
.appilix_pricing_table_2 .price_table .cards .card.active{
    background-color: #1A0A4C;
    color: #ffffff;
}

@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_pricing_table_2 .price_table{
        margin: 60px 0 0 0;
    }
    .appilix_pricing_table_2 .price_table .cards{
        flex: 1.2;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_pricing_table_2 .price_table{
        margin: 50px 0 0 0;
        flex-direction: column;
    }
    .appilix_pricing_table_2 .price_table .feature_check{
        order: 2;
    }
    .appilix_pricing_table_2 .price_table .cards .card .card_detail h3{
        font-size: 18px;
    }
    .appilix_pricing_table_2 .price_table .cards .card h3{
        font-size: 28px;
    }
    .appilix_pricing_table_2 .price_table .cards .card h3 span{
        font-size: 12px;
    }

}

/* For Small Mobile View */
@media screen and (max-width: 576px){

}


/* ================================*/
/* FAQ Section*/
/* ================================*/


.appilix_faq{

}
.appilix_faq .faq_qus_ans{
    max-width: 768px;
    margin: 64px auto;
}
.appilix_faq .faq_qus_ans .faq-item {
    border-bottom: 1px solid #E4E7EC;
    padding: 32px 0;
}
.appilix_faq .faq_qus_ans .faq-item:last-child {
    border-bottom: none;
}
.appilix_faq .qus {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}
.appilix_faq .qus h5{
    font-size: 18px;
    font-weight: 500;
    color: #101828;
}
.appilix_faq .faq-item .ans{
    display: none;
}
.appilix_faq .faq-item.active .ans{
    display: block;
}
.appilix_faq .ans p{
    font-size: 16px;
    max-width: 720px;
}
.appilix_faq .ans a{
    color: #6941C6;
    text-decoration: underline dotted;
}
.appilix_faq .faq-item .qus .toggle_btn{
    background: url("../images/theme/appilix_faq_open_icon.svg") no-repeat center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    cursor: pointer;
}
.appilix_faq .faq-item.active .qus .toggle_btn{
    background: url("../images/theme/appilix_faq_close_icon.svg") no-repeat center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    cursor: pointer;
}

.appilix_faq .important_note{
    margin: 60px 0 0 0;
}
.appilix_faq .important_note p{
    text-align: center;
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
}
.appilix_faq .important_note p a{
    color: #6941C6;
    text-decoration: underline;
}
.appilix_faq .important_note p a.with_arrow{
    background: url("../images/theme/appilix_arrow_right_purple.svg") no-repeat center right;
    background-position-y: 3px;
    background-size: 18px;
    padding: 0 22px 0 0;
}

/* Appilix FAQ For Large Screen View */
@media screen and (max-width: 1280px) {

}

/* Appilix FAQ For Tablet View */
@media screen and (max-width: 992px){
    .appilix_faq .faq_qus_ans{
        margin: 48px auto;
    }
    .appilix_faq .ans p{
        max-width: 95%;
    }
}

/* Appilix FAQ For Mobile View */
@media screen and (max-width: 768px){
}

/*  Appilix FAQ For Small Mobile View */
@media screen and (max-width: 576px){
}







/* ================================*/
/* Contact Section*/
/* ================================*/

.appilix_contact_section{

}
.appilix_contact_section .contact_elements{
    margin: 110px 0 0 0;
    display: flex;
    gap: 30px;
}
.appilix_contact_section .contact_elements .other_options{
    flex: 1;
}
.appilix_contact_section .contact_elements .other_options .option{
    background-color: #1A0A4C;
    padding: 30px;
    border-radius: 25px ;
    color: #E4E7EC;
}
.appilix_contact_section .contact_elements .other_options .option .icon{
    height: 66px;
    width: 66px;
}
.appilix_contact_section .contact_elements .other_options .option.phone_support .icon{
    background: url("../images/theme/appilix_contact_customer_support_logo.svg") no-repeat center;
}
.appilix_contact_section .contact_elements .other_options .option.chat_support .icon{
    background: url("../images/theme/appilix_contact_knowledge_base_icon.svg") no-repeat center;
}
.appilix_contact_section .contact_elements .other_options .option h2{
    color: #ffffff;
    margin: 30px 0 0 0;
    font-family: var(--heading_font);
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 22px;
}
.appilix_contact_section .contact_elements .other_options .option p{
    margin: 20px 0 0 0;
    font-size: 18px;
}
.appilix_contact_section .contact_elements .other_options .option .button{
    background-color: #EDFF6C;
    color: #2f3a4bde;
    display: inline-block;
    margin: 30px 0 0 0;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 35px;
    text-align: center;
}
.appilix_contact_section .contact_elements .other_options .option.chat_support{
    background-color: #E9E6F2;
    margin: 30px 0 0 0;
}
.appilix_contact_section .contact_elements .other_options .option.chat_support h2{
    color: #2f3a4bde;
}
.appilix_contact_section .contact_elements .other_options .option.chat_support p{
    color: var(--body_font_color);
}
.appilix_contact_section .contact_elements .other_options .option.chat_support .knowledge_base_btn{
    background-color: #1A0A4C;
    color: #ffffff;
}
.appilix_contact_section .contact_elements .contact_form_site{
    flex: 1.5;
    background-color: #f4f5fa;
    border-radius: 25px;
    padding: 50px 30px;
}
.appilix_contact_section .contact_elements .contact_form_site h2{
    font-family: var(--heading_font);
    font-size: 34px;
    font-weight: 400;
    color: #1a0a4c;
    letter-spacing: 1px;
}
.appilix_contact_section .contact_elements .contact_form_site .contact_form{
    margin: 30px 0 0 0;
}
.appilix_contact_section .contact_elements .contact_form_site .element{
    margin: 20px 0 0 0;
}
.appilix_contact_section .contact_elements .contact_form_site .label_title{
    display: block;
    font-size: 16px;
    font-weight: 500;
}
.appilix_contact_section .contact_elements .contact_form_site .input_field,
.appilix_contact_section .contact_elements .contact_form_site .select_field{
    background: #ffffff;
    display: block;
    font-size: 14px;
    width: 100%;
    margin: 8px 0 0 0;
    padding: 15px 20px;
    border-radius: 6px;
    outline: none;
    border: #E4E7EC 1px solid;
}
.appilix_contact_section .contact_elements .contact_form_site .select_field{
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}
.appilix_contact_section .contact_elements .contact_form_site .file_picker{
    margin: 8px 0 0 0;
    position: relative;
    display: flex;
}
.appilix_contact_section .contact_elements .contact_form_site .file_picker .input_file{
    position: absolute;
    z-index: 2;
    border: 0;
    margin: 0;
    opacity: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    cursor: pointer;
}
.appilix_contact_section .contact_elements .contact_form_site .file_picker .input_file_display{
    flex: 1;
    display: block;
    font-size: 14px;
    width: 100%;
    padding: 15px 20px;
    border-radius: 6px 0 0 6px;
    outline: none;
    border: #E4E7EC 1px solid;
    border-right: 0;
    background-color: #ffffff;
}
.appilix_contact_section .contact_elements .contact_form_site .file_picker .btn{
    color: #333333;
    font-size: 14px;
    padding: 15px 20px;
    border-radius: 0 6px 6px 0;
    outline: none;
    border: #E4E7EC 1px solid;
    font-weight: 600;
    background-color: #ffffff;
}
.appilix_contact_section .contact_elements .contact_form_site .input_field::placeholder{
    color: #b3b3b3;
}
.appilix_contact_section .contact_elements .contact_form_site .input_field:focus{
    border: #1A0A4C 1px solid;
}
.appilix_contact_section .contact_elements .contact_form_site .submit_button{
    cursor: pointer;
    background-color: #1A0A4C;
    color: #ffffff;
    display: inline-block;
    margin: 30px 0 0 0;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 35px;
    outline: none;
    border: none;
}

/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_contact_section .contact_elements{
        margin-top: 75px;
        flex-direction: column;
    }
    .appilix_contact_section .contact_elements .other_options{
        display: flex;
        gap: 30px;
        order: 2;
    }
    .appilix_contact_section .contact_elements .other_options .option{
        flex: 1;
    }
    .appilix_contact_section .contact_elements .other_options .option.chat_support {
        margin: 0;
    }

    .appilix_contact_section .contact_elements .contact_form_site{
        flex: 1 0 100%;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_contact_section .contact_elements{
        margin-top: 55px;
        gap: 8px;
    }
    .appilix_contact_section .contact_elements .other_options{
        gap: 8px;
    }
    .appilix_contact_section .contact_elements .other_options .option h2{
        font-size: 20px;
    }
    .appilix_contact_section .contact_elements .other_options .option p{
        font-size: 16px;
    }
    .appilix_contact_section .contact_elements .other_options .option a{
        font-size: 16px;
    }
    .appilix_contact_section .contact_elements .contact_form_site h2{
        font-size: 30px;
    }
}

/* For Small Mobile View */
@media screen and (max-width: 576px){
    .appilix_contact_section .contact_elements .other_options{
        flex-direction: column;
    }
}




/* ================================*/
/* Contact Highlights Section*/
/* ================================*/


.appilix_contact_highlights{
    background-color: #F9FAFB;
}
.appilix_contact_highlights .features_cards {
    display: flex;
    gap: 64px;
}
.appilix_contact_highlights .features_cards .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.appilix_contact_highlights .features_cards .card .icon{
    height: 48px;
    width: 48px;
}
.appilix_contact_highlights .features_cards .card .icon.i_1{
    /*background: url("../images/appilix_feature_icon_1.svg") no-repeat center transparent;*/
}
.appilix_contact_highlights .features_cards .card .icon.i_2{
    /*background: url("../images/appilix_feature_icon_1.svg") no-repeat center transparent;*/
}
.appilix_contact_highlights .features_cards .card .icon.i_3{
    /*background: url("../images/appilix_feature_icon_1.svg") no-repeat center transparent;*/
}
.appilix_contact_highlights .features_cards .card .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.appilix_contact_highlights .features_cards .card .text h3 {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    line-height: 30px;
    font-family: var(--heading_font);
}
.appilix_contact_highlights .features_cards .card .text p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_contact_highlights .features_cards {
        flex-direction: column;
    }
    .appilix_contact_highlights .features_cards .card {
        gap: 16px;
    }
    .appilix_contact_highlights .features_cards .card .text h3 {
        font-size: 18px;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){

}

/* For Small Mobile View */
@media screen and (max-width: 576px){

}




/* ================================*/
/* Privacy Policy Section*/
/* ================================*/

.appilix_privacy_policy {

}
.appilix_privacy_policy .appilix_policy_details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 720px;
    margin: 96px auto 0 auto;
}
.appilix_privacy_policy .appilix_policy_details h2{
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #101828;
}
.appilix_privacy_policy .appilix_policy_details p{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #475467;
}
.appilix_privacy_policy .appilix_policy_details p a{
    color: #6941C6;
    font-weight: 500;
}

.appilix_privacy_policy .appilix_policy_details ul{
    list-style: none;
}

.appilix_privacy_policy .appilix_policy_details ul li{
    list-style: disc;
    color: #475467;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    counter-increment: num;
    margin-left: 15px;
}


/* Appilix Privacy & Policy page For Large Screen View */
@media screen and (max-width: 1280px) {

}

/* Appilix Privacy & Policy page For Tablet View */
@media screen and (max-width: 992px){
    .appilix_privacy_policy .appilix_policy_details {
        margin: 48px auto 0 auto;
    }
    .appilix_privacy_policy .appilix_policy_details h2{
        font-size: 28px;
        line-height: 36px;
    }
    .appilix_privacy_policy .appilix_policy_details p{
        font-size: 16px;
        line-height: 28px;
    }
    .appilix_privacy_policy .appilix_policy_details ol{
        list-style: none;
        counter-reset: num;
    }
    .appilix_privacy_policy .appilix_policy_details ol li{
        color: #475467;
        font-size: 18px;
        line-height: 28px;
        font-weight: 400;
        counter-increment: num;
        margin-left: 5px;
    }
    .appilix_privacy_policy .appilix_policy_details ol li::before {
        content: counter(num) ". ";
        margin-right: 5px;
    }
}

/* Appilix Privacy & Policy page For Mobile View */
@media screen and (max-width: 768px){

}

/*  Appilix Privacy & Policy page For Small Mobile View */
@media screen and (max-width: 576px){

}





/* ================================*/
/* Example Page Section*/
/* ================================*/


.appilix_example_apps{

}
.appilix_example_apps .features_integrator_cards{
    padding: 64px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 32px;
    grid-row-gap: 64px;
}
.appilix_example_apps .features_integrator_cards .card{
    margin-top: 24px;
    background-color: #F9FAFB;
    padding: 52px 24px 32px 24px;
    border-radius: 16px;
}
.appilix_example_apps .features_integrator_cards .card .text{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.appilix_example_apps .features_integrator_cards .card h2{
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 8px;
    color: #111827;
}
.appilix_example_apps .features_integrator_cards .card p{
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.appilix_example_apps .features_integrator_cards .card .icon{
    width: 64px;
    height: 64px;
    background-color: #FFFFFF;
    padding: 4px;
    border-radius: 12px;
    border: #E4E7EC 1px solid;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin: -85px auto 25px auto;
}
.appilix_example_apps .features_integrator_cards .card .icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.appilix_example_apps .features_integrator_cards .card .view{
    margin: 20px 0 0 0;
    display: inline-block;
    text-align: center;
    background: url("../images/theme/appilix_example_hyperlink_arrow.svg") no-repeat center right;
    background-size: 16px;
    color: #6941C6;
    padding: 0 20px 0 0;
}



.appilix_example_apps .important_note{
    margin: 60px 0 0 0;
}
.appilix_example_apps .important_note p{
    text-align: center;
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
}
.appilix_example_apps .important_note p a{
    color: #6941C6;
    text-decoration: underline;
}
.appilix_example_apps .important_note p a.with_arrow{
    background: url("../images/theme/appilix_arrow_right_purple.svg") no-repeat center right;
    background-position-y: 3px;
    background-size: 18px;
    padding: 0 22px 0 0;
}


/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_example_apps .features_integrator_cards{
        margin: 48px 0 0 0;
        grid-template-columns: 1fr 1fr;
    }

}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_example_apps .features_integrator_sec_top{
        padding: 0 16px;
    }
    .appilix_example_apps .features_integrator_cards{
        padding: 48px 0 0 0;
    }
    .appilix_example_apps .features_integrator_cards{
        grid-template-columns: 1fr;
    }
    .appilix_example_apps .features_integrator_cards .card h2{
        font-size: 18px;
        line-height: 28px;
    }
}

/* For Small Mobile View */
@media screen and (max-width: 576px){

}





/* ================================*/
/* Changelog Section*/
/* ================================*/

.appilix_changelog{
}
.appilix_changelog .all_changes{
    margin: 60px auto 0 auto;
    max-width: 900px;
}
.appilix_changelog .log_record{
    display: flex;
    padding: 35px 0 0 0;
    margin: 35px 0 0 0;
    gap: 60px;
}
.appilix_changelog .log_record:not(:first-child){
    border-top: #E4E7EC 1px solid;
}

.appilix_changelog .log_record .record_date{
    flex: 30%;
}
.appilix_changelog .log_record .record_date h2{
    font-size: 20px;
    color: #1A0A4C;
    margin: 0;
}
.appilix_changelog .log_record .record_date p{
    font-size: 16px;
    color: #53515e;
    margin: 8px 0 0 0;
}
.appilix_changelog .log_record .changes{
    flex: 70%;
    width: 100%;
}
.appilix_changelog .log_record .changes .change_details{
    padding: 20px 0 20px 0;
}
.appilix_changelog .log_record .changes .change_details:first-child{
    padding: 0 0 20px 0 !important;
}
.appilix_changelog .log_record .changes .change_details:last-child{
    padding: 20px 0 0 0;
}
.appilix_changelog .log_record .changes .change_details h3{
    font-weight: 600;
    font-size: 18px;
    color: #1A0A4C;
    display: inline;
}
.appilix_changelog .log_record .changes .change_details p{
    margin: 7px 0 0 0;
}
.appilix_changelog .log_record .changes .change_details p a{
    color: #6941C6;
    font-weight: 500;
}
.appilix_changelog .log_record .changes .change_details:not(:first-child){
    border-top: #E4E7EC 1px solid;
}
.appilix_changelog .log_record .tag_blue{
    margin: 0 0 0 10px;
    font-size: 14px;
    font-weight: 400;
    color: #175CD3;
    border: #B2DDFF 1px solid;
    border-radius: 14px;
    padding: 2px 10px 2px 20px;
    position: relative;
    background-color: #EFF8FF;
    display: inline-block;
}
.appilix_changelog .log_record .tag_green{
    margin: 0 0 0 10px;
    font-size: 14px;
    font-weight: 400;
    color: #067647;
    border: #ABEFC6 1px solid;
    border-radius: 14px;
    padding: 2px 10px 2px 20px;
    position: relative;
    background-color: #ECFDF3;
    display: inline-block;
}
.appilix_changelog .log_record .tag_red{
    margin: 0 0 0 10px;
    font-size: 14px;
    font-weight: 400;
    color: #C11574;
    border: #FCCEEE 1px solid;
    border-radius: 14px;
    padding: 2px 10px 2px 20px;
    position: relative;
    background-color: #FDF2FA;
    display: inline-block;
}
.appilix_changelog .log_record .tag_blue::before{
    content: "";
    border-radius: 50%;
    width: 5px;
    height: 5px;
    background-color: #2E90FA;
    display: inline-block;
    position: absolute;
    left: 7px;
    top: 9px;
}
.appilix_changelog .log_record .tag_green::before{
    content: "";
    border-radius: 50%;
    width: 5px;
    height: 5px;
    background-color: #17B26A;
    display: inline-block;
    position: absolute;
    left: 7px;
    top: 9px;
}
.appilix_changelog .log_record .tag_red::before{
    content: "";
    border-radius: 50%;
    width: 5px;
    height: 5px;
    background-color: #EE46BC;
    display: inline-block;
    position: absolute;
    left: 7px;
    top: 9px;
}
.appilix_changelog .log_record .log_date{
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0 0 0;
    display: inline-block;
    padding: 0 0 0 24px ;
    background: url("../images/theme/appilix_changelog_date.svg") no-repeat;
    background-size: 16px;
}
 
/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){

}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_changelog .log_record{
        flex-direction: column;
        gap: 40px;
        padding: 19px 0 0 0;
        margin: 19px 0 0 0;
    }
    .appilix_changelog .log_record .record_date h2{
        text-align: center;
    }
    .appilix_changelog .log_record .record_date p{
        text-align: center;
    }
}

/* For Small Mobile View */
@media screen and (max-width: 576px){

}


/*====================
    Sales Notification
====================*/
.appilix_sales_notification{
    cursor: pointer;
    position: fixed;
    display: none;
    left: 20px;
    bottom: 20px;
    background-color: #ffffff;
    padding: 9px 25px 9px 9px;
    border-radius: 40px;
    box-shadow: 1px 1px 15px 2px rgb(0 0 0 / 15%);
    align-items: center;
    transition: 0.5s;
    z-index: 100;
}
.appilix_sales_notification .user_icon{
    display: block;
    width: 57px;
    height: 57px;
    background: url(../images/theme/sales_notification_user.svg) no-repeat center center;
}
.appilix_sales_notification .sale_details{
    margin-left: 10px;
}
.appilix_sales_notification h4{
    font-size: 14px;
    font-style: italic;
    color: #878686;
    font-weight: 400;
    margin: 0 0 3px 0;
}
.appilix_sales_notification .user_name, .appilix_sales_notification .user_location{
    font-size: 14px;
    color: #41495b;
    font-weight: 500;
    font-style: normal;
}
.appilix_sales_notification h5{
    font-size: 12px;
    color: #8993aa;
    font-weight: 400;
    margin: 0 0 3px 0;
}
.appilix_sales_notification .plan_title{
    font-size: 12px;
    color: #606677;
    font-weight: 400;
}
.appilix_sales_notification h6{
    font-size: 10px;
    color: #b0bbd7;
    font-weight: 400;
    margin: 0 0 3px 0;
}






/*=================================================================*/
/*Appilix Login Page*/
/*=================================================================*/

.appilix_login_page{
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
}
.appilix_login_page .left_side{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #E9E6F2;
    position: relative;
    overflow: hidden;
}
.appilix_login_page .left_side .appilix_logo img{
    width: 142px;
    height: auto;
    position: absolute;
    top: 30px;
    left: 30px;
}
.appilix_login_page .left_side .details{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 560px;
    padding: 20px;
}
.appilix_login_page .left_side .details h1{
    font-size: 30px;
    font-weight: 500;
    line-height: 38px;
    text-align: center;
    margin: 0;
}
.appilix_login_page .left_side .details img{
    margin: 32px 0 0 0;
    height: 64px;
    width: 64px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(1);
}
.appilix_login_page .left_side .details h2{
    margin: 16px 0 0 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
}
.appilix_login_page .left_side .details span{
    margin: 4px 0 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    color: #475467;
}
.appilix_login_page .left_side .details .stars{
    margin: 32px 0 0 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    color: #FDB022;
    letter-spacing: 4px;
}
.appilix_login_page .left_side h5{
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #475467;
}
.appilix_login_page .right_side{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 32px auto;
    max-width: 100%;
}





.appilix_login_page .right_side .login_form{
    max-width: 388px;
    width: 100%;
}
.appilix_login_page .right_side .login_form .appilix_logo{
    display: none;
    width: 150px;
    height: 41px;
}

.appilix_login_page .right_side .login_form h2{
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;
    margin: 0;
    color: #2B117F;
}
.appilix_login_page .right_side .login_form p{
    margin: 8px 0 0 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #475467;
}



.appilix_login_page .right_side .login_form .notification{
    display: block;
    font-size: 0.9rem;
    padding: 15px;
    border-radius: 5px;
    margin: 32px 0 0 0;
}
.appilix_login_page .right_side .login_form .notification.red{
    background: #f8d7da;
    color: #761c24;
    border: 1px solid #f5c6cb;
}
.appilix_login_page .right_side .login_form .notification.green{
    background-color:#d4edda;
    color:#155724;
    border:1px solid #c3e6cb
}


.appilix_login_page .right_side .login_form form{
    margin: 32px 0 0 0;
}
.appilix_login_page .right_side .login_form label{
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #344054;
    margin: 20px 0 0 0;
}
.appilix_login_page .right_side .login_form label:nth-child(1){
    margin: 0;
}
.appilix_login_page .right_side .login_form input[type="text"],
.appilix_login_page .right_side .login_form input[type="email"],
.appilix_login_page .right_side .login_form input[type="password"]{
    margin: 8px 0 0 0;
    display: block;
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: #D0D5DD 1px solid;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #667085;
}
.appilix_login_page .right_side .login_form .forgot_pass{
    display: block;
    text-align: right;
    margin: 20px 0 0 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #6941C6;
}
.appilix_login_page .right_side .login_form .sign_in_btn{
    margin: 20px 0 0 0;
    display: block;
    width: 100%;
    cursor: pointer;
    background: #2B117F;
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid #2B117F;
    box-shadow: 0 2px 0 #2B117F, 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 16px;
    font-size: 16px;
    line-height: 24px;
}
.appilix_login_page .right_side .login_form .with_google_btn{
    margin: 16px 0 0 0;
    display: block;
    width: 100%;
    border: #D0D5DD 1px solid;
    box-shadow: 0 1px 0 #D0D5DD, 0 3px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 16px 10px 56px;
    text-align: center;
    color: #344054;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    border-radius: 8px;
    background: url("../images/theme/appilix_google_sign_in_icon.svg") no-repeat;
    background-size: 24px;
    background-position-x: 28%;
    background-position-y: center;
}

.appilix_login_page .right_side .login_form .option_to_new_account{
    margin: 32px 0 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    display: block;
    text-align: center;
    color: #475467;
}
.appilix_login_page .right_side .login_form .option_to_new_account .sign_up{
    margin-left: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #6941C6;
}


/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_login_page .left_side{
        display: none;
    }
    .appilix_login_page .right_side .login_form .appilix_logo{
        display: block;
    }
    .appilix_login_page .right_side .login_form h2{
        margin: 24px 0 0 0;
    }
    .appilix_login_page .right_side .login_form{
        padding: 0 16px;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){

}

/* For Small Mobile View */
@media screen and (max-width: 576px){

}










/* ================================*/
/* Articles Page Section*/
/* ================================*/


.appilix_articles_page{

}
.appilix_articles_page .blog_posts{
    margin: 110px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 30px;
    row-gap: 80px;
}
.appilix_articles_page .blog_posts .blog_card{
    flex: 0 0 30%;
    border: 1px solid #061f251a;
    border-radius: 16px;
    padding: 20px 20px 32px 20px;
    background: rgba(241, 241, 241, 0.35);
    display: flex;
    flex-direction: column;
}
.appilix_articles_page .blog_posts .blog_card .card_head{
    position: relative;
    width: 100%;
    margin: 0;
}
.appilix_articles_page .blog_posts .blog_card .card_body{
    flex-grow: 1;
    margin: 12px 0 0 0;
}
.appilix_articles_page .blog_posts .blog_card .blog_card_items{
    width: 100%;
    margin: 0;
}
.appilix_articles_page .blog_posts .blog_card img {
    height: 246px;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.appilix_articles_page .blog_posts .blog_card .blog_category .tag{
    display: inline-block;
    margin: 24px 0 0 0;
    color: #1137bd;
    background-color: #f2f9ff;
    border-radius: 100px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.appilix_articles_page .blog_posts .blog_card .blog_category .tag.t_blue{
    color: #1d1d92;
    background-color: #1d1d9212;
}
.appilix_articles_page .blog_posts .blog_card .blog_category .tag.t_green{
    color: #2f8c0e;
    background-color: #2f8c0e12;
}
.appilix_articles_page .blog_posts .blog_card .blog_category .tag.t_red{
    color: #fe552e;
    background-color: #fe552e12;
}
.appilix_articles_page .blog_posts .blog_card h2{
    color: #111;
    margin: 8px 0 0 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}
.appilix_articles_page .blog_posts .blog_card p{
    color: #061f25cc;
    margin: 12px 0 0 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.appilix_articles_page .blog_posts .blog_card .card_footer{
    margin: 24px 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.appilix_articles_page .blog_posts .blog_card .card_footer .read_btn{
    display: inline-block;
    color: #111;
    font-size: 18px;
    font-weight: 500;
    padding: 0 20px 0 0;
    background: url("../images/theme/appilix_articles_read_more_icon.svg") no-repeat center right;
    background-size: 13px;
}
.appilix_articles_page .blog_posts .blog_card .post_date{
    display: inline-block;
    color: #686868;
    font-size: 14px;
    font-weight: 500;
}


/* For Large Screen */
@media screen and (max-width: 1280px) {

}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_articles_page .blog_posts{
        margin-top: 75px;
    }
    .appilix_articles_page .blog_posts .blog_card{
        flex: 0 0 45%;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_articles_page .blog_posts{
        margin-top: 55px;
        gap: 15px;
    }
}

/* For Small Mobile View */
@media screen and (max-width: 576px){
    .appilix_articles_page .blog_posts{
        flex-direction: column;
        align-items: center;
    }
}




/* ================================*/
/* Single Article Page Section*/
/* ================================*/


.appilix_single_article_page{

}
.appilix_single_article_page .appilix_article_hero{
    position: relative;
    height: 508px;
}
.appilix_single_article_page .appilix_article_hero::before{
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 508px;
    background: linear-gradient(to bottom,rgba(255,255,255,0) 0%,rgba(128,128,128,0) 50%,rgba(0,0,0,.50) 100%);
    pointer-events: none;
}

.appilix_single_article_page .appilix_article_hero img{
    object-fit: cover;
    width: 100%;
    min-height: 100%;
    position: absolute;
    max-height: 100%;
}
.appilix_single_article_page .appilix_article_hero .appilix_article_details{
    position: absolute;
    z-index: 2;
    width: 100%;
    max-width: 720px;
    bottom: 0;
    left: 0;
    padding: 40px;
    color: #ffffff;
}
.appilix_single_article_page .appilix_article_hero .blog_category .tag{
    display: inline-block;
    margin: 24px 0 0 0;
    color: #ffffff;
    background-color: #2B117F;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.appilix_single_article_page .appilix_article_hero h1{
    margin: 10px 0 0 0;
    font-family: var(--heading_font);
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ffffff;
}

.appilix_single_article_page .appilix_article_hero .post_date{
    margin: 10px 0 0 0;
    display: block;
    font-size: 14px;
    font-weight: 500;
}


.appilix_single_article_page .appilix_blog_container{
    margin: 110px 0 0 0;
    display: flex;
    align-items: stretch;
}
.appilix_single_article_page .appilix_blog_container .appilix_blog_social{
    position: sticky;
    top: 120px;
    height: fit-content;
}
.appilix_single_article_page .appilix_blog_container .appilix_blog_social span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.appilix_single_article_page .appilix_blog_container .appilix_blog_social a{
    margin: 12px auto 0 auto;
    display: flex;
    width: 42px;
    height: 42px;
    --shadow-color: rgba(var(--service-color-rgb, 0,0,0), 0.18);
    box-shadow: -1px -1px 2px 0px rgba(0, 0, 0, 0.05), 1px 3px 5px -1px var(--shadow-color);
    border-radius: 50%;
}
.appilix_single_article_page .appilix_blog_container .appilix_blog_social .icon{
    width: 20px;
    height: 20px;
    margin: auto auto;
    background-color: #101828;
}
.appilix_single_article_page .appilix_blog_container .appilix_blog_social .fb{
    mask: url("../images/theme/appilix_articles_facebook_share.svg") no-repeat center;
}
.appilix_single_article_page .appilix_blog_container .appilix_blog_social .in{
    mask: url("../images/theme/appilix_articles_linkedin_share.svg") no-repeat center;
}
.appilix_single_article_page .appilix_blog_container .appilix_blog_social .x{
    mask: url("../images/theme/appilix_articles_x_share.svg") no-repeat center;
}
.appilix_single_article_page .appilix_blog_container .appilix_blog_social .mail{
    mask: url("../images/theme/appilix_articles_email_share.svg") no-repeat center;
}
.appilix_single_article_page .appilix_blog_container .appilix_blog_social a:hover{
    background-color: #101828;
}
.appilix_single_article_page .appilix_blog_container .appilix_blog_social a:hover .icon{
    background-color: #ffffff;
}
.appilix_single_article_page .appilix_blog_container .appilix_blog_social .social:nth-child(2){
    margin: 27px auto 0 auto;
}
.appilix_single_article_page .appilix_blog_container .main_article{
    flex: 1;
    margin: 0 0 0 50px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.appilix_single_article_page .appilix_blog_container .main_article h2,
.appilix_single_article_page .appilix_blog_container .main_article h3,
.appilix_single_article_page .appilix_blog_container .main_article h4,
.appilix_single_article_page .appilix_blog_container .main_article h5,
.appilix_single_article_page .appilix_blog_container .main_article h6{
    letter-spacing: -0.3px;
    color: #000000;
    font-weight: 700;
}
.appilix_single_article_page .appilix_blog_container .main_article h2{
    font-size: 30px;
}
.appilix_single_article_page .appilix_blog_container .main_article h3{
    font-size: 24px;
}
.appilix_single_article_page .appilix_blog_container .main_article h3{
    font-size: 20px;
}
.appilix_single_article_page .appilix_blog_container .main_article p{
    margin: 26px 0 0 0;
}
.appilix_single_article_page .appilix_blog_container .main_article a{
    text-decoration: underline;
    color: #6941C6;
}
.appilix_single_article_page .appilix_blog_container .main_article p:nth-child(1){
    margin: 0;
}
.appilix_single_article_page .appilix_blog_container .widget_area{
    margin: 0 0 0 100px;
    width: 340px;
}
.appilix_single_article_page .appilix_blog_container .create_app_card{
    background-color: #F5F5F5;
    padding: 40px 40px;
    text-align: center;
    position: sticky;
    top: 120px;
}
.appilix_single_article_page .appilix_blog_container .create_app_card h2{
    font-size: 20px;
    color: #2B117F;
}
.appilix_single_article_page .appilix_blog_container .create_app_card .divider{
    margin: 10px auto 0 auto;
    border: #101828 1px solid;
    width: 30px;
}
.appilix_single_article_page .appilix_blog_container .create_app_card p{
    text-align: center;
    margin: 20px auto 0 auto;
    font-size: 14px;
    line-height: 28px;
}

.appilix_single_article_page .appilix_blog_container .create_app_card input{
    margin: 20px auto 0 auto;
    display: block;
    width: 100%;
    padding: 12px 14px;
}
.appilix_single_article_page .appilix_blog_container .create_app_card .create{
    margin: 8px auto 0 auto;
    display: block;
    cursor: pointer;
    width: 100%;
    border: 0;
    outline: 0;
    padding: 12px 14px;
    background-color: #2B117F;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
}



/* For Large Screen */
@media screen and (max-width: 1280px) {
    .appilix_single_article_page .appilix_blog_container .widget_area{
        margin: 0 0 0 50px;
    }
}

/* For Tablet View */
@media screen  and (max-width: 992px){
    .appilix_single_article_page .appilix_blog_container{
        margin: 75px 0 0 0;
    }
    .appilix_single_article_page .appilix_blog_container .appilix_blog_social{
        display: none;
    }
    .appilix_single_article_page .appilix_blog_container{
        flex-direction: column;
    }

    .appilix_single_article_page .appilix_blog_container .main_article{
        margin: 0;
    }
    .appilix_single_article_page .appilix_blog_container .main_article p{
        font-size: 18px;
    }
    .appilix_single_article_page .appilix_blog_container .widget_area{
        width: 100%;
        margin: 0;
    }
    .appilix_single_article_page .appilix_blog_container .create_app_card .card_contant{
        max-width: 45%;
        margin: 0 auto;
    }
}

/* For Mobile View */
@media screen  and (max-width: 768px){
    .appilix_single_article_page .appilix_article_hero{
        height: 400px;
    }
    .appilix_single_article_page .appilix_article_hero::before{
        height: 400px;
    }
    .appilix_single_article_page .appilix_blog_container{
        margin-top: 55px;
    }
    .appilix_single_article_page .appilix_blog_container .create_app_card .card_contant{
        max-width: 70%;
    }
    .appilix_single_article_page .appilix_blog_container .main_article p{
        font-size: 16px;
    }
}

/* For Small Mobile View */
@media screen and (max-width: 576px){
    .appilix_single_article_page .appilix_article_hero{
        height: 300px;
    }
    .appilix_single_article_page .appilix_article_hero::before{
        height: 300px;
        background: linear-gradient(to bottom,rgba(255,255,255,0) 0%,rgba(128,128,128,0) 30%,rgba(0,0,0,.50) 100%);
    }
    .appilix_single_article_page .appilix_article_hero h1{
        font-size: 28px;
    }
    .appilix_single_article_page .appilix_article_hero .appilix_article_details{
        padding: 20px;
    }
    .appilix_single_article_page .appilix_blog_container .create_app_card .card_contant{
        max-width: 100%;
    }
}
