@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    overflow-x: hidden;
}

body.over-hide {
    overflow: hidden;
}

ul {
    list-style: none;
    padding-left: 0;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

.mt-30 {
    margin-top: 30px;
}

.p-30 {
    padding: 30px 0;
}

h2 {
    font-size: 30px;
    line-height: 30px;
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: 500;
    color: #253858;
}

.dark_bg {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .16);
    top: 60px;
    left: 0;
    display: none;
    z-index: 1;
}

.manage_space{
		margin-top:20px;
}
header {
    padding: 10px 0;
    background: #ffffff;
    z-index: 999;
}


.main_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.main_header .logo {
    width: 196px;
    height: 45px;
    display: inline-block;
    vertical-align: middle;
}

.main_header .nav-list {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.main_header .nav-list .nav-item {
    margin-inline: 20px;
    transition: all .3s;
}

.main_header .nav-list .nav-item .nav-link {
    font-size: 14px;
    position: relative;
    transition: all .3s;
}

.main_header .nav-list .nav-item .nav-link::before {
    content: '';
    position: absolute;
    top: 150%;
    left: 0;
    display: none;
    height: 2px;
    width: 100%;
    background: #0065ff;
}

.main_header .nav-list .nav-item:hover .nav-link::before {
    display: block;
}

.nav-list .nav-item .nav-link i {
    margin-left: 5px;
    transition: all .3s ease;
}

.main_header .nav-list .nav-item:hover .nav-link i {
    transform: rotate(-180deg);
}

.nav-list .talktoexpert img,
.takltoexpert-mobile-menu img {
    height: 16px;
    margin-right: 6px;
}

.nav-list .talktoexpert,
.takltoexpert-mobile-menu {
    padding: 5px;
    font-size: 14px;
    border-radius: 5px;
    color: #0065ff;
    border: 1px solid #0065ff;
    cursor: pointer;
}

.nav-list .signin,
.mobile-sign a {
    padding: 7px 10px;
    font-size: 14px;
    border-radius: 5px;
    margin-left: 10px;
    color: #0065ff;
    border: 1px solid #0065ff;
}


/* =========policy-dropdown============ */
.nav-list .shade .policy_dropdown,
.nav-list .shade .Insurance_dropdown,
.nav-list .shade .mutual_dropdown,
.nav-list .shade .claim_dropdown {
    position: absolute;
    top: 120%;
    border-radius: 7px;
    background-color: #ffffff;
    opacity: 0;
    z-index: 999;
    border-radius: 10px;
    visibility: hidden;
    transition: all .3s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.nav-item .policy_dropdown ul li a,
.nav-item .Insurance_dropdown ul li a,
.nav-item .mutual_dropdown ul li a,
.nav-list .shade .claim_dropdown a {
    display: block;
    padding: 14px 18px;
    background: #fff;
    color: #253858;
    font-size: 14px;
    transition: all .3s;
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
}

.nav-item .policy_dropdown ul li a:hover,
.nav-item .Insurance_dropdown ul li a:hover,
.nav-item .mutual_dropdown ul li a:hover .nav-list .shade .claim_dropdown a:hover {
    color: #0065ff;
}

.policy_dropdown ul li a i,
.Insurance_dropdown ul li a i,
.mutual_dropdown ul li a i {
    margin-right: 10px;
    font-size: 16px;
}

.nav-list .shade:hover .policy_dropdown,
.nav-list .shade:hover .Insurance_dropdown,
.nav-list .shade:hover .mutual_dropdown,
.nav-list .shade:hover .claim_dropdown {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.nav-item .Insurance_dropdown ul li {
    position: relative;
}

.nav-item .Insurance_dropdown ul li .sub_domain {
    position: absolute;
    top: 30px;
    right: -106%;
    width: 200px;
    transition: all .3s;
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.nav-item .Insurance_dropdown ul li:hover .sub_domain {
    visibility: visible;
    opacity: 1;
}

/* ========support-dropdown============== */
.nav-list .shade .support_dropdown {
    width: 320px;
    position: absolute;
    top: 120%;
    left: 63%;
    padding: 10px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    z-index: 999;
    transition: all .3s;
    border-top: 1px solid #f1f1f1;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: 0 6px 16px rgba(52, 105, 203, .16);
}



.support_dropdown ul li .seprator {
    display: block;
    color: #00b8d9;
    padding: 0 20px;
    position: relative;
    font-size: 12px;
}

.support_dropdown ul li .seprator::before {
    content: "";
    width: 67%;
    height: 1px;
    background: #d5f4f9;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 20px;
}

.support_dropdown ul li .seprator .badg {
    background-color: #e6fcff;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 500;
    line-height: 14.06px;
    width: auto;
    height: 24px;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.support_dropdown ul li a {
    display: flex;
    align-items: center;
    gap: 0 20px;
    color: #555;
    font-weight: 500;
    padding: 10px 20px;
    font-size: 14px;
}

.support_dropdown ul li a img {
    height: 25px;
    width: 25px;
}

.support_dropdown ul li .wrap_with_icon {
    margin-top: 10px;
    display: flex;
    max-width: 290px;
    justify-content: space-between;
}

.wrap_with_icon a,
.mobile-header .nav_list .wrap_with_icon a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wrap_with_icon a .icon {
    display: block;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 10px;
}

.wrap_with_icon a .icon img {
    margin: 0;
    height: 25px;
    width: 25px;
}

.wrap_with_icon a span {
    display: block;
    font-size: 12px;
    text-decoration: none;
    line-height: 15px;
    margin-top: 9px;
}

/* ============talk to expert dropdown========== */
.nav-list .shade .expert_dropdown {
    width: 330px;
    position: absolute;
    background: #fff;
    top: 120%;
    right: 75px;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    transition: all .3s;
    z-index: 999;
    border-top: 1px solid #f1f1f1;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top: 2px solid #0065ff;
    box-shadow: 0 6px 16px rgba(52, 105, 203, .16);
}

.nav-list .shade:hover .support_dropdown,
.nav-list .shade:hover .expert_dropdown {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.expert_dropdown a {
    display: flex;
    align-items: center;
    color: #555;
    gap: 0 20px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f2f3;
}

.talktoexpert .expert_dropdown a img {
    height: 25px;
    width: 25px;
}

.expert_dropdown a small {
    display: block;
}

/* ==================mobile - header =================== */
.mobile-header {
    display: none;
}

.mobile_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-header #hamburger-menu {
    position: relative;
    width: 44px;
    height: 30px;
    display: inline-block;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
}

.mobile-header #hamburger-menu span {
    opacity: 1;
    left: 9px;
    display: block;
    width: 26px;
    height: 2px;
    border-radius: 10px;
    color: #000;
    background-color: #333;
    position: absolute;
    transform: rotate(0);
    transition: .4s ease-in-out
}

.mobile-header #hamburger-menu span:first-child {
    top: 10
}

.mobile-header #hamburger-menu span:nth-child(2) {
    top: 11px;
    width: 20px
}

.mobile-header #hamburger-menu span:nth-child(3) {
    top: 23px
}

.mobile-header #hamburger-menu.open span:first-child {
    transform: translateY(9px) rotate(135deg);
    left: 9px
}

