body {
    margin: 0 auto;
    font-size: 16px;
    padding: 0;
    font-family: "Albert Sans", sans-serif;
    color: #000;
}

::selection {
    background-color: #2196f3;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #000;
}

a {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    outline: 0;
    color: #000;
    text-decoration: none;
}

a:hover {
    outline: none;
    color: #1d1d1d;
    text-decoration: none;
}

.wow {
    visibility: hidden;
}

.clear {
    clear: both;
}

img:not(table img) {
    max-width: 100%;
}

iframe {
    border: 0;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}
.promo-section {
    background: linear-gradient(184deg, rgba(234, 234, 234, 1) 0%, rgba(245, 245, 245, 1) 100%);
    border-radius: 20px;
    padding: 20px;
}

p {
    font-size: 16px;
    color: #000;
}

figure {
    margin: 0 auto;
    display: block;
    text-align: center;
}

body.scroll-off {
    overflow: hidden;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-heading {
    color: #000000;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 0;
}


.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

.form-control::-webkit-input-placeholder {
    color: #9C9C9C;
}

.form-control::-moz-placeholder {
    color: #9C9C9C;
}

.form-control:-ms-input-placeholder {
    color: #9C9C9C;
}

.form-control:-moz-placeholder {
    color: #9C9C9C;
}


/*==================== User Dropdown Start ===================*/
#header .nav-link {
    color: #000;
}

.user_dropdown {
    display: inline-block;
}

.user_dropdown>a {
    color: #494949;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.user_dropdown img {
    height: 35px;
    width: 35px;
    min-height: 35px;
    min-width: 35px;
    border-radius: 50%;
}

.user_dropdown .dropdown-menu.show {
    display: block;
    left: auto;
    width: 160px;
    overflow-x: hidden;
    padding-bottom: 0;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    background-color: #fff;
    color: rgba(255, 255, 255, 0.6);
    right: 1px;
    box-shadow: 0 5px 12px rgba(60, 64, 67, 0.15);
    font-size: 12px;
    border-radius: 9px;
    border: 0;
}

.user_name>div {
    white-space: nowrap;
    max-width: calc(160px - 10px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
    color: #494949;
    text-transform: capitalize;
    font-size: 15px;
}

.user_name {
    padding: 0 10px;
    border-bottom: 1px solid #e9ecef;
}

.user_name small {
    color: #a2a2a2;
    text-transform: lowercase;
}

.user_name .user_email {
    margin-top: -10px;
}

.user_dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.user_dropdown ul li {
    display: block;
}

.user_dropdown ul li a {
    color: #494949;
    text-transform: capitalize;
    font-size: 14px;
    padding: 5px 10px;
    /* padding-left: 20px; */
    display: block;
    border-bottom: 1px solid #e9ecef;
}

.user_dropdown ul li a i {
    margin-right: 5px;
}

.user_dropdown ul li a:hover {
    color: #c72026;
}


/*==================== User Dropdown End ===================*/


/* *** loader css start ****  */

.loader-wrapper {
    background: rgba(0, 0, 0, 0.90);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

.loader:before {
    content: "";
    width: 100px;
    height: 100px;
    border: 5px solid rgba(0, 0, 0, 0.05);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1.5s infinite linear;
    display: block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader img {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* *** loader css end  ****  */


/*==================== Header Start ===================*/

#header {
    height: 85px;
    display: flex;
    align-items: center;
    z-index: 10;
    position: relative;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    background: 0 0 !important;
    background-color: #fff !important;
    justify-content: center;
    margin-top: 25px;
    position: fixed;
    right: 0;
    left: 50%;
    max-width: 1324px;
    transform: translateX(-50%) !important;
    width: 100%;
    border-radius: 20px;
      transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

#header.is-sticky {
    /* position: fixed; */
    /* right: 0; */
    /* left: 50%; */
    /* transform: translateY(-100%); */
    /* -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1); */
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #ededed;
    /* max-width: 1324px; */
    /* transform: translateX(-50%) !important; */
    /* width: 100%; */
    /* top: 32px; */
    margin-top: 8px;
    /* width: 100%; */
    /* max-width: 100% !important; */
    top: 0;
    /* border-radius: 0 !important;*/
      transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

#header.is-sticky.awake {
    transform: translateY(0%);
    -webkit-transition: 0.3s all ease-out;
    -o-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
}

#header.is-sticky.inner_pages_head,
#header.inner_pages_head {
    height: 65px;
}

#header>.container-fluid>.navbar {
    padding-left: 0;
    padding-right: 0;
}

#header .navbar-brand img {
    height: 45px;
    width: auto;
}

#header .navbar-expand-lg .navbar-nav .nav-item {
    margin-right: 40px;
}

#header .navbar-expand-lg .navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

#header .nav-link {
    position: relative;
    padding: 0;
}

#header .navbar-expand-lg .navbar-nav .nav-link:hover,
#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    color: #5046E4;
}

/* #header .navbar-expand-lg .navbar-nav .nav-link:hover:before,
#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link:before {
    color: #c72026;
    transform: scaleX(1);
} */

/* #header .navbar-expand-lg .navbar-nav .nav-link:before {
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: #c72026;
    transform: scaleX(0);
    content: "";
    position: absolute;
    transition: transform 0.5s ease;
} */

#header .dropdown-toggle::after {
    border: none;
    /* height: 8px;
  width: 11px; */
    /* background-image: url(../web-img/drop_arrow.png); */
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-top: 3px;
}

#header .extra_nav {
    margin-left: 30px;
}

