/*--------------------- Copyright (c) 2022 ----------------------- 
[Master Stylesheet] 
Project: AutoLeadFinder 
Version: 1.0.0 
Author: 
 ------------------------------------------------------------------- 
[Table of contents] 
    1. Global CSS Start
    2. Comman CSS Start
-------------------------------------------------------------------*/

/********************************************************
    1. Global CSS Start
********************************************************/
:root {
    --white-color:#ffffff;
    --secondary-color:#69767A;
    --primary-color:#3785F1;
    --heading-color:#111111;
    --transition:all 0.3s;
    --webkit-transition:all 0.3s;
    --moz-transition:all 0.3s;
    --o-transition:all 0.3s;
    --ms-transition:all 0.3s;    
}
body {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    font-weight: 400;
    color: #69767A;
    background: #f9fbfc;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Figtree', sans-serif;
}
ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.primary_color{
   color:var(--primary-color); 
}
.primary_color:hover{
   color:var(--primary-color); 
}
/********************************************************
    2. Common CSS Start
********************************************************/
.pb_5{padding-bottom:5px}.pb_10{padding-bottom:10px}.pb_15{padding-bottom:15px}.pb_20{padding-bottom:20px}.pb_30{padding-bottom:30px}.pb_40{padding-bottom:40px}.pb_50{padding-bottom:50px}.pb_60{padding-bottom:60px}.pb_70{padding-bottom:70px}.pb_80{padding-bottom:80px}.pt_5{padding-top:5px}.pt_10{padding-top:10px}.pt_15{padding-top:15px}.pt_20{padding-top:20px}.pt_30{padding-top:30px}.pt_40{padding-top:40px}.pt_50{padding-top:50px}.pt_60{padding-top:60px}.pt_70{padding-top:70px}.pt_80{padding-top:80px}.mb_5{margin-bottom:5px}.mb_10{margin-bottom:10px}.mb_15{margin-bottom:15px}.mb_20{margin-bottom:20px}.mb_30{margin-bottom:30px}.mb_40{margin-bottom:40px}.mb_50{margin-bottom:50px}.mb_60{margin-bottom:60px}.mb_70{margin-bottom:70px}.mb_80{margin-bottom:80px}.mt_5{margin-top:5px}.mt_10{margin-top:10px}.mt_15{margin-top:15px}.mt_20{margin-top:20px}.mt_30{margin-top:30px}.mt_40{margin-top:40px}.mt_50{margin-top:50px}.mt_60{margin-top:60px}.mt_70{margin-top:70px}.mt_80{margin-top:80px}
::placeholder {
    color: #B1CDD7;
}
:-ms-input-placeholder { 
    color: #B1CDD7;
}
::-ms-input-placeholder { 
    color: #B1CDD7;
}
a, a:hover, a:focus, button, button:hover, svg, svg path, ::after, ::before {
	text-decoration: none;
	-webkit-transition: var(--webkit-transition);
	-moz-transition: var(--moz-transition);
	-ms-transition: var(--ms-transition);
	-o-transition: var(--o-transition);
	transition: var(--transition);
}
img {
	max-width: 100%;
}
input, textarea, select, button, button:focus, button:hover, label, svg, svg path, svg rect, svg polygon, img, a, .form-control:focus {
	outline: none;
	box-shadow:none;
}
ul, p {
	padding:0;
	margin:0;
	list-style-type: none;
}
h1, h2, h3, h4, h5, h6 {
	margin:0;
	padding:0;
	text-transform:capitalize;
    color:var(--heading-color);
}
.modal {
    z-index: 99999;
}
.modal-content {
    border: 0;
    border-radius: 12px;
    box-shadow: 20px 20px 100px rgb(149 42 254 / 5%);
    padding: 35px;
}
.modal-header {
    padding: 0;
    border: 0;
    margin-bottom: 26px;
}
.modal-body {
    padding: 0;
}
.modal-backdrop {
    z-index: 9999;
}
.modal-backdrop {
    --bs-backdrop-bg: var(--heading-color);
    --bs-backdrop-opacity: 0.8;
}
.modal-title {
    font-size: 20px;
    color: var(--heading-color);
    font-weight: 500;
}
/* width */
.custom_scroll::-webkit-scrollbar {
    width: 4px;
}  
/* Track */
.custom_scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}  
/* Handle */
.custom_scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}
/* loader start  */
.wb_loader {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	z-index: 999999;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--white-color);
}
.wb_loader img {
	/* width: 80px; */
}
/* loader end  */
/* button list  */
/* button list */
.wb_btn_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.wb_btn_list> li {
    padding: 5px 10px;
}
.listSpace5 {
    margin: 0 -5px;
}
.listSpace5 > li {
    padding: 5px 5px;
}
/* button css started */
.fe_btn {
    background: linear-gradient(317.92deg, #297CF0 -21.76%, #0E6AED 93.36%);
    border-radius: 6px;
    display: flex;
    height: 50px;
    min-width: 150px;
    padding: 0 30px;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    position: relative;
    z-index: 0;
}
.fe_btn:active {
    transform: scale(0.95);
}
.primary_btn {
    background: linear-gradient(317.92deg, #297CF0 -21.76%, #0E6AED 93.36%);
}
.primary_btn:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #2159a6 0%, var(--primary-color) 100%);
    border-radius: 6px;
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: scale(0, 1);
}
.primary_btn:hover::after {
    opacity: 1;
    visibility: visible;  
    transform: scale(1, 1);  
}
/*.primary_btn:hover {*/
/*    box-shadow: 0px 24px 30px rgb(180 51 254 / 15%);*/
/*}*/
.fe_btn:hover {
    color: var(--white-color);
}
/* white button  */
.white_btn{
    background: var(--white-color);
    color: var(--primary-color);
    padding: 14px 20px;
}
.white_btn:hover{
   color:var(--primary-color);
}
/* max-width btn */
.max-width{
    width: max-content;
    padding: 0 30px;
}
.btnP20{
    padding: 0 20px;
}
.btnP10{
    padding: 0 10px;
}
.btn40{
    height: 40px;
    font-size: 14px;
}
.btn50{
    height: 50px;
}
.btn60{
    height: 60px;
}
/* -------header start-------------- */
.fe_banner_wrap {
    background-color: #F1F8FF;
    padding: 100px 0 80px;
    background-image: url(../images/home_banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.fe_banner_inner {
    max-width: 1550px;
    margin: auto;
}
.fe_header_wrap {
    padding: 15px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.fe_header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1550px;
    margin: auto;
}
.fe_header_logo {
    flex: 1;
    max-width: 310px;
}
.fe_header_logo a img.img-fluid {
    max-width: 295px;
    max-height: 51px;
}
.fe_h_menu_item, .fe_h_otr_item {
    color: var(--heading-color);
    font-weight: 500;
}
.fe_h_menu_item {
    position: relative;
}
.fe_h_menu_item:after {
    content: "";
    display: block;
    width: 0;
    position: absolute;
    height: 2px;
    left: 0;
    width: 0;
    bottom: -10px;
    background: linear-gradient(to right,#7740FF ,var(--primary-color));
    transition: .3s;
}
.fe_h_menu_item:hover:after {
    width: 100%;
}
.fe_h_menu_item:hover, .fe_h_otr_item:hover {
    color: var(--primary-color);
}
.fe_h_otr_item:hover span svg path {
    fill: var(--primary-color);
}
.fe_h_menu_list {
    display: flex;
    margin: 0 -30px;
}
.fe_h_menu_list > li {
    padding: 0 25px;
}
.fe_h_otr_item {
    display: flex;
}
.fe_h_otr_item > span {
    margin-right: 5px;
}
.fe_other_list {
    display: flex;
    align-items: center;
}
.fe_other_list > li {
    padding: 0 10px;
}
.fe_other_list > li:last-child {
    padding-right: 0;
}
.fe_free_try {
    font-weight: 500;
    color: #93A8AF;
    position: relative;
}
.fe_free_try:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(to right,#7740FF ,var(--primary-color));
}
.fe_free_try:hover:after {
    width: 100%;
    left: 0;
}
.fe_free_try:hover {
    color: var(--primary-color);
}
.fe_banner_btnList {
    padding-top: 50px;
    justify-content: center;
}
/* -------header end-------------- */
/* -------banner start-------------- */
.fe_banner_details {
    max-width: 830px;
    margin-left: auto;
}
.fe_banner_headign {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: normal;
}
.fe_banner_sub {
    font-size: 20px;
    color: #4C6E90;
}
/* chat box  */
.wb_authChat_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.wb_authChat_list > li {
    margin-bottom: 30px;
}
.wb_authChat_list > li:last-child {
    margin-bottom: 0;
}
.wb_auth_chatBox {
    position: relative;
    width: 100%;
    max-width: 390px;
    background: rgb(255 255 255 / 2%);
    box-shadow: 10px 10px 20px rgb(0 0 0 / 5%);
    backdrop-filter: blur(2px);
    border-radius: 10px;
    color: #fff;
    padding: 30px;
    border: 1px solid rgb(255 255 255 / 5%);
    /* border: 1px solid rgb(0 0 0 / 0%);
    border-image-source: linear-gradient(90deg, #ffffff00 20%, #ffffff21 100%);
    border-image-slice: 1; */
}
.wb_auth_chatBox {
    background: url(../images/auth_colorBg.jpg);
    background-size: cover;
}
.wb_auth_chat_text {
    font-size: 15px;
    font-weight: 300;
}
.wb_auth_cb_a {
    position: absolute;
    border: 2px solid var(--white-color);
    filter: drop-shadow(6px 6px 18px rgba(255, 62, 141, 0.2));
}
.wb_acb_left .wb_auth_cb_a {
    top: -17px;
    left: -17px;
    border-radius: 30px 30px 0px 30px;
}
.wb_acb_right .wb_auth_cb_a {
    bottom: -17px;
    right: -17px;
    border-radius: 0px 30px 30px 30px ;
}
.fe_bm_wrap {
    justify-content: center;
}
.fe_banner_img {
    width: 100%;
}

/* -------banner end-------------- */
/* -------Section 2-------------- */
.fe_sec2_wrap {
    padding: 100px 0;
    background-image: url(../images/circle_banner.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: auto;
}
.fe_subheading {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
}
.fe_heading {
    font-size: 36px;
    font-weight: 700;
}
.fe_sec2_box {
    background: rgb(255 255 255 / 76%);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s linear;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 40px 0px rgb(26 44 84 / 6%);
    border: 2px solid #FFFFFF;
    grid-gap: 20px;
}
.fe_sec2_box:hover {
    transform: translateY(10px);
}


.fe_sec2_head {
    font-size: 34px;
    margin: 15px 0 10px;
    font-weight: 700;
}
.fe_sec2_shead {
    font-size: 19px;
    color: #4C6E90;
    font-weight: 400;
}

.fe_sec2_box.fe_sec2_box_clm {
    display: block;
    text-align: center;
}
/* -------Section 2-------------- */
/* -------Section 3-------------- */
.fe_sec3_wrap {
    background: #fff;
    padding: 80px 0;
}
.fe_sec3_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}
.fe_sec3_box {
    display: flex;
}
.fe_sec3_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    position: relative;
    box-shadow: 0px 7px 10px 0px #7740ff47;
    background-image: linear-gradient(0deg, #7740FF 0%, var(--primary-color) 100%);
}
.fe_sec3_icon:after {
    content: "";
    position: absolute;
    top: -4px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: solid white;
    width: 7px;
    height: 13px;
    border-width: 0px 3px 3px 0px;
    transform: rotate(45deg);
    border-radius: 0 2px 2px 2px;
}
.fe_sec3_H {
    font-size: 20px;
    margin-bottom: 5px;
}
.fe_sec3_left {
    margin-right: 10px;
}
/* footer start */
.fe_footer {
    padding: 15px 0;
    background: linear-gradient(317.92deg, #297CF0 -21.76%, #0E6AED 93.36%);
}
.fe_footer p {
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.fe_footerLink > li > a {
    color: #ffffff;
    font-weight: 500;
}
.fe_footerLink > li > a:hover {
    color: var(--heading-color);
}


/* Coming Soon Page Css Start */

.fe_commingsoon_wrap {
    position: relative;
    padding: 70px 0;
    background-image: url(../images/ComingSoon_bgcolor.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height:100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fe_commingsoon_item {
    content: "";
    position: absolute;
    /*z-index: -1;*/
    animation: up-down 2s infinite alternate-reverse both;
} 
.icons_left01 {
    top: 10%;
    left: 5%;
}
.icons_left02 {
    top: 50%;
    left: 20%;
}
.icons_left03 {
    bottom: 10%;
    left: 5%;
}
.icons_right01 {
    top: 10%;
    right: 5%;
}
.icons_right02 {
    top: 50%;
    right: 20%;
}
.icons_right03 {
    bottom: 10%;
    right: 5%;
}


.fe_commingsoon_inner {
    text-align: center;
}
.fe_commingsoon_multi img {
    max-width: 100%;
}
.fe__logo {
    max-width: 440px;
    margin: 50px auto;
}
.fe_header_pera {
    max-width: 815px;
    margin: 0 auto;
}
.fe_header_pera p {
    font-size: 28px;
    line-height: 40px;
    color: #8a8a96;
    font-weight: 500;
    text-align: center;
}

@keyframes up-down {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-20px)
    }
}

/* Coming Soon Page Css End */




@media screen and (min-width: 992px){
    
}
@media screen and (min-width: 768px){
    
}
@media screen and (max-width: 1399px){
    .container {
        max-width: calc(100% - 30px);
    }
    .fe_banner_headign {
        font-size: 38px;
    }
    .fe_sec2_box {
        padding: 30px 20px;
    }  

}
@media screen and (max-width: 1199px) and (min-width: 992px){
    .fe_sec2_icon img{
        max-width: 30px;
    }
    
}
@media screen and (max-width: 1199px){
    .fe_h_menu_list > li {
        padding: 0 20px;
    }
    .fe_sec2_box {
    display: block;
    text-align: center;
}
.fe_banner_headign {
    font-size: 30px;
}
.fe_heading {
    font-size: 30px;
}
.fe_sec2_head {
    font-size: 24px;
}
.fe_sec2_shead {
    font-size: 16px;
}

/* comming soon css start */
.fe_commingsoon_multi img {
    max-width: 280px;
}
.fe__logo {
    max-width: 240px;
}
.fe_commingsoon_icons {
    display: none;
}
.fe_header_pera p {
    font-size: 18px;
}
/* comming soon css end */

}
@media screen and (max-width: 991px){
    .fe_sec2_box {
        padding: 30px 20px;
    }  
    
}
@media screen and (max-width: 767px){
    .fe_header_menu {
        display: none;
    }
    .fe_bm_wrap {
        margin-bottom: 50px;
    } 
    .fe_sec2_wrap, .fe_sec3_wrap {
        padding: 50px 0;
    }
    .fe_banner_wrap {
        padding: 100px 0 60px;
    }
    .fe_banner_details {
        max-width: 100%;
        margin-left: 0;
        text-align: center;
    }
    .fe_banner_btnList {
        justify-content: center;
    }
}
@media screen and (max-width: 419px){
    .fe_banner_headign {
    font-size: 20px;
}
.fe_banner_sub {
    font-size: 16px;
}
.fe_heading {
    font-size: 24px;
}
.fe_sec2_head {
    font-size: 22px;
}
.fe_sec2_shead {
    font-size: 16px;
}
    .fe_sec2_icon img{
        max-width: 30px;
    } 
    .fe_header_logo a img.img-fluid {
    max-width: 170px;
}
.fe_btn {
    min-width: 100px;
    padding: 0 20px;
}
}