.mobile-header #hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-60px)
}

.mobile-header #hamburger-menu.open span:nth-child(3) {
    transform: translateY(-13px) rotate(-133deg);
    left: 9px;
}

.mobile-header .logo_side {
    display: flex;
    align-items: center;
    gap: 0 30px;
}

.logo-pb {
    margin-top: 8px;
    height: 42px;
    position: relative;
    left: -5px;
}

.logo-pb .logo-icon img {
    width: 170px;
    height: 46px;
    margin-top: -10px;
}

.mobile_menu {
    padding-left: 0;
    display: block;
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    left: -100%;
    height: calc(100vh - 60px);
    transition: all .3s;
    top: 60px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.mobile_menu.active {
    left: 0;
}

.mobile_menu .nav_list {
    display: table;
    height: auto;
    width: 100%;
}

.mobile_menu .badge {
    background-color: #e6fcff;
    color: #00b8d9;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 500;
    line-height: 14.06px;
    margin: 10px;
    width: auto;
    height: 24px;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile_menu ul img {
    width: 30px;
    margin-right: 20px;
}

.mobile_menu .nav_list li a {
    padding: 10px;
    display: block;
    position: relative;
    color: #253858;
    font-weight: 500;
    -webkit-transition: all .25s ease-in;
    transition: all .25s ease-in;
    font-size: 14px;
}

.mobile_menu .nav_list li a::after,
.mobile_menu .nav_list.nav-with-support .parent-item label::after {
    content: "\f054";
    position: absolute;
    right: 20px;
    font-family: "FontAwesome";
    font-size: 12px;
    transition: all .3s;
}

.mobile_menu .nav_list li i {
    font-size: 14px;
    color: #0065ff;
}

.mobile_menu .nav_list.nav-with-support {
    background: #f5f6fc;
    height: auto;
    width: 100%;
    margin-bottom: 0;
}

.mobile_menu .nav_list.nav-with-support .parent-item label {
    padding: 10px;
    display: block;
    margin: 3px 0;
    position: relative;
    background: #fff;
    position: relative;
    cursor: pointer;
}

.mobile_menu .group-list li a {
    padding-left: 24px;
    background: #fff;
    box-shadow: inset 0 -1px #f2f7ff;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    padding: 15px 20px;
    padding-left: 40px;
    color: #253858;
}

.mobile_menu .tab_list .group_list label {
    padding: 13px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
}

.tab_list .group_list label i {
    font-size: 20px;
    margin-right: 20px;
}

.mobile_menu .tab_list .plus-minus-toggle {
    cursor: pointer;
    height: 18px;
    position: relative;
    width: 18px;
    border: 1px solid #66738a;
    transition: all .3s;
    border-radius: 50%;
}

.tab_list .group_list .tab a {
    padding-left: 40px;
}

.tab_list .group_list .tab .sub-group-list {
    transition: all .3s;
}

.tab_list .group_list .tab .plus-minus-toggle:after,
.plus-minus-toggle:before {
    background: #66738a;
    content: '';
    height: 2px;
    left: 3px;
    position: absolute;
    top: 7px;
    width: 10px;
    transition: transform .5s ease;
}

.tab_list .group_list .tab .plus-minus-toggle:after {
    transform: rotate(90deg)
}

.tab_list .group_list .tab .plus-minus-toggle:before {
    transform: rotate(180deg)
}

.tab_list .group_list .tab.open .plus-minus-toggle::after {
    transform: rotate(-180deg);
}

.mobile_menu .nav_list.nav-with-support ul,
.tab_list .group_list .tab .sub-group-list {
    display: none;
}

.mobile_menu .nav_list.nav-with-support.open ul,
.tab_list .group_list .tab.open .sub-group-list {
    display: block;
}

.nav_list.nav-with-support.open .parent-item label::after {
    transform: rotate(90deg);
}

.mobile-header .nav_list .wrap_with_icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-header .nav_list .wrap_with_icon .icon {
    width: 50px;
}

.mobile-header .nav_list .wrap_with_icon a::after {
    content: '';
}

.mobile-header .buttonWrapper {
    display: flex;
    align-items: center;
    gap: 0 5px;
}

/* ============banner=========== */
.banner_detail h1 {
    font-size: 37px;
    font-weight: 400;
    color: #555;
}

.banner_detail h1 span {
    font-weight: 500;
}

.banner_usp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.banner_usp .usp_box {
    display: flex;
    gap: 0 20px;
}

.banner_usp img {
    width: 40px;
}

.banner_slide .owl-dots,
.feature_section .owl-dots {
    text-align: center;
    padding-top: 15px;
}

.banner_slide .owl-dots button.owl-dot,
.feature_section .owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
}

.banner_slide .owl-dots button.owl-dot.active,
.feature_section .owl-dots button.owl-dot.active {
    background-color: #0065ff;
}

/* ========sip-list=========== */
.sip_list {
    margin-top: 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #e8e9ea;
    border-bottom: 1px solid #e8e9ea;
}

.sip_list_wrap {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-bottom: 0;
    padding: 0 20px;
    overflow-x: auto;
}

.sip_list_wrap li {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 0 10px;
    min-width: 200px;
    border-left: 1px solid #e8e9ea;
}

.sip_list_wrap li:first-child {
    border: none;
}

.sip_list_wrap li img {
    height: 44px;
    width: 44px;
}

.sip_list_wrap li p {
    max-width: 115px;
    color: #231f20;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 17px;
    padding-left: 5px;
}

/* ============Insurance ========= */
.Insurance_block {
    padding: 40px 0;
}

.Insurance_wrap {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 20px 50px;
}

.Insurance_wrap .ins_box {
    cursor: pointer;
}

.Insurance_wrap .ins_box .insImg {
    background-color: #f2f7ff;
    height: 90px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    color: #ccc;
    position: relative;
    overflow: hidden;
}

.Insurance_wrap .ins_box .insImg img {
    height: 60px;
    width: 60px;
    margin-top: -15px;
}

.Insurance_wrap .ins_box .insImg .disct {
    position: absolute;
    font-size: 9px;
    text-align: center;
    background: #c9cbff;
    letter-spacing: .016em;
    width: 100%;
    /* border-radius: 8px 8px 0 0; */
    padding: 2px 0;
    bottom: 0;
    color: #253858;
}

.Insurance_wrap .ins_box span {
    font-size: 12px;
    line-height: 20px;
    display: block;
    text-align: center;
    color: #253858;
}

.Insurance_block .all_product,
.investment_calculator .all_calc {
    margin-top: 20px;
    padding: 5px 20px;
    border-radius: 40px;
    color: #0065ff;
    font-size: 12px;
    background: transparent;
    text-decoration: none;
    font-weight: 500;
    transition: all .3s;
    border: 1px solid #0065ff;
}

.Insurance_block .all_product:hover,
.investment_calculator .all_calc:hover {
    background: #0065ff;
    color: #fff;
}

/* =============more_product========= */
.more_product p {
    color: #0065ff;
    font-size: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    margin-top: 15px;
}

.more_product .more_prd_wrap {
    margin: 0 0 10px 0;
    padding: 0;
}

.more_product .more_prd_wrap a {
    color: #253858;
    background: #fff;
    font-size: 14px;
    padding: 11px 12px;
    margin: 0 12px 16px 0;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    -webkit-box-shadow: 0 6px 16px rgba(52, 105, 203, .16);
    box-shadow: 0 6px 16px rgba(52, 105, 203, .16);
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.more_product .more_prd_wrap a span.term {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: #998dd9;
    padding-bottom: 3px;
    position: relative;
}

.more_product .more_prd_wrap a span.term::before {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    display: inline-block;
    content: '';
    background: #998dd9;
    margin: -3px 3px 0 1px;
    vertical-align: middle;
}

.more_product .more_prd_wrap a span.health {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: #ff9a9a;
    padding-bottom: 3px;
    position: relative;
}

.more_product .more_prd_wrap a span.health::before {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    display: inline-block;
    content: '';
    background: #ff9a9a;
    margin: -3px 3px 0 1px;
    vertical-align: middle;
}

.more_product .more_prd_wrap a span.bi {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: #00b8d9;
    padding-bottom: 3px;
    position: relative;
}

.more_product .more_prd_wrap a span.bi::before {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    display: inline-block;
    content: '';
    background: #00b8d9;
    margin: -3px 3px 0 1px;
    vertical-align: middle;
}

/* =============feature ============= */
.feature_section {
    padding: 30px 0;
    background-color: #f2f7ff;
}

.feature_section .feature_wrap .feature_box {
    display: block;
    padding: 40px;
    padding-top: 20px;
    overflow: hidden;
    border-radius: 18px;
    min-width: 368px;
    height: 200px;
    color: #fff;
}

.feature_section .feature_wrap .feature_box.home {
    background: #ff9898 url(/assets/img/health-insurance-bg.avif) center center no-repeat;
    background-size: cover;
}

.feature_section .feature_wrap .feature_box.health {
    background: #4fdc95 url(/assets/img/investment-plans-bg.avif) right -1px top no-repeat;
    background-size: 336px;
}

.feature_wrap .feature_box .top i {
    display: block;
    font-size: 18px;
}

.feature_box .top small {
    font-size: 10px;
}

.feature_box .detail p {
    margin-top: 25px;
    font-size: 24px;
    font-weight: 400;
}

.feature_box .detail p .large_text {
    font-weight: 600;
}

/* ============best_place======== */
.best_place {
    padding: 30px 0;
    background: url(../img/services-right-dec.png) left top no-repeat, url(../img/services-left-dec.png) right top no-repeat;
    min-height: 510px;
}

.best_place_wrap h2 {
    font-size: 32px;
    font-weight: 300;
    line-height: 54px;
    color: #253858;
}

.best_place_wrap h2 span {
    font-weight: 500;
}

.best_place_detail_wrap .detail_box {
    width: 500px;
    vertical-align: top;
    background: #fff;
    margin: 40px 48px 0 0;
    padding: 20px;
    height: 180px;
    text-align: left;
    display: inline-block;
    border-radius: 8px;
    -webkit-box-shadow: 0 6px 16px rgba(52, 105, 203, .16);
    box-shadow: 0 6px 16px rgba(52, 105, 203, .16);
    position: relative;
    left: 0;
    overflow: hidden;
}

.best_place_detail_wrap .detail_box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
}

.best_place_detail_wrap .detail_box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3cd9;
    margin-bottom: 10px;
}