#header .navbar-expand-lg .extra_nav .navbar-nav .nav-item {
    margin-right: 0;
}


#header .extra_nav .nav-item:list-child {
    margin-right: 0px;
}


#header .extra_btn:hover {
    background-color: rgba(255, 255, 255, 0.24);
}

#header .header_filled_btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    color: #5046E4;
}

#header .header_filled_btn:hover {
    background-color: #fff;
    color: #5046E4;
}

#header .header_border_btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 400;
    padding: 17px 20px;
    padding-left: 20px !important;
    padding-right: 20px !important;
    color: #FFF;
       border: 0px solid #5046E4;
    background: radial-gradient(ellipse at bottom, #A0B5FF, #5046E4);
    gap: 7px;
       transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

#header .header_border_btn:hover {
    color: #fff !important;
    background: linear-gradient(90deg, rgba(80, 70, 228, 1) 0%, rgba(160, 181, 255, 1) 100%);
}

.header_border_btn:before,
.header_filled_btn:before {
    display: none;
}

#header .flag_ico {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop {
    padding-left: 32px;
    padding-right: 5px;
    width: auto;
    font-weight: 400;
    color: #000;
}


#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop img {
    width: 21px;
    height: auto;
    vertical-align: text-bottom;
}

#header .for_mobile {
    display: none;
}

#header .for_desktop {
    display: block;
}

#header .dropdown-item {
    font-weight: 300;
}


/*#header .dropdown-item:hover {
    background-color: #30383d;
    color: rgba(255,255,255,0.60);
}*/

.langugae_filter {
    position: relative;
}

.lang_dropdown {
    display: none;
    position: absolute;
    top: 100%;
    min-width: 100px;
    background-color: #fff;
    color: rgba(255, 255, 255, 0.6);
    right: 1px;
    box-shadow: 0 5px 12px rgba(60, 64, 67, 0.15);
    font-size: 12px;
    border-radius: 9px;
    border: 0;
    margin: 0;
    padding: 4px 11px 6px 10px;
}

.lang_country {
    position: relative;
    cursor: pointer;
}

.dropdown-toggle.lang_drop {
    border: 0;
    background: transparent;
}

#header .navbar-expand-lg .navbar-nav .currency-filter .nav-link.lang_drop {
    padding: 8px 0 8px 36px;
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop {
    padding: 8px 0 8px 36px;
    color: #8B96A5;
}

.lang_country {
    position: relative;
    padding: 5px 0px 5px 34px;
    color: #494949;
    border-bottom: 1px solid #e9e9e9;
}

.lang_country .flag_ico img {
    max-width: 19px;
}

.lang_country:last-child {
    border-bottom: 0;
}

.lang_country:hover {
    color: #c72026;
    background-color: transparent;
}


.navbar-brand {
    font-size: 0;
}

/* 
.langugae_filter:hover .lang_dropdown {
    display: block;
} */
/*==================== Header End ===================*/



/*==================== Footer login Signup Section ===================*/

.footer-logsign-link {
    position: relative;
}

.footer-logsign-link:after,
.footer-logsign-link:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: -1;
}

.footer-logsign-link:before {
    background-color: #df1f26;
    left: 0;
}

.footer-logsign-link:after {
    background-color: #ec2027;
    right: 0;
}

.footer-signin-link a,
.footer-signup-link a {
    height: 150px;
    align-items: center;
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap;
    padding-right: 10px;
}

.footer-signup-link a {
    background-color: #df1f26;
    padding-left: 0px;
}

.footer-signin-link a {
    background-color: #ec2027;
}

.footer-signin-link a span,
.footer-signup-link a span {
    color: #fff;
    font-size: 36px;
    width: 100%;
}

.footer-signin-link a p,
.footer-signup-link a p {
    color: #fff;
    font-size: 15px;
    width: 100%;
    margin-bottom: 0;
}

.footer-signup-link a span.footer-link-arrow,
.footer-signin-link a span.footer-link-arrow {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    background-color: #5046E4;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 23px;
    transition: 0.5s all;
}

.footer-signup-link a:hover span.footer-link-arrow,
.footer-signin-link a:hover span.footer-link-arrow {
    background-color: #fff;
    color: #5046E4;
}


/*==================== Footer login Signup Section ===================*/


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

.footer-block figure {
    margin: 0 0 30px;
    display: inline-block;
    max-width: 219px;
}

.cts_no {
    font-size: 15px;
    padding: 0 80px 0 0;
}

.cts_no p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

.copyright {
    padding: 24px 0;
    border-top: 1px solid #45454A;
    color: #B0B0B0;
    font-size: 16px;
    margin-top: 80px;
}

.light-color {
    color: #FFFFFF;
}

.newsletter-form .form-control {
    /* height: 45px; */
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    border: 0;
    border-radius: 20px;
    padding-right: 40px;
    background: #2E2E34;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 23px 140px 23px 50px !important;
}

.relative-box {
    position: relative;
    top: 7px;
}

.email-input-box {
    position: relative;
}