.best_place_detail_wrap .detail_box p {
    font-size: 14px;
    line-height: 21px;
    color: #253858;
}

.best_place_detail_wrap .detail_box:nth-child(1)::before {
    background: #2d3cd9;
}

.best_place_detail_wrap .detail_box:nth-child(2)::before {
    background: #0bbdf2;
}

.best_place_detail_wrap .detail_box:nth-child(3)::before {
    background: green;
}

.best_place_detail_wrap .detail_box:nth-child(4)::before {
    background: goldenrod;
}

.best_place_detail_wrap .detail_box:nth-child(2) {
    margin: 64px 40px 0 0;
}

.best_place_detail_wrap .detail_box:nth-child(2) h3 {
    color: #0bbdf2;
}

.best_place_detail_wrap .detail_box:nth-child(3) h3 {
    color: green;
}

.best_place_detail_wrap .detail_box:nth-child(4) h3 {
    color: goldenrod;
}

.best_place_detail_wrap .detail_box:nth-child(3) {
    margin: 24px 0 0 0;
}

.best_place_detail_wrap .detail_box:nth-child(4) {
    margin: 46px 0 20px 48px;
}

/* =============home_slider============ */
.home_slider {
    background: #f2f7ff;
    padding: 34px 0 0;
}

.home_slider .owl-dots,
.reviews .owl-dots {
    text-align: center;
    padding-top: 15px;
}

.home_slider .owl-dots button.owl-dot,
.reviews .owl-dots button.owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
}

.home_slider .owl-dots button.owl-dot.active,
.reviews .owl-dots button.owl-dot.active {
    background-color: #0065ff;
}

/* ==========investment_calculator========== */
.investment_calculator {
    padding: 40px 0;
}

.calculator_type_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0 30px;
    margin-top: 30px;
}

.calculator_type_list .calc_box {
    border: 1px solid #ccc;
    border-radius: 8px;
}

.calc_box .box_header {
    width: 100%;
    border: 10px solid #fff;
    border-radius: 20px;
    min-height: 110px;
    display: flex;
    padding: 20px;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 500;
    flex-direction: column;
    text-align: left;
    position: relative;
    color: #253858;
}

.calc_box .box_header.inv {
    background: #fff1ed;
}

.calc_box .box_header.tic {
    background: #e6fcff;
}

.calc_box .box_header.lic {
    background: #f0edff;
}

.calc_box .box_header.inv::before {
    content: "";
    background: url(../img/investment-calc.svg) no-repeat 0 0;
    height: 80px;
    width: 80px;
    position: absolute;
    bottom: 0;
    right: 10px;
}

.calc_box .box_header.tic::before {
    content: "";
    background: url(../img/term-life-calc.svg) no-repeat 0 0;
    height: 80px;
    width: 100px;
    position: absolute;
    bottom: 0;
    right: 30px;
}