.relative-box .subscribe-btn {
    position: absolute;
    top: 3px;
    right: 4px;
    color: #fff;
    height: 60px;
    font-size: 16px;
    background: no-repeat;
    border: 0px solid #5046E4;
    background: radial-gradient(ellipse at bottom, #A0B5FF, #5046E4);
    border-radius: 16px;
    padding: 16px 41px;
}

.newsletter-form .form-control:focus {
    color: #fff;
    background: #2E2E34;
    border: 1px solid #5046E4;
    outline: 0;
    box-shadow: none;
}

.svg-mail-icon {
    position: absolute;
    top: 21px;
    left: 20px;
}

.relative-box .subscribe-btn:hover {
    /* color: #5046E4; */
}

footer h6 {
    font-size: 17px;
    color: #000;
    margin: 0 0 27px;
    position: relative;
}

ul.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.footer-links li {
    margin: 3px 0;
    padding: 0;
    list-style: none;
    margin-bottom: 10px;
}

ul.footer-links li a {
    font-size: 16px;
    font-weight: 400;
    color: #ffff;
}

ul.footer-links li a:hover {
    color: #5046E4;
}

.social-icons a {
    border: 1px solid #45454A;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background-color: #45454A;
}

/* .social-icons a:hover svg path {
    fill: #5046E4;
} */

.social-icons {
    display: flex;
    gap: 12px;
}

ul.footer-links.socialize li a {
    position: relative;
    padding-left: 25px;
}

ul.footer-links.socialize li a i {
    position: absolute;
    left: -9px;
    width: 30px;
    text-align: center;
    top: -4px;
    color: #959595;
    font-size: 17px;
}

.footer_wrapper {
    background: #1E1E21;
    padding: 120px 0 0;
    border-top: 1px solid #eeeeee;
}

.newsletter-form label {
    margin-bottom: 16px;
}

footer h6 {
    font-size: 18px;
    margin: 0 0 48px;
    font-weight: 500;
    color: #fff;
}

footer label {
    color: #B0B0B0;
}

.subscribe_text {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}


.navbar {
    padding: 0;
}


#top-button {
    display: inline-block;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#top-button.show {
    opacity: 1;
    visibility: visible;
}

.back_top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
   background: radial-gradient(circle, rgba(160, 181, 255, 1) 0%, rgba(80, 70, 228, 1) 100%);
    display: none;
    border: #5046e4 1px solid;
    z-index: 1;
    border-radius: 4px
}

.back_top span {
    position: relative;
    display: block;
    color: #fff;
    width: 100%;
    height: 100%;
}

.back_top span svg {
    width: 22px;
    height: 21px;
    position: absolute;
    left: 0;
    margin: 0 auto;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.back_top:hover {
    border-color: #5046e4;
    color: #5046e4;
    background: #fff;
}

.back_top:hover span {
    color: #5046e4;
}


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

#header .navbar-expand-lg .navbar-nav .nav-item.dropdown .nav-link {
    padding-right: 25px;
}

.mobiledrop {
    position: absolute;
    right: 0px;
    top: 0;
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background-color: transparent;
}

/* Custom Select */

.custom_checkbox input[type="checkbox"],
.custom_checkbox input[type="radio"] {
    height: 20px;
    width: 20px;
    min-width: 20px;
    margin: 0;
    padding: 0;
    opacity: 1;
    appearance: none;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    background: transparent;
    position: relative;
    margin-right: 12px;
    cursor: pointer;
}