.calc_box .box_header.lic::before {
    content: "";
    background: url(../img/health-calc.svg) no-repeat 0 0;
    height: 70px;
    width: 100px;
    position: absolute;
    bottom: 0;
    right: 10px;
}

.calc_box .calc_list {
    margin: 0;
    list-style: none;
    padding: 10px 20px;
}

.calc_box .calc_list li {
    border-bottom: 1px solid #dfe1e6;
}

.calc_box .calc_list li:last-child {
    border-bottom: none;
}

.calc_box .calc_list li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #253858;
    text-decoration: none;
    position: relative;
    display: block;
    padding: 16px 20px 16px 0;
    transition: all .3s ease-in;
}

.calc_box .calc_list li a::after {
    float: right;
    content: "\f061";
    font-family: "FontAwesome";
}

/* ==============advantage=========== */
.advantage {
    padding: 30px 0;
}

.advantage h2 span,
.app_block h2 span,
.reviews h2 span,
.faq h2 span {
    background: #0065ff;
    width: 70px;
    height: 4px;
    margin: 20px 0 0;
    display: block;
}

.advantage .advantage_wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0 20px;
    margin-top: 30px;
}

.advantage_wrap .advantage_box {
    position: relative;
    text-align: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #dfe1e6;
    min-height: 200px;
    transition: all .3s ease-in-out;
}

.advantage_box img {
    width: 70px;
    margin-bottom: 10px;
}

.advantage_box h3 {
    font-size: 20px;
    margin: 0;
    font-weight: 400;
    color: #253858;
    transition: all .3s ease-in-out;
}

.advantage_box p {
    font-size: 14px;
    font-weight: 400;
    padding: 5px 0 0;
    color: #253858;
}

.advantage_wrap .advantage_box:hover {
    transform: scale(1.1);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.advantage_wrap .advantage_box:hover h3 {
    font-weight: 600;
}

/* =====app_block-============= */
.app_block {
    padding: 85px 0 40px;
    background: #f7f9ff;
}

.app_block p {
    color: #5e6c84;
    font-size: 18px;
}

.app_block .app_list li {
    margin: 0 0 0 30px;
    padding: 0 0 20px 0;
    font-size: 14px;
    color: #253858;
}

.app_block .app_list li::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url(../img/star-outline.webp) no-repeat;
    display: inline-block;
    vertical-align: middle;
    background-size: cover;
    margin: 0 14px 0 -30px;
}

.app_block .mobile img {
    width: 100%;
}

/* ==========reviews============ */
/* .reviews::before {
    content: '';
    background: url(../img/testimonial-bg.avif) no-repeat center center /cover;
    height: 300px;
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
} */

.reviews .review_wrap {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 0;
}

.review_wrap .review_box {
    background: #fff;
    outline: 0;
    padding: 30px;
    text-align: center;
    -webkit-box-shadow: 0 3px 16px rgba(0, 0, 0, .16);
    box-shadow: 0 3px 16px rgba(0, 0, 0, .16);
    margin: 20px 10px 14px 20px;
    border-radius: 9px;
}

.review_box h3 {
    font-size: 20px;
    color: #253858;
}

.review_box i {
    color: #0065ff;
    font-size: 30px;
}

.reviews .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
}

.reviews .owl-nav button {
    height: 50px;
    width: 50px;
}

.reviews .owl-nav button i {
    font-size: 24px;
    transition: all .3s;
}

.reviews .owl-nav button:hover i {
    color: #0065ff;
}

/* =========partner=========== */
.partner {
    padding: 5% 0;
    background-color: #f7f9ff;
}