.custom_checkbox input[type="checkbox"]:checked,
.custom_checkbox input[type="radio"]:checked {
    border: 1px solid #5046e4;
    background: #5046e4;
}
.contactBox {
    margin-bottom: 120px;
}
.custom_checkbox input[type="checkbox"]:checked::before,
.custom_checkbox input[type="radio"]:checked::before {
    content: "\f00c";
    height: 100%;
    color: #fff;
    font-family: "Font-awesome-5-pro";
    position: absolute;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.custom_checkbox label {
        color: #1B1C1C !important;
    font-size: 16px;
}
.custom_checkbox {
    margin-top: 10px;
}
p.formSubTitle {
    font-size: 16px;
    color: #6A6B70;
    font-weight: 500;
}



h2.formTitle {
    color: #1B1C1C;
    font-size: 48px;
}
.formBox .theme-btn {
    padding: 18px 20px;
}
.formBox .pageTag {
    margin-bottom: 16px;
}
.formCard {
    border-top: 1px solid #EBEBEB;
    padding-top: 20px;
    margin-top: 20px;
}
/* Custom Radio */
.custom_radio [type="radio"]:checked,
.custom_radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.custom_radio [type="radio"]:checked+label,
.custom_radio [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.custom_radio [type="radio"]:checked+label:before,
.custom_radio [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #b5b5b5;
    border-radius: 100%;
    background: #fff;
}

.custom_radio [type="radio"]:checked+label::after,
.custom_radio [type="radio"]:not(:checked)+label::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #F87DA9;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.custom_radio [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custom_radio [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


.form-control:focus {
    box-shadow: none;
}

.btn-primary {
    background-color: #2196F3;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    padding: 12px 30px;
    border: 1px solid #2196F3;
}

.btn-primary:hover {
    color: #2196F3;
    background-color: transparent;
    border: 1px solid #2196F3;
}

.custom_select_block .ms-dd .ms-dd-header {
    height: 45px;
    font-size: 16px;
    color: rgb(66 66 66 / 60%);
    font-weight: 400;
    background: transparent;
    border-radius: 6px;
    border: 1px solid #B1B1B1;
    overflow: hidden;
    width: 100%;
}

.custom_select_block .ms-dd .ms-dd-header .option-selected {
    height: 45px;
    padding: 10px 25px;
    width: 100%;
}

.custom_select_block .ms-dd .ms-list-option.option-selected,
.ms-dd .ms-optgroup ul .ms-list-option.option-selected {
    background: #ffffff;
}

.custom_select_block .ms-dd {
    width: 100%;
}

.custom_select_block .ms-dd .ms-dd-arrow {
    margin-top: -5px;
    right: 25px;
}


/* Select2 */



.floating-label {
    font-size: 16px;
    font-weight: 400;
    color: #475F7B;
    opacity: 1;
    top: 16px;
    left: 20px;
    pointer-events: none;
    position: absolute;
    transition: 240ms;
    margin-bottom: 0;
    z-index: 1;
}

.floating-diff .floating-label {
    opacity: 0;
}

.floating-diff.focused .floating-label {
    opacity: 1;
}

.form-group.focused .floating-label {
    opacity: 1;
    color: #7b7f82;
    top: 4px;
    left: 19px;
    font-size: 12px;
}

.form-group.focused select.form-control {
    padding-top: 21px;
}

.float-checkradio {
    background-color: #FFF;
    border: 1px solid #DFE3E7;
    border-radius: .267rem;
    padding: 8px 19px;
    transition: 0.3s;
    min-height: 55px;
}

.float-checkradio.focused {
    padding-top: 21px;
}

/*--------select2-css----*/
.select2Part .floating-label {
    opacity: 0;
}

.select2Part.focused .floating-label {
    opacity: 1;
}

.select2multiple .floating-label {
    opacity: 1;
}

.floating-group.focused .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding-bottom: 7px;
    margin: 0;
    padding-top: 17px;
    padding-left: 0px;
}


.select2-container--default .select2-selection--multiple .select2-selection__rendered:before {
    border: none;
    content: '';
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii00NzMgMjc3IDEyIDgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTQ3MyAyNzcgMTIgODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzhBOTNBNjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS00NzEuNiwyNzcuM2w0LjYsNC42bDQuNi00LjZsMS40LDEuNGwtNiw2bC02LTZMLTQ3MS42LDI3Ny4zeiIvPg0KPC9zdmc+DQo=') no-repeat 0 0;
    width: 12px;
    height: 8px;
    background-size: 100% 100%;
    transform: translateY(-50%);
    position: absolute;
    right: 18px;
    top: 26px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    left: auto;
    top: 0;
    right: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding-right: 30px;
    padding-left: 0px;
    background-color: #ebf0fe;
    margin-right: 5px;
    border: 0px solid #aaa;
    margin-top: 9px;
    padding-top: 3px;
    padding-bottom: 3px;

}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: #dc3545;
    color: #e4e4e4;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: #EE343A;
    color: #fff;
    padding: 1px;
    top: 7px;
    right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    border-right: 0;
    justify-content: center;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-right: 10px;
    font-size: 13px;
    font-weight: 300;
    padding-left: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove span {
    line-height: 11px;
    height: 17px;
    /* width: 1px; */
    padding-right: 1px;
    border-radius: 50%;
    display: flex;
    font-weight: 300;
    justify-content: center;

}

.floating-group .select2-container--focus .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--focus .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--below .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--below .select2-selection--multiple {
    padding-top: 20px !important;
}

.floating-group .select2-container--above .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--above .select2-selection--multiple {
    padding-top: 20px !important;
}

.floating-group .select2-selection--multiple .select2-selection__rendered {
    padding-top: 20px !important;
}

.select2-dropdown {
    border: 0px solid #aaa;
    box-shadow: 0 9px 9px rgba(0, 0, 0, 0.1);
    margin-top: 3px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #DFE3E7
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #DFE3E7;
    padding-left: 19px;
    padding-bottom: 9px;
}

.select2-container .select2-selection--multiple {
    min-height: 55px;

}

.select2-container .select2-selection--single {
    min-height: 55px;
    border: 1px solid #DFE3E7;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 16px;
    line-height: 1;
    margin-left: 0;
    padding-left: 0px;
    font-size: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    border: none;
    content: '';
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii00NzMgMjc3IDEyIDgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTQ3MyAyNzcgMTIgODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzhBOTNBNjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS00NzEuNiwyNzcuM2w0LjYsNC42bDQuNi00LjZsMS40LDEuNGwtNiw2bC02LTZMLTQ3MS42LDI3Ny4zeiIvPg0KPC9zdmc+DQo=) no-repeat 0 0;
    width: 12px;
    height: 8px;
    background-size: 100% 100%;
    transform: translateY(-50%);
    position: absolute;
    right: 18px;
    top: 26px;
}

.select2-selection__rendered li:first-child {
    margin-left: 0;

}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 19px;
    padding-right: 20px;
    font-size: 15px;
    color: #000;
    padding-top: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-weight: 300;
}

.select2-results__option {
    font-size: 15px;
    font-weight: 300;

}

/*select2*/
.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-control {
      display: block;
    width: 100%;
    height: auto !important;
    padding: 20px !important;
    padding-top: 21px;
    min-height: 55px;
    font-size: 16px;
    color: #6A6B70;
    background-color: #F3F3F3;
    border: 0px solid #DFE3E7;
    border-radius: 16px;
    -webkit-transition: border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;
    transition: border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;

}
.form-floating>.form-control-plaintext~label, .form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
    color: #6A6B70;
    transform: scale(0.85) translateY(-14px) translateX(0px);
    padding: 0 0 0 20px;
    background-color: transparent;
    background: #ffffff00;
    height: auto;
}

select.form-control {
    padding-top: 10px;
    transition: 0.15s;
}

.form-control:focus {
    color: #6A6B70;
    background-color: #F3F3F3;
    border: 0px solid #DFE3E7;
    outline: 0;
    box-shadow: none;
}
.form-floating>.form-control-plaintext~label::after, .form-floating>.form-control:focus~label::after, .form-floating>.form-control:not(:placeholder-shown)~label::after, .form-floating>.form-select~label::after {
    content: none !important;
}
.form-floating>label {
    padding: 20px;
}
/*  */
.here-section {
    background: linear-gradient(179deg,rgba(235, 234, 255, 0.95) 0%, rgba(255, 242, 242, 1) 100%);

    margin: 23px 28px 0;
    border-radius: 40px;
    padding: 165px 16px 60px;
}

.here-section .section-heading {
    font-size: 80px;
    font-weight: 400;
}

.here-section-content {
    max-width: 936px;
    margin: auto;
    text-align: center;
}

.here-info {
    max-width: 600px;
    margin: 40px auto 40px;
}
.managing-finances {
    padding: 70px 0 120px;
}


.theme-btn {
    border: 0px solid #5046E4;
    background: radial-gradient(ellipse at bottom, #A0B5FF, #5046E4);
    padding: 20px;    
    border-radius: 16px;
    color: #fff;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
}

.theme-btn:hover {
    background: linear-gradient(90deg, rgba(80, 70, 228, 1) 0%, rgba(160, 181, 255, 1) 100%);
    color: #fff;
    
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

.theme-btn.border-veriant {
    background: transparent;
    color: #5046E4;
}
h2.processTitle{
    font-size: 28px;
}
.processImg{
    border-radius: 28px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
        height: 100%;
}
.processImg:hover img {
    scale: 1.1;
    transition: all .3s linear;
}
.theme-btn.border-veriant:hover {
    background: linear-gradient(90deg, rgba(224, 210, 255, 1) 0%, rgba(224, 210, 255, 0) 100%);
}

.theme-btn.border-veriant svg path {
    fill: #5046E4;
}
.card-image img {
    transition: all .3s linear;
}
.card-image img:hover {
    scale: 1.1;
    transition: all .3s linear;
}
.here-btns {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.testimonial-card:hover{
    border: 1px solid #5046e463;
}
.main-accordion .accordion-item:hover {
    border: 1px solid #5046e463;
}
.main-accordion .accordion-item:hover .accordion-button{
    color:  #5046e4;
}

.specal-word {
    position: relative;
    border-left: 4px solid #5046E4;
    background: linear-gradient(90deg, rgba(224, 210, 255, 1) 0%, rgba(224, 210, 255, 0) 100%);
}


.specal-word span {
    position: relative;
    z-index: 3;
    background: linear-gradient(90deg, rgba(48, 37, 210, 1) 0%, rgba(137, 130, 250, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.specal-word::after {
    content: "";
    inset: 0;
    width: 100%;
    display: block;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.specal-word svg {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
}

.upload-icon-new {
    height: 120px;
    display: inline-flex;
    width: 120px;
    background: #F3F3F3;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* hero section css */

/* Hero Dashboard Layout */
.hero-dashboard {
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
    align-items: end;
    margin-top: 100px;
    
    justify-content: center;
}

/* Columns */
.column-left,
.column-center,
.column-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Width for large screens */
.column-left {
    flex: 1 1 386px;
    max-width: 386px;

}

.column-center {
    flex: 1 1 490px;
    max-width: 490px;
}

.column-right {
    flex: 1 1 386px;
    max-width: 386px;
}

/* Common Card Styles */
.profile-card,
.coins-card,
.upload-card,
.download-card,
.documents-card,
.top-rated-card {
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Profile Card */
.profile-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-card img {
    width: 50px;
    height: 50px;
    border-radius: 16px;
}

.profile-card div {
    text-align: left;
}

.profile-card h4 {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
}

.profile-card p {
    margin: 0;
    font-size: 12px;
    color: #6A6B70;
}

/* Coins Card */
.coins-card img {
        animation: floatUpDown 3s ease-in-out infinite;
    height: 80px;
    margin-bottom: 43px;
}

.coins-card h3 {
    font-size: 28px;
    margin: 0 0 5px;
    font-weight: 500;
}

.coins-card p {
    font-size: 14px;
    color: #6A6B70;
}

/* Upload Card */
.upload-icon {
    width: 50px;
    margin: 10px 0;
}

.upload-card p {
    font-size: 14px;
    color: gray;
}

.upload-card {
    border-radius: 28px;
}

.coins-card {
    border-radius: 28px;
}

.upload-card h3 {
    margin-top: 20px;
    margin-bottom: 28px;
    font-size: 20px;
}

.download-card {
    border: 1px solid #E4E4E4;
    margin-top: 52px;
    border-radius: 28px;
}

.download-card p {
    color: #000;
}

/* Download Card */
.report-icon {
    height: 120px;
    margin-bottom: 16px;
        animation: floatUpDown 3s ease-in-out infinite;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.download-buttons span {
    height: 40px;
    width: 40px;
    border: 1px solid #E4E4E4;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.download-buttons img {
    height: 20px;
}

.documents-card {
    border-radius: 28px;
    padding: 28px 16px;
    position: relative;
}

.documents-card .gauge-icon {
    max-width: 283px;
    margin: 28px auto 0;
    width: 100%;
        animation: floatUpDown 3s ease-in-out infinite;
}

.documents-card .counter {
    position: absolute;
    bottom: 84px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 48px;
}

.documents-card .heading {
    color: #6A6B70;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.gauge-icon {
    max-width: 283px;
    margin: 28px auto 0;
}

.top-rated-card {
    border-radius: 28px;
    max-width: 283px;
    padding: 20px 30px 11px;
    text-align: left;
}

.top-rated-card .heading {
    font-size: 16px;
    margin-bottom: 11px;
    text-align: left;
}

.top-rated-card .star-icon {
    height: 80px;
    width: auto;
    margin: 0 0 6px;
}

.top-rated-card .counter .blue-clr {
    color: #5046E4;
}

.top-rated-card .counter {
    font-size: 48px;
}

/* Documents Card */
.gauge-icon {
    width: 80px;
    margin: 10px 0;
}

.legend {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
}

/* Top Rated */
.star-icon {
    width: 50px;
    margin: 10px 0;
}

.top-rated-card p {
    font-size: 14px;
    color: gray;
}

.coins-inner-card {
    background-image: url('/web-img/coin-bg.png');
    padding: 36px 16px 28px;
    background-repeat: no-repeat;
    border-radius: 28px;
}


/* Header */
.section-header {
    text-align: center;
}

.section-header .dot-shap {
    width: 8px;
    height: 8px;
    display: inline-block;
    background: #471CA8;
    border-radius: 50%;
    box-shadow:#5200ffc4 0px 0px 7px 1px;
}

.section-header .tag {
 display: inline-block;
    background: #fff;
    color: #161419;
    padding: 10px 12px;
    border-radius: 30px;
    font-size: 16px;
    border: 1px solid #EBEBEB;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.section-header .heading {
    font-size: 48px;
    margin: 16px 0 40px;
}

.section-dec {
    color: #6A6B70;
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
    margin: auto;
}

/* Content Layout */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 80px;
    align-items: start;
    justify-content: center;
    text-align: left;
}

/* Left Column - Features */
.about-features {
    flex: 1 1 0%;
    min-width: 300px;
    max-width: 538px;
    margin-right: 20px;
}

.about-features .feature-box:last-child{
    margin-bottom: 0;
}
.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 48px;
}

.feature-box img {
    width: 40px;
    height: 40px;
}

.feature-box h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

.feature-box p {
    margin: 8px 0 0;
    color: #6A6B70;
    font-size: 16px;
}

/* Right Column - Image */
.about-image {
    flex: 1;
    min-width: 300px;
    text-align: end;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
}

.about-section {
    padding: 120px 0;
}

.feature-icon {
    display: inline-flex;
    background: #5046E4;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    border-radius: 16px;
}

/* choose section */
.choose-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

/* Left Text */
.choose-text {
    flex: 1 1 652px;
    min-width: 300px;
    max-width: 652px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.choose-subtitle {
    color: #6A6B70;
    font-size: 24px;
    margin-bottom: 15px;
}
.ctaBox{
    margin-bottom: 120px;
}
.choose-text h2 {
    font-size:32px;
    color: #333;
    font-weight: 400;
}

.highlight {
    color: #5046E4;
}

.light-gray {
    color: #6A6B70;
}

/* Right Stats Grid */
.choose-stats {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(3, 204px);
    grid-template-rows: 204px 204px;
    grid-gap: 20px;
    justify-content: center;
}

.choose-stats .stat {
    padding: 28px;
    border-radius: 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: self-start;
    justify-content: space-between;
    min-height: fit-content;
}

.choose-stats .stat h3 {
    margin: 0;
    font-size: 48px;
    font-weight: 400;
}

.choose-stats .stat p {
    margin-top: 0;
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
}

/* Colors */
.purple {
    background: linear-gradient(149deg, rgba(138, 130, 255, .6) 0%, rgba(242, 242, 255, 1) 100%);
    color: #6b4eff;
}

.purple h3 {
    color: #5046E4;
}

.grey {
    background: radial-gradient(circle, rgba(234, 234, 234, 1) 0%, rgba(254, 254, 254, 1) 100%);
    color: #333;
}

.choose-stats .stat.grey p {
    color: #6A6B70;
}

.choose-stats .stat.grey .number {
    color: #6A6B70;
}

.grid-shap-bg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('/web-img/choose-stats-bg.png');
    background-size: cover;
    background-position: center;
    user-select: none;
    pointer-events: none;
}

/*feature section  */
.features-section {
    padding: 120px 0;
}

.feature-card.yellow {
    background: linear-gradient(109deg, rgba(255, 244, 223, 1) 0%, rgba(255, 252, 245, 1) 100%);
    height: 380px;
}

.feature-card {
    padding: 28px;
    padding-bottom: 0;
    border-radius: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.feature-card-content .heading {
    font-size: 20px;
    font-weight: 500;
}

.feature-text {
    color: #6A6B70;
    font-size: 16px;
    margin-bottom: 0;
}
.feature-card{
    overflow: hidden;
}
.feature-card:hover img, .about-image img:hover {
    scale: 1.1;
    transition: all .3s linear;
}
.feature-card img {
    /* animation: floatUpDown 3s ease-in-out infinite; */

}
.feature-card.yellow img {
    position: absolute;
    bottom: 12px;
    left: 16px;
}

.feature-card.yellow .feature-card-content {
    max-width: 345px;
    margin-left: auto;
}

.feature-card.lightblue {
    background: linear-gradient(109deg, rgba(223, 255, 250, 1) 0%, rgba(246, 255, 254, 1) 100%);
    height: 380px;
}

.feature-card.blue {
    background: linear-gradient(109deg, rgba(244, 250, 255, 1) 0%, rgba(212, 236, 255, 1) 100%);
}

.feature-card.peach {
    background: linear-gradient(109deg, rgba(255, 234, 222, 1) 0%, rgba(255, 248, 243, 1) 100%);
}

.feature-card.pink {
    background: linear-gradient(109deg, rgba(255, 249, 249, 1) 0%, rgba(255, 231, 231, 1) 100%);
}

.feature-card.lightblue img {
    position: absolute;
    right: 16px;
    bottom: 0;
}

.col-md-4 .feature-img {
    margin: 0 auto 0px;
    text-align: center;
    display: block;
        margin-top: auto;
}

.col-md-4 .feature-card {
    height: 100%;
}

.feature-card.lightblue .feature-card-content {
    max-width: 390px;
}

.features-section .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    background: linear-gradient(109deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    ;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.finances-content {
    max-width: 538px;
    margin-left: auto;
}

.finances-image {
    position: relative;
}

.float-item {
    position: absolute;
}

.float-item.item1 {
    left: 76px;
    top: -76px;
}

.float-item.item2 {
    top: 113px;
    right: -70px;
}

.float-item.item3 {
    bottom: 96px;
    left: -66px;
}

.float-item.item4 {
    right: -50px;
    bottom: 144px;
}

.float-item.item5 {
    right: -186px;
    bottom: 56px;
}

.finances-image {
    max-width: 538px;
}

.finances-buttons .theme-btn {
    width: 164px;
}

.finances-buttons {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.finances-buttons .theme-btn {
    width: 164px;
    max-width: 100%;
    white-space: nowrap;
    padding-block: 17px;
}

.how-cards {
    display: flex;
    gap: 20px;
}

.card-image {
    background: linear-gradient(184deg, rgba(234, 234, 234, 1) 0%, rgba(245, 245, 245, 1) 100%);
    border-radius: 28px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 426px; */
    margin-bottom: 28px;
}

.how-card-heading {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.how-card-dec {
    color: #6A6B70;
    font-size: 16px;
    margin-bottom: 0;
}

/*feature section end */

/* testimonial */
.testimonials {
    padding: 120px 0;
}

.testimonial-card {
    border: 1px solid #E4E4E4;
    border-radius: 28px;
    padding: 4px 4px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background: #F4F4F4;
}

.testimonial-card p {
    font-size: 16px;
    color: #5F5D62;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rating {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.user-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 16px;
    margin: 0 0 4px;
    font-weight: 600;
}

.user-info span {
    font-size: 14px;
    color: #5F5D62;
}

.testimonial-inner-card {
    background: #fff;
    padding: 20px;
    border-radius: 24px;
}

/* faq section */
.main-accordion .accordion-item {
    border-radius: 20px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #F4F4F4;
}

.main-accordion .accordion-button {
    background-color: #fff;
    padding: 28px 28px 28px;
    border: none;
    box-shadow: none;
    font-size: 20px;
}

.main-accordion .accordion-body {
    background-color: #fff;
    color: #5F5D62;
    font-size: 16px;
    padding-top: 0;
    padding-inline: 28px;
}

.main-accordion .accordion-button:not(.collapsed) {
    /* padding: 28px 28px 20px; */
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(3%) sepia(3%) saturate(7188%) hue-rotate(222deg) brightness(96%) contrast(89%);
}

.newsletter-form {
    max-width: 440px;
}

/* faq section end */

.float-item img {
    animation: floatUpDown 3s ease-in-out infinite;
}

.float-item.item3 img {
    animation: unset;
    animation-delay: 1s;
}

.float-item.item4 img {
    animation: unset;
    animation-delay: 1.5s;
}

.float-item.item1 img {
    animation-delay: 0s;
}

.float-item.item2 img {
    animation-delay: 0.5s;
}

.float-item.item3 img {
    animation-delay: 1s;
}

.float-item.item4 img {
    animation-delay: 1.5s;
}

.float-item.item5 img {
    animation-delay: 2s;
}

.Faq-section{
    padding-bottom: 80px;
}

@keyframes floatLeftRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
        /* upar move */
    }

    100% {
        transform: translateY(0px);
        /* wapas neeche */
    }
}

.scroll-off header#header {
    left: 0;
    transform: unset !important;
}

/* Responsive */
@media (max-width: 900px) {
    .choose-container {
        flex-direction: column;
        text-align: center;
    }

    .choose-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {

    .column-left,
    .column-center,
    .column-right {
        flex: 1 1 100%;
    }
}



/* hero section css end */
/* about us */
.pageHeader{
    background: linear-gradient(180deg,rgba(222, 219, 255, 1) 0%, rgba(236, 235, 255, 1) 43%, rgba(255, 255, 255, 1) 100%);
    margin:0;
    padding: 170px 16px 60px;
}
.pageTitle {
    font-size: 48px;
    color: #1B1C1C;
    padding-bottom: 20px;
    margin: 0;
    font-weight: 400;
}
.pageTag {
    width: fit-content;
    margin-inline: auto;
    padding: 8px 12px 8px 8px;
    border: 2px solid #EBEBEB;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    color: #1B1C1C;
    margin-bottom: 24px;
    background: #fff;
}
.tag-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    background: #471CA8;
    border-radius: 50%;
    box-shadow: #BC9EFF 1px 7px 29px 1px;
}
/* about us */
.contactInfoBox {
    border: 1px solid #EBEBEB;
    border-radius: 28px;
    padding: 13px 20px 20px 20px;
    text-align: center;
}
.labelinfo {
    border: #1B1C1C;
    font-size: 20px;
    font-weight: 600;
    margin-top: 8px;
}
.labelinfo span{
    color: #6A6B70;
    font-size: 16px;
    font-weight: 500;
    margin-top: 1px;
    display: block;
}
.infoLinkBtn{
  color: #5046E4;
    font-size: 16px;
    padding: 20px 4px;
    border: 1px solid #EBEBEB;
    border-radius: 16px;
    line-height: 1;
    margin-top: 20px;
    overflow: hidden;
    display: block;
}

.formBox {
    border: 1px solid #EBEBEB;
    border-radius: 28px;
    padding: 28px;
    height: 100%;
}
/* about us */
.inner-title-section{
    text-align: center;
}
.pageSubTitle {
        color: #6A6B70;
    font-size: 16px;
    max-width: 960px;
    margin-inline: auto;
}
.chooseCardTitle {
    font-size: 20px;
    color: #161419;
    font-weight: 600;
    margin: 12px 0 16px;
}
.cardIcon {
    width: 88px;
    min-width: 88px;
    height: 88px;
    background: #fff;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chooseCardDes {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    color: #6A6B70;
}
.chooseCard {
    background: linear-gradient(152deg, rgb(218 216 255 / 67%) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 28px;
    padding: 20px;
    position: relative;
}
.chooseSection {
  counter-reset: chooseCounter;
}
.chooseCard::before {
    counter-increment: chooseCounter;
    content: "0" counter(chooseCounter);
    position: absolute;
    top: 0px;
    right: 20px;
    font-size: 100px;
    font-weight: 600;
    background: linear-gradient(0deg, rgb(255 255 255 / 0%) 30%, rgba(255, 255, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    user-select: none;
}
.chooseSection{
    padding-bottom: 120px;
}
.ourStory{
    margin: 120px 0;
}
.storyImgCard img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position:bottom center;
}
.storyImgCard{
    border-radius: 28px;
    overflow: hidden;
}
.ourstoryContent{
    padding: 20px;
    height: 100%;
    border-radius: 28px;
    background: linear-gradient(180deg,rgba(239, 239, 239, 1) 0%, rgba(249, 249, 249, 1) 100%);

}
.storyTitle {
    color: #000;
    font-size: 48px;
    margin: 16px 0;
}
.storySubTitle {
    color: #6A6B70;
    font-size: 16px;
    margin-bottom: 28px;
}
.storyUniquList h3{
    font-size: 20px;
    margin-bottom: 28px;
}
.pointListing li{
      font-size: 16px;
    color: #000;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.listIcon{
    min-width: 24px;
}
.pointListing p {
    font-size: 16px;
    color: #6A6B70;
    margin: 0;
}
.pointListing{
list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.ctacard {
background: #EFF4FF;
    background-image: url(../web-img/ctaBg.png);
    border-radius: 28px;
    padding: 49px 38px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
}
p.ctaSubTitle {
    color: #6A6B70;
    font-size: 16px;
    margin-bottom: 40px;
}
.ctaTitle {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1B1C1C;
}
/* about us */
.chooseCard2{
    background: linear-gradient(167deg, #F3F3F3 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 28px;
    padding: 20px;
    position: relative;
        border: 1px solid #E0E3EB;
}
.borderBOx{
    border-radius: 28px;
    border: 1px solid #E0E3EB;
    padding: 20px;
}
.dataCardTitle {
    font-size: 28px;
    color: #1B1C1C;
    font-weight: 600;
    margin-bottom: 15px;
        max-width: 375px;
}
.pointsList li:before{
    content: '';
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-image: url(../web-img/listIcon.svg);
    position: absolute;
    top: 2px;
    left: 0;
}
.pointsList li:last-child{
    margin-bottom: 0;
}
.pointsList li{
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #6A6B70;
    margin-bottom: 20px;
}
.pointsList{
    list-style: none;
    padding: 0;
    margin: 0;
}
p.boxText {
    font-size: 16px;
    color: #6A6B70;
        margin-bottom: 35px;
}
p.sectionSubTitle {
    font-size: 16px;
    color: #6A6B70;
    margin-bottom: 80px;
    max-width: 874px;
    text-align: center;
    margin-inline: auto;
}
.processSection{
    padding: 120px 0;
}
.mb80{
    margin-bottom: 80px;
}

.workSteps .workStepBox:not(:last-child)::after {
    content: url(../web-img/Arrow.svg);
    position: absolute;
    top: 110px;
    right: -42%;
}
.workStepBox {
    position: relative;
    padding: 20px;
    text-align: center;
    border-radius: 28px;
    width: 315px;
}
.stepTextTitle {
    color: #1B1C1C;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 12px;
}
.stepTextDetail {
    font-size: 16px;
    color: #6A6B70;
    margin: 0;
}
.workStepBox1{
    background: linear-gradient(169deg,rgba(254, 254, 254, 1) 0%, rgba(237, 236, 255, 1) 100%);
    border:1px solid #A6A0FF
}
.workStepBox2{
    background: linear-gradient(169deg,rgba(254, 254, 254, 1) 0%, rgba(255, 239, 230, 1) 100%);
    border:1px solid #FFBE99
}
.workStepBox3{
    background: linear-gradient(169deg,rgba(254, 254, 254, 1) 0%, rgba(227, 255, 240, 1) 100%);
    border:1px solid #7DFFB8
}
.workSteps{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.profile-card2 p {
  margin: 0;
    font-size: 12px;
    color: #6A6B70;
    text-align: left;
}
.profile-card2 {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #E4E4E4;
    padding-bottom: 8px;
    margin-bottom: 8px;
}
.profile-card2 h4 {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
}
.p20{
    padding: 20px !important;
}
.listPoint h4{
        font-size: 12px;
    color: #6A6B70;
}
.listPoint h4 span{
    color: #000000;
}
.listPoint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}