.partner .partner_wrap {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-gap: 20px;
    margin-top: 30px;
}

.partner .partner_wrap .ptnrLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    text-align: center;
    border-radius: 4px;
    border: solid .6px #dedfdf;
    opacity: .8;
}

.partner .partner_wrap .ptnrLogo img {
    max-width: 90%;
}



/* ===========faqqqq======= */
.faq .help_box {
    border: 1px solid #7a869a;
    display: flex;
    align-items: center;
    gap: 0 20px;
    padding: 20px;
    border-radius: 8px;
    margin: 0 0 20px;
    text-decoration: none;
    position: relative;
}

.faq .help_box i {
    font-size: 24px;
    color: #253858;
}

.faq .help_box span {
    display: block;
    padding: 0 0 5px;
    color: #5e6c84;
}

.faq .help_box span:last-child {
    font-size: 18px;
    color: #253858;
    font-weight: 500;
}

.faq img {
    height: 100%;
    width: 100%;
}

/* =====brand ===== */
.group_brands .brand_img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.group_brands .brand_img.pbp img {
    height: 50px;
    width: 130px;
}

.group_brands .brand_img.doc img {
    height: 50px;
    max-width: 60px;
}

.group_brands .brand_img.mw img {
    height: 70px;
    width: 100px;
}

.group_brands .brand_img.pb img {
    height: 50px;
    width: 50px;
}

.group_brands .brand_img.pob img {
    height: auto;
    max-width: 100px;
}

/* ======footer====== */
footer {
    position: relative;
    background: #091a38;
    padding: 32px 0;
}

.footer_link_wrap h3 {
    letter-spacing: 0;
    color: #fff;
    font-weight: 700;
    text-align: left;
    padding: 0;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
}

.dropdown_menu_footer label {
    letter-spacing: 0;
    color: #b3bac5;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 5px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.dropdown_menu_footer label::before {
    content: '\f055';
    font-family: "FontAwesome";
    color: #b3bac5;
    padding: 0 8px 1px;
    margin-right: 10px;
}

.dropdown_menu_footer .dropdown_links {
    margin-left: 51px;
    transition: all .3s;
    display: none;
}

.dropdown_menu_footer a,
.footer_link a {
    letter-spacing: 0;
    color: #b3bac5;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 10px;
    cursor: pointer;
    text-decoration: none;
}

.footer_link a {
    font-size: 14px;
}

.dropdown_menu_footer .dropdown_links a {
    margin-bottom: 0;
    font-size: 12px;
}

.dropdown_menu_footer.open .dropdown_links {
    display: block;
}

.dropdown_menu_footer.open label::before {
    content: '\f056';
}

footer .payment_section {
    width: 100%;
    background: rgba(255, 255, 255, .1);
    padding: 8px 20px 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    height: auto;
    margin-top: 20px;
}

.payment_section p {
    letter-spacing: 0;
    color: #fff;
    font-weight: 700;
    text-align: left;
    padding: 0;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
}

/* .payment_section .payment_mode{
    width: 40%;
} */
.payment_section .modeofpayment {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 0 10px;
    margin-top: 20px;
}

/* .payment_section .secured{
    width: 30%;
} */
.payment_section .secured a {
    display: block;
    position: relative;
    width: 100%;
}

.payment_section .secured a::before {
    content: "";
    width: 1px;
    height: 200%;
    background: rgba(255, 255, 255, .3);
    left: 0;
    position: absolute;
    top: -28px;
}

.payment_section .secured a::after {
    left: initial;
    right: 0;
    position: absolute;
    top: -28px;
}

.social_icon_wrap ul {
    display: flex;
    align-items: center;
    gap: 0 10px;
}

.social_icon_wrap ul a {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffffff33;
    color: #fff;
    transition: all .3s;
}

.social_icon_wrap ul a:hover {
    background-color: #ffffff69;
}

footer .disclaimer-section {
    margin-top: 10px;
}

.disclaimer-section .footer-disclaimer {
    letter-spacing: 0;
    color: #b3bac5;
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    padding: 0;
}

