@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.woff2') format('woff2'),
        url('../fonts/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Semibold';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-SemiBoldItalic';
    src: url('../fonts/Poppins-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Black.woff2') format('woff2'),
        url('../fonts/Montserrat-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Medium';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Semibold';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}




* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}

:root {
    --poppins-regular: "Poppins-Regular";
    --poppins-medium: "Poppins-Medium";
    --poppins-semibold: "Poppins-Semibold";
    --Poppins-semiBoldItalic: "Poppins-SemiBoldItalic";
    --poppins-Bold: "Poppins-Bold";
    --montserrat-regular: "Montserrat-Regular";
    --montserrat-medium: "Montserrat-Medium";
    --montserrat-semibold: "Montserrat-Semibold";
}

:root {
    --primary-color: #3769B3;
    --secondary-color: #656263;
    --bg-color: #EDF6F8;
    --text-white: #fff;
    --text-black: #000;
    --text-blue: #26B9E2;
    --text-size: 10px;
}

body {
    font-family: var(--poppins-regular);
    height: 100%;
}

html {
    font-size: var(--text-size);
    height: 100%;
}

.container {
    width: 100%;
    max-width: 1183px;
    padding: 0px 15px;
    margin: 0px auto;
}

p {
    margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

a {
    text-decoration: none;
}



ul {
    padding: 0px;
    margin: 0px;
}

.custom-btn {
    background-color: var(--primary-color);
    color: var(--text-white);
    font-size: 1.8rem;
    font-family: var(--montserrat-medium);
    padding: 12px 20px;
    border-radius: 200px;
}

.custom-btn:hover {
    background-color: #26B9E2;
}

a.custom-btn {
    color: var(--text-white);
    border: 0px !important;
}

.custom-btn-arrow {
    background-color: var(--primary-color);
    color: var(--text-white);
    font-size: 1.8rem;
    font-family: var(--montserrat-medium);
    padding: 12px 20px;
    border-radius: 200px;
}


.custom-btn:hover {
    color: var(--text-white);
}

.btn_secondary {
    background-color: var(--secondary-color);
    color: var(--text-white);
    font-size: 1.8rem;
    font-family: var(--montserrat-medium);
    padding: 12px 20px;
    border-radius: 6px;
}

.btn_secondary:hover {
    color: var(--text-white);
}

/** Header **/

header {

    display: flex;
    align-items: center;
}

.navbar-nav {
    display: block !important;
    float: right;
}

.navbar-expand-lg .navbar-nav {
    flex-direction: row;
}

.nav-link {
    color: var(--text-black);
    font-family: var(--montserrat-medium);
    font-size: 1.7rem;
    display: inline-block;
    cursor: pointer;
}

header ul li .nav-link {
    margin-right: 20px;
    padding-top: 30px;
    padding-bottom: 25px;
}

header ul li .nav-link.custom-btn {
    padding: 12px 20px;
}

header ul li:last-child .nav-link {
    margin-right: 0px;
    margin-bottom: 13px;
}

header .dropdown-item {
    font-size: 1.4rem;
    font-family: var(--montserrat-medium);
}

header .dropdown-menu {
    border: 0;
    transform: translate(1px, 30px) !important;
    box-shadow: 0px 0px 3px 0px #ccc;
    background: #fff;
    border-radius: 6px;
    min-width: 120px;
    padding: 9px 8px;
}



.ham-menu {
    width: 40px;
    display: none;
}

.mobile-logo {
    display: none;
}

.logo {
    width: 240px;
}

header .dropdown-toggle::after {
    position: relative;
    top: 2px;
}

.cross-icon {
    display: none;
}

.arrow-img {
    width: 13px;
    height: 26px;
}

.main {
    display: block;
}

.rotate {
    transform: rotate(180deg);
}

.main-2 {
    display: block;
}

.rotate-2 {
    transform: rotate(180deg);
}

/*menu*/
.menu_item {
    width: auto;
    float: right;
}

.menu-links li.active .nav-link,
.nav-link:hover {
    border-bottom: 5px solid #3769B3;
}

.menu-links li {
    display: inline-block;
}

.menu-links li.dropdown .dropdown-menu {
    inset: 55px auto auto 0px !important;
    min-width: 300px;
}

.nav-item.dropdown .dropdown-menu li {
    padding: 0px 5px;
    width: 100%;
}

.nav-item.dropdown .dropdown-menu li a {
    padding: 10px 10px;
    width: 100%;
}

.nav-item.dropdown .dropdown-menu li a:hover {
    border: 0px;
}

/** Banner Section **/

.home-banner {
    /* display: flex;
    align-items: center; */
    background: url("../images/home/banner_bg.png") no-repeat;
    background-size: 100%; 

}

.banner-image {

    background-repeat: no-repeat;




    background-position: center center;
}

.banner-text h2 {
    color: var(--text-white);
    font-size: 2.5rem;
    font-family: var(--poppins-regular);
}

.banner-text h1 {
    color: var(--text-white);
    font-size: 4.5rem;
    font-family: var(--poppins-semibold);
    margin-bottom: 16px;
    margin-bottom: 50px;
}

.banner-text {
    padding-bottom: 25px;
}

.banner-text p {
    font-size: 2.5rem;
    line-height: normal;
    width: 100%;
    max-width: max-content;
    margin-bottom: 40px;
    color: var(--text-white);
}

.home-banner .custom-btn svg {
    stroke: #fff;
}

.home-banner .custom-btn {
    background: #fff;
    color: #3769B3;
    font-size: 26px;
    font-weight: bold;
}

.home-banner .custom-btn svg {
    stroke: #3769B3;
}

/** Footer **/
.mb-6 {
    margin-bottom: 4.5rem !important;
}

footer {
    background-color: #03B9EC;

    width: 100%;
    padding-top: 30px;


}

footer h3 {
    margin-bottom: 25px;
    color: #fff;
    font-weight: bold;
}

footer ul li {
    margin-bottom: 20px;
}



footer ul li a {
    color: var(--text-white);
    font-size: 1.5rem;
    font-family: var(--montserrat-medium);
}

footer ul li a .f_arrow {
    vertical-align: middle;
    display: inline-block;
    margin-right: 0px;
    stroke: #fff;
    margin-top: -4px
}

footer ul li a:hover {
    color: var(--text-black);
}

footer ul li a:hover .f_arrow {
    stroke: #000;
}

.footer-logo {
    width: 275px;
    margin-bottom: 22px;
}

.social-links li {
    margin-bottom: 0px;
    margin-right: 20px;
}

.social-links li:last-child {
    margin-right: 0px;
}

.social-links svg {
    fill: #000;
}

.copyright {
    padding: 15px 0px;
    background: #3769B3;
}

.copyright p {
    font-size: 1.5rem;
    text-align: left;
    color: #fff;

}

.copyright a {
    font-size: 1.5em;
    color: #fff;
    margin: 0px 5px;
}

.copyright a:hover {
    color: #fff;
    text-decoration: underline;
}

.copyright {
    color: #fff;
}

footer .custom-btn {
    background: #fff;
    color: #000 !important;
    font-size: 1.3em;
    padding: 15px 15px 15px 10px;
}

footer .custom-btn:hover {
    background: #fff;
}

/*footer .custom-btn:hover{background:#0F51B2;color:#fff!important;}
footer .custom-btn:hover svg{fill:#fff;}*/
footer .custom-btn.blue_bttn {
    background: #0F51B2;
    color: #fff !important;
    font-size: 1.3em;
    padding: 15px 15px 15px 5px;
    border: 0px;
}

footer ul li a.custom-btn svg {
    stroke: none;
    margin-right: 5px;
}

/** Globel CSS **/

.banner-txt h1 {
    font-size: 3rem;
    font-family: var(--Poppins-Semibold);
    color: var(--text-white);
    font-weight: 400;
}






/** OverView Banner **/

.overview-banner {
    background-image: url("../images/services/overview_banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;

}

.medicare-banner {
    background-image: url("../images/services/medicare-evaluation.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;

}

.health-banner {
    background-image: url("../images/services/health-wellness-banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;

}

.aging-banner {
    background-image: url("../images/services/aging_place_banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;

}

.financial-banner {
    background-image: url("../images/services/financial-banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;

}

.community-banner {
    background-image: url("../images/services/community-banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;

}

.aditional-banner {
    background-image: url("../images/services/aditional-banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;

}

.resource-banner {
    background-image: url("../images/resources/resource-banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;

}

.our_resources {
    padding-bottom: 0px !important;
}

.resource_box {
    display: flex;
    padding: 70px 0px;
}

.resource_box .r_box1,
.r_box3,
.r_box2 {
    border: 1px solid #26B9E2;
    margin-right: 15px;
    width: 32%;
    padding: 0px;
    border-radius: 10px;
}

.resource_box img {
    width: 100%;
}

.resource_box h2 {
    padding: 15px;
    color: #3769B3;
    font-weight: bold;
}

.resource_box p {
    padding: 0px 15px 15px 15px;
    font-size: 1.7rem;
}

.resource_emailbox {
    background-image: url("../images/resources/resource_email.png");
    padding: 60px 0px;
    text-align: center;
}

.resource_emailbox h2 {
    color: #fff;
    font-size: 4rem;
    margin-bottom: 20px;
}

.resource_emailbox h3 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.email-subsc {
    border: 5px solid #26B9E2;
    width: 500px;
    margin: 20px auto;
    border-radius: 10px;
    background: #fff;
    padding: 20px;
}

.email-subsc h2 {
    margin-bottom: 15px;
    color: #000;
    font-size: 2rem;
    text-align: left;
}

.email-subsc .form-control {
    padding: 10px;
}

/** BreadCumb Section **/

.breadcrmb-sec {
    padding: 10px 0px;
    background: #f3f3f3;
}

.breadcrmb {
    display: flex;
    justify-content: space-between;
    align-items:start;
}



.breadcrmb ul li {
    margin-right: 10px;
}

.breadcrmb ul li:last-child {
    margin-right: 0px;
}


.breadcrmb ul li a {
    color: var(--text-black);
    font-size: 1.8rem;
}

.breadcrmb ul li .active {
    color: var(--primary-color);
}

.bread-img {
    width: 15px;
}

.breeadcumb-text {
    font-size: 2rem;
    font-family: var(--Poppins-semiBoldItalic);
    color: var(--text-black);
    cursor: pointer;
}

.breeadcumb-text:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/** OverView Section **/

.overview-sec {

    padding: 60px 0px;
}

.overview-sec .list_nstyle {
    margin-bottom: 0px;
}

.bg_blue {
    background-color: var(--bg-color);
}

.overview-text h1 {
    font-size: 3rem;
    font-family: var(--poppins-semibold);
    margin-bottom: 20px;
    text-align: left;
    color: var(--primary-color);
}

.overview-text p {
    font-size: 1.7rem;
    text-align: left;
    line-height: 33px;
}

.overview-sec .ov_rhtimg img {
    width: 100%
}

/** Services Section **/

.services-section {
    padding: 60px 0px;
}

.heading {
    margin-bottom: 33px;
}

.heading h1 {
    color: var(--primary-color);
    font-size: 3rem;
    font-family: var(--poppins-semibold);
    text-align: center;
}

.services-btn {
    background-color: var(--bg-color);
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    width: 100%;
}

.services-btn a {
    color: var(--primary-color);
    font-size: 1.9rem;
}

.services-btn:hover a {
    color: var(--primary-color);
}

.services-btn-bx {
    margin-bottom: 30px;
}



/** Benifit Section **/

.benifit-sec {
    padding: 60px 0px;
}



/** Services Section **/

.services-inner-bx {
    margin-bottom: 40px;
}

.services-inner-bx:last-child {
    margin-bottom: 0px;
}

.services-image-bx {
    width: 68px;
    margin-right: 15px;
}

.service-inner-txt h1 {
    font-size: 2.5rem;
    font-family: var(--montserrat-semibold);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-inner-txt p {
    font-size: 2rem;
    line-height: 33px;
}

.service-inner-txt p:last-child {
    color: var(--primary-color);
    cursor: pointer;
}

/** Risk Services Section **/
.risk-sec {
    padding: 60px 0px;
}

.risk-text h1 {
    font-size: 3rem;
    font-family: var(--poppins-semibold);
    color: var(--primary-color);
    margin-bottom: 40px;
}

.risk-text ol {
    margin-bottom: 0px;
}

.risk-text ol li {
    font-size: 2rem;
    list-style-type: decimal;
}

.risk-text ol li {
    margin-bottom: 30px;
}

.risk-text ol li:last-child {
    margin-bottom: 0px;
}

/*risk_list medicare*/
.risk_list {
    margin: 0px;
    padding: 0px;
}

.risk_list li {
    font-size: 2rem;
    margin-right: 20px;
    list-style-type: decimal;
    width: 46%;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #77D7F2;
    border-radius: 20px;
    padding: 20px;
}

.risk_list li strong {
    margin-bottom: 15px;
    display: block;
    color: #26B9E2;
}

.risk_list li p {
    font-size: 1.8rem;
}


.btitle_blue {
    background: #26B9E2;
}

.btitle_blue2 {
    background: #3769B3;
}

.btitle_green {
    background: #72E468;
}

.btitle_orange {
    background: #F99159;
}

.btitle_gold {
    background: #CEC816;
}

.plan-outter-bx .card {
    border-radius: 15px;
    margin-bottom: 60px;
}

.plan-outter-bx .card .card-header {
    border-radius: 15px 15px 0px 0px;
    padding: 10px 10px 10px 20px;
}

.plan-outter-bx .card {
    margin-right: 40px;
}

.card_marginb0,
.last-card {
    margin-bottom: 0px !important;
}

/** Medicare Services Section **/
.medicare-services {
    padding: 60px 0px;
    background-color: var(--bg-color);
}

.last-card {
    margin-bottom: 0px;
}

.card-header h1 {
    font-size: 2.5rem;
    color: var(--text-white);
    font-family: var(--montserrat-semibold);
    text-align: center;
}

.card p {
    margin-bottom: 15px;
}

.plan-card-body {
    padding: 20px;
}

.plan-card-body p {
    font-size: 1.8rem;
    line-height: 30px;
}

.plan-card-heading h1 {
    font-family: var(--poppins-semibold);
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.plan-header {
    background-color: var(--secondary-color);
}

/** Our Story Banner **/

.our-story-banner {
    background-image: url("../images/about_us/ourstory_banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    padding: 30px 0px;
}

.our-story-sec {
    padding: 60px 0px;
}

.our-story-text {
    margin-bottom: 25px;
}

.our-story-text h1 {
    color: var(--primary-color);
    font-family: var(--poppins-semibold);
    margin-bottom: 30px;
    font-size: 3rem;
}

.our-story-text p {
    font-size: 1.7rem;
    line-height: 30px;
    margin-bottom: 25px;
}

.our-story-text p:last-child {
    margin-bottom: 0px;
}

.our-story p {
    margin-bottom: 25px;
    font-size: 1.7rem;
    line-height: 30px;
}

.our-story-sec img {
    width: 100%;
}

/*
.our-story-img{
    background-image: url("../images/about_us/ourstory_banner.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 353px;;
}*/

.our-mission-banner {
    background-image: url("../images/about_us/ourmission_banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    padding: 30px 0px;
}

.our-vision-banner {
    background: #1F62A0 url("../images/about_us/ourvision_banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    padding: 30px 0px;
}

.free_medicare_report {
    background: #1F62A0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    padding: 30px 0px;
}

/*our vision*/
.list_consec .col-xl-7 {
    padding-right: 30px;
}

.our_vtitle h2 {
    font-size: 28px;
    font-weight: bold;
    margin-top: 40px;
}

.list_nstyle {
    margin-top: 20px;
    margin-bottom: 50px;
    list-style: none;
}

.list_nstyle li {
    background: url(../images/about_us/list_img.svg) 0px 2px no-repeat;
    background-size:20px;
    list-style: none;
    padding-left: 30px;
    padding-bottom: 0px;
}

.list_nstyle li:before {
    display: none;
}

.list_consec {
    padding-top: 30px;
}

.padding_20r {
    padding: 20px !important;
    border-radius: 10px;
    font-weight: bold;
}

/**/
.mx-640 {
    max-width: 640px;
    width: 100%;
    margin-bottom: 0px !important;
}

.our-missionc {
    padding-top: 0px;
    margin-right: 50px;
}

.our-misson-img img {
    height: 80%;
}

.our-misson-img {
    text-align: left;
}

.our-missionm .col-xl-6 {
    padding: 0px;
}

.box_our1 {
    background: #E0F8FF;
    border-radius: 20px;
    padding: 20px;
    font-size: 1.7em;
}

.box_our2 {
    background: #ECF4FF;
    border-radius: 20px;
    padding: 20px;
    font-size: 1.7em;
}

.box_our3 {
    background: #F2F3F5;
    border-radius: 20px;
    padding: 20px;
    font-size: 1.7em;
}

.our-story-sec.our-missionm img {
    width: auto;
}

.our-story ul li {
    font-size: 1.7rem;
    margin-bottom: 20px;
    position: relative;
}

.our-story ul li::before {
    content: "";
    position: absolute;
    left: -21px;
    top: 10px;
    background-color: #000;
    height: 13px;
    width: 13px;
    border-radius: 100%;
}

.our-story ul li:last-child {
    margin-bottom: 0px;
}

.mb-25 {
    margin-bottom: 25px;
}

.team-img {
    width: 175px;
    margin-right: 35px;
}

.team-member-name {
    margin-bottom: 15px;
}

.team-member-name h1 {
    font-size: 2.5rem;
    font-family: var(--montserrat-semibold);
    margin-bottom: 5px;
    color: #253A59;
}

.team-member-name p {
    color: #26B9E2;
    font-size: 2rem;
    font-family: var(--montserrat-semibold);
}



.team-member-bx:last-child {
    margin-bottom: 0px;
}



.accordion-txt p {
    font-size: 1.7rem;
    cursor: pointer;
}

.accrodion-read-txt {
    margin-right: 10px;
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 15px;
}

.accrodion-read-txt img {
    width: 20px;
    height: 20px;
}

.accrodion-read-txt p {
    font-size: 1.7rem;
    color: #fff;
    cursor: pointer;
}

.arrow-img {
    width: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.accrodion-text-bx {

    padding-bottom: 13px;
}

.accordion-inner-body p {
    font-size: 1.7rem;
    line-height: 30px;
}


/** Resource Card Section **/

.resource_page .list_nstyle {
    margin-top: 0px;
}

.resource_page .list_nstyle li {
    font-weight: bold;
}

.resource-card-sec {
    background-color: var(--bg-color);
    padding: 60px 0px;
}

.card-bx {
    padding: 0px;
}

.resource-card {
    margin-bottom: 0px;
    height: 100%;
    max-height: 480px;
}

/* .card-img{
    background-image: url("../images/card-img-1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 241px;
}

.card-img-2{
    background-image: url("../images/card-img-2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 241px;
}

.card-img-3{
    background-image: url("../images/card-img-3.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 241px;
} */

.card-text {
    padding: 15px;
}

.card-text h1 {
    font-size: 2.2rem;
    font-family: var(--montserrat-semibold);
    margin-bottom: 10px;
}

.card-text p {
    font-size: 2rem;
    line-height: 30px;
}

/** News You Section **/
.news-you-sec {
    padding: 60px 0px;
    /* background-image: url("../images/news-you-banner-img.jpg"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 518px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-you-txt h1 {
    font-size: 4rem;
    font-family: var(--poppins-Bold);
    margin-bottom: 30px;
    color: var(--text-white);
    text-align: center;
}

.news-you-txt p {
    font-size: 2rem;
    line-height: 30px;
    color: var(--text-white);
    text-align: center;
}


/** Contact Banner **/
.contact-banner {
    background-image: url("../images/contactus/contactus_banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    padding: 30px 0px;
}

/** Form Section **/
.common-btn svg {
    stroke: #fff;
}

.form-sec {
    padding: 30px 0px;
    position: relative;

}

.contact-us-img {
    padding-left: 60px;
}

.question_box {
    /*border-radius:20px; 
-webkit-box-shadow: -1px -1px 15px 0px rgba(6,28,61,0.49);
-moz-box-shadow: -1px -1px 15px 0px rgba(6,28,61,0.49);
box-shadow: -1px -1px 15px 0px rgba(6,28,61,0.49);*/
    margin-bottom: 40px;
    padding-top: 20px;
}

.contact-form {
    width: 100%;
    -webkit-box-shadow: -1px -1px 15px 0px rgba(6, 28, 61, 0.49);
    -moz-box-shadow: -1px -1px 15px 0px rgba(6, 28, 61, 0.49);
    box-shadow: -1px -1px 15px 0px rgba(6, 28, 61, 0.49);
    padding: 40px;
    border-radius: 20px;
    margin-right: 60px;
}

.contact-form label {
    font-size: 1.8rem;
    font-family: var(--poppins-medium);
}

.bg-fade-bx img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.form-control {
    padding: 8px;
    border-radius: 6px;
    border: 3px solid #ccc;
    font-size: 1.9rem;
}


.bg-fade-bx {
    border-radius: 20px;

    padding: 20px;
    color: #000;
    height: 100%;
    display: flex;
    justify-content: end;
    flex-direction: column;
}

.bg-fade-bx h1 {
    font-size: 3rem;
    font-family: var(--montserrat-semibold);
    margin-bottom: 35px;
    margin-top: 20px;
    font-weight: 500;
}

.bg-fade-bx p {
    font-size: 1.7rem;
    margin-bottom: 10px;
    font-family: var(--poppins-medium);
    color: var(--text-Black);
    margin-bottom: 25px;
}

.bg-fade-bx p span {
    font-family: var(--poppins-semibold);
}

.bg-fade-bx p:last-child {
    margin-bottom: 0px;
}

.progerss_bar ul {
    text-align: center;
}

.progerss_bar ul li {
    display: inline-block;
    font-size: 22px;
    margin: 30px;
}

.progerss_bar ul li:first-child span {
    background: #E8F1FF;
    border-radius: 200px;
    color: #000;
    width: 60px;
    line-height: 60px;
    height: 60px;
    text-align: center;
    display: inline-block;
}

.progerss_bar ul li span {
    background: #E8F1FF;
    border-radius: 200px;
    color: #000;

    width: 60px;
    line-height: 60px;
    height: 60px;
    text-align: center;
    display: inline-block;
}

.act_bg span,
.act_bg2 span,
.act_bg3 span {
    background: #3769B3 !important;
    color: #fff !important;
}

.act_bg strong,
.act_bg2 strong,
.act_bg3 strong {
    color: #3769B3;
}

.progerss_bar ul li strong {
    display: flex;
    margin-top: 30px;
}

.progerss_bar ul li:before {
    content: '';
    position: absolute;
    height: 5px;
    width: 19%;
    margin-left: 0px;
    background: #E8F1FF;
    top: 85px;
    z-index: -1;
}

/*.progerss_bar ul li.act_bg:before{background:#3769B3;}*/
.progerss_bar ul li.act_bg2:after,
.progerss_bar ul li.act_bg3:after {
    content: '';
    position: absolute;
    height: 5px;
    width: 16%;
    margin-left: -228px;
    top: 85px;
    z-index: -1;
    background: #3769B3;
}

.progerss_bar ul li:last-child:before {
    display: none;
}

.hr-line {
    border-bottom: 2px solid var(--primary-color);
    margin: 35px 0px;
}

.questionary-outter-bx {
    padding: 30px;
}

.form_bg {
    background: #EFF5FF;
}

.ques_title_m {
    font-size: 28px;
    margin: 20px 0px;
    font-weight: bold;
}

.ques_title {
    font-size: 22px;
    margin-bottom: 15px;
}




.questionary-outter-bx:last-child {
    border-bottom: none;
}

.questionary-outter-bx h1 {
    font-size: 3rem;
    font-family: var(--montserrat-semibold);
    margin-bottom: 25px;
}

.questionary-inner-bx {

    padding: 10px 0px 10px 10px;
    border-radius: 10px;
    margin-right: 10px;
    margin-left: 15px;
}

.questionary-inner-bx input[type="radio"] {
    height: 20px;
    width: 20px;
    border: 3px solid #ccc;
}

.form-check-input {
    margin-right: 10px;
}

.questionary-inner-bx label {
    font-size: 1.7rem;
    
font-family: var(--poppins-regular);
}

.questionary-outter-bx .form-select {
    padding: 12px;
    font-size: 1.7rem;
    width: 100%;
    max-width: 310px;
    border-radius: 10px;
    border: 3px solid #ccc;font-family: var(--poppins-regular);
}


/** Preview History Section **/
.preview-history-sec {
    padding: 60px 0px;
}

.question {
    margin-bottom: 40px;
}

.question h1 {
    font-size: 2.2rem;
    font-family: var(--montserrat-semibold);
    margin-bottom: 11px;
}

.question p {
    font-size: 2rem;
    font-family: var(--montserrat-semibold);
}



/** Genrate Plan Section 
.genrate-plan-sec{
    padding: 60px 0px;
}

.email-enter-bx h1{
    font-size: 3rem;
    font-family: var(--montserrat-semibold);
    margin-bottom: 30px;
    color: var(--primary-color);
}

.email-bx{
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: 6px;
}

.email-bx label{
    font-size: 2rem;
    font-family: var(--montserrat-medium);
}

.card-body-bx{
    padding: 40px;
    background-color: #D0E9F1;
}

.card-body-bx p{
    font-size: 2rem;
    line-height: 36px;
}

.plan-card{
    padding: 60px;
    background-color: var(--primary-color);
}
.plan-card h1{
    font-size: 4rem;
    color: var(--text-white);
    font-family: var(--montserrat-semibold);
    text-align: center;
    margin-bottom: 0px;
}
**/

/*term and conditions*/
/* Policy Section */

.privacy-policy-banner {
    background: #1F62A0 url("../images/privacy_policy.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    padding: 30px 0px;
}

.terms-conditions-banner {
    background: #1F62A0 url("../images/terms_conditions.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    padding: 30px 0px;
}

.bg_grey {
    background: #F0F6FF;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
}

.bg_bluee {
    background: #E9FAFF;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
}

.policy-bx {


    border-radius: 30px;
    padding: 60px 0px;
}



.policy-txt h1 {
    font-size: 2.2rem;
    font-family: var(--poppins-medium);
    margin-bottom: 13px;
    color: var(--primary-color);
}

.policy-txt p {
    font-size: 2rem;
    line-height: 36px;
}

/* Terms Banner */
.terms-banner {
    background-image: url("../images/terms.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0px;
}

/*
 
 .dropdowns {
  position: relative;
  display: inline-block;
 
  
}

.dropdown::before,
.dropdown::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 4px;
  height:12px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: 50% calc(100% - 2px);
}

.dropdown::before {
  transform: rotate(45deg);
}

.dropdown::after {
  transform: rotate(-45deg);border:0px;
}*/

.dropdown-toggle::after {
    border: 0px;
}

.nav-item.dropdown .dropdown-menu li a {
    margin-right: 0px;
}

.nav-item.dropdown .dropdown-menu li a:hover {
    background: #03B9EC;
    color: #fff;
    border-radius: 6px;
}

.contact_link {
    border-bottom: 5px solid #fff;
}

/*Services box*/
/*.services-box .row{
	
	 margin-right: calc(var(--bs-gutter-x)* -.5);
    margin-left: calc(var(--bs-gutter-x)* -.5);
}*/
.g-4,
.gy-4 {
    --bs-gutter-x: 3rem !important;
    --bs-gutter-y: 0rem !important;
}

.services-box {
    padding-bottom: 30px;
}

.services-box .col .card {
    border: 5px solid #D2E1F8;
    border-radius: 20px 20px 20px 20px;
    margin-bottom: 60px;
}

.services-box .col .card:hover {
    border: 5px solid #26B9E2;
    background: #26B9E2;
}

.services-box .col .card:hover .card-text {
    padding: 0px;
    text-align: center;
    color: #fff;
}

.bd-placeholder-img {
    border-radius: 16px 16px 0px 0px;
}

.services-box .card-text {
    padding: 0px;
    text-align: center;
}

.services-box.home_con .title-text p {
    text-align: left;
    font-size: 30px;
    line-height: normal;
}

.borderr {
    border: 1px solid red !important;
}

.home_list .col-xl-5 img {
    width: 80%;
    margin-top: 20px;
}

.services-box.home_con p {
    font-size: 20px;
}

.services-box.home_con h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.list_consec.home_list .list_nstyle {
    margin-top: 0px;
    margin-bottom: 20px;
    background: #EAFBFF;
    padding: 30px 30px 20px 30px;
    border-radius: 20px;
}

.home_servicen {
    padding-bottom: 20px;
}

.home_servicen img {
    margin-right: 20px;
}

.home_servicen {
    font-size: 24px;
}

.home_servicen .col-4 {
    display: flex;
}

.align-middle {
    vertical-align: middle !important;
}

.home_servicen {
    font-size: 22px;
}

.line-height70 {
    line-height: 70px;
}

.home_servicen a {
    color: #333;
}

.home_servicen a:hover {
    color: #03B9EC;
}

.home_stitle {
    color: var(--text-black);
    font-size: 3.5rem;
    font-family: var(--poppins-semibold);
    margin-bottom: 16px;
}

.home_servicen h2 {
    font-weight: bold;
    margin-bottom: 25px;
}

/*common title content*/

.p-60 {
    padding: 8rem 0 !important;
}

.pt-60 {
    padding-top: 4rem !important;
}

.title-text h2 {
    color: var(--text-blue);
    font-size: 2.5rem;
    font-family: var(--poppins-regular);
    text-align: center;
}

.title-text h3 {
    color: var(--text-black);
    font-size: 3.5rem;
    font-family: var(--poppins-semibold);
    margin-bottom: 16px;
    text-align: center;
}

.title-text p {
    font-size: 2rem;
    line-height: 30px;
    text-align: center;
    width: 100%;

    margin-bottom: 40px;
    color: var(--text-black);
}

/**/
.mob_block {
    display: none;
}

.testimonials {
    background: #EAFBFF;
}

.testimonials .title-text {
    padding-top:40px; padding-top:10px;
}

.testimonials .title-text h3,
.testimonials .title-text h2 {
    text-align: left;
}

.testimonial {
    position: relative;

    width: 100%;
    padding: 50px 0;
    overflow: hidden;padding-bottom:20px
}

.slide p .bi-quote {
    color: #26B9E2;
}

.testimonial .image {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial .slide {
    display: flex;
    align-items: start;
    justify-content: left;
    flex-direction: column;
    row-gap: 30px;
    height: 100%;
    border-radius: 20px;
    background: #fff;
    width: 100%;
    border: 5px solid #26B9E2;
    padding: 30px;
}

.slide p {
    text-align: left;
    padding: 0 0px;
    font-size: 20px;
    font-weight: 400;
    color: #333;
}

.slide .quote-icon {
    font-size: 30px;
    color: #4070f4;
}

.slide .details {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-top: 30px;
}

.details .name {
    font-size: 34px;
    font-weight: 600;
    color: #333;
}

.details .job {
    font-size: 24px;
    font-weight: 400;
    color: #333;
}

/* swiper button css */
.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
    display: none;
}

.nav-btn {
    height: 64px !important;
    width: 64px !important;

    transform: translateY(30px);
    background-color: rgba(0, 0, 0, 0.1);
    transition: 0.2s;
}

.swiper-button-next,
.swiper-button-prev {
    top:0% !important;
}

.swiper-button-next {
    background: url(../images/testimonials/right_icon.svg) no-repeat;
}

.swiper-button-prev {
    background: url(../images/testimonials/left_icon.svg) no-repeat;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    /*left: 110px !important;
    right: auto !important; 20-3-25*/   
	right: 18px !important;
    left: auto !important;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    right: 110px!important;
    left: auto!important;/*20-3-25*/  
}
.nav-btn::after,
.nav-btn::before {
    font-size: 20px;
    color: #fff;
}

.swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.8);
}

.swiper-pagination-bullet-active {
    background-color: #4070f4;
}

@media screen and (max-width: 768px) {
    .slide p {
        padding: 0 20px;
    }

    .nav-btn {
        display: none;
    }
}

/*scroll button*/
.scroll-button {
    width: auto;

    top: 120px;
    z-index: 100000;
    --e-transform-origin-x: right;
    right: -12px;
    position: fixed;


}

.scroll-button svg {
    height: 300px;
}

/*header top*/
.top_menu {
    text-align: right;
    color: var(--text-white);
    font-size: 18px;
    padding-top: 3px;
}

.top_menu a {
    color: var(--text-white);
    font-size: 18px;
    margin-right: 10px;
    margin-left: 10px;
}

.header-top {
    background: #26B9E2;
    padding: 10px 0px;
}

.top_menu .active {
    color: #3769B3;
}

.top_menu a:hover {
    color: #3769B3;
}

/*font size control*/
.font-size-contorl {
    background: #fff;
    display: inline-flex;
    border-radius: 200px;
    padding: 0px 10px;
}

.fbox1 button,
.fbox2 button,
.fbox3 button {
    background: none;
    margin-right: 10px;
    padding: 3px;
    border: 0px;
    font-size: 18px;
}

/**/
/*login*/
.form_outer {
    width: 100%;
    -webkit-box-shadow: -1px -1px 15px 0px rgba(6, 28, 61, 0.49);
    -moz-box-shadow: -1px -1px 15px 0px rgba(6, 28, 61, 0.49);
    box-shadow: -1px -1px 15px 0px rgba(6, 28, 61, 0.49);
    padding: 40px;
    border-radius: 20px;
    margin-right: 60px;
    background: url(../images/login_img.png) right no-repeat;
    margin-bottom: 40px;
}

.login-form {
    box-shadow: none;
    width: 500px;
    padding: 0px;
}

.login-form form {
    background: #E7FAFF;
    padding: 30px;
    border-radius: 20px;
}

.login-form h2 {
    font-size: 26px;
    margin-bottom: 30px;
}

.register_link a {
    font-size: 20px;
    color: #3769B3;
    text-decoration: underline;
}

.register_link {
    text-align: right;
}

/**/
.form_outer.register_bg {
    background: url(../images/register_bg.png) right no-repeat;
}

.zipcode {
    width: 50%;
}

/*free medicare report*/

.multisteps-form__progress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    padding-bottom: 30px;
}

.multisteps-form__progress-btn {
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    cursor: pointer;
    text-align: center;
    transition-delay: 0s;
    position: relative;
    padding-top: 20px;
    color: rgba(108, 117, 125, 0.7);
    text-indent: -9999px;
    border: none;
    background-color: transparent;
    outline: none !important;
    cursor: pointer;
}

@media (min-width: 500px) {
    .multisteps-form__progress-btn {
        text-indent: 0;
    }
}

.multisteps-form__progress-btn:before {
    position: absolute;
    top: 2px;
    left: 50%;
    display: block;
    width: 13px;
    height: 13px;
    content: '';
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: all 0.15s linear 0s, -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s, -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    border: 2px solid currentColor;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 3;
}

.multisteps-form__progress-btn:after {
    position: absolute;
    top: 8px;
    left: calc(-50% - 13px / 2);
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    display: block;
    width: 100%;
    height: 2px;
    content: '';
    background-color: currentColor;
    z-index: 1;
}

.multisteps-form__progress-btn:first-child:after {
    display: none;
}

.multisteps-form__progress-btn.js-active {
    color: #007bff;
}

.multisteps-form__progress-btn.js-active:before {
    -webkit-transform: translateX(-50%) scale(1.2);
    transform: translateX(-50%) scale(1.2);
    background-color: currentColor;
}

.multisteps-form__form {
    position: relative;
}

.multisteps-form__panel {
    padding: 1.5rem;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    display: none;
    border-radius: 20px !important;
    padding: 0px;
    margin: 0px;
    position: relative;
}

.multisteps-form__panel.js-active {
    padding: 1.5rem;
    height: auto;
    opacity: 1;
    visibility: visible;
    display: block;
}

.multisteps-form__panel[data-animation="scaleOut"] {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.multisteps-form__panel[data-animation="scaleOut"].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.multisteps-form__panel[data-animation="slideHorz"] {
    left: 50px;
}

.multisteps-form__panel[data-animation="slideHorz"].js-active {
    transition-property: all;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
    transition-delay: 0s;
    left: 0;
}

.multisteps-form__panel[data-animation="slideVert"] {
    top: 30px;
}

.multisteps-form__panel[data-animation="slideVert"].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    top: 0;
}

.multisteps-form__panel[data-animation="fadeIn"].js-active {
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    transition-delay: 0s;
}

.multisteps-form__panel[data-animation="scaleIn"] {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.multisteps-form__panel[data-animation="scaleIn"].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
}


.multisteps-form__progress-btn::after {
    top: -5px;
    background-color: #E8F1FF;
    height: 5px;
}

.multisteps-form__progress-btn.personal::before {
    width: 40px;
    height: 40px;
    top: -25px;
    content: '1';
    color: #007bff;
    line-height: 38px;
}

.multisteps-form__progress-btn.personal.js-active::before {
    background-color: #007bff;
    color: #fff;
}

.multisteps-form__progress-btn.medical::before {
    width: 40px;
    height: 40px;
    top: -25px;
    content: '2';
    color: #007bff;
    line-height: 38px;
}

.multisteps-form__progress-btn.medical.js-active::before {
    background-color: #007bff;
    color: #fff;
}

.multisteps-form__progress-btn.preview::before {
    width: 40px;
    height: 40px;
    top: -25px;
    content: '3';
    color: #007bff;
    line-height: 38px;
}

.multisteps-form__progress-btn.preview.js-active::before {
    background-color: #007bff;
    color: #fff;
}

.multisteps-form__progress-btn.generate::before {
    width: 40px;
    height: 40px;
    top: -25px;
    content: '4';
    color: #007bff;
    line-height: 38px;
}

.multisteps-form__progress-btn.generate.js-active::before {
    background-color: #007bff;
    color: #fff;
}


/**/
.flow_1 {
    padding: 60px 0px;
    overflow: hidden;
}

.multisteps-form__progress-btn {
    font-size: 20px;
    color: #000;
}

.js-btn-prev {
    background: #3769B3 url(../images/arrowleft.png) 10px 12px no-repeat;
    padding-left: 40px;
}
/*
.js-btn-next {
    background: #3769B3 url(../images/arrowright.png) 87% no-repeat;
    padding-right: 65px;
}*/
.js-btn-next {
  background: #3769B3 url(../images/arrowright.png) 93% no-repeat;
  padding-right: 47px;
}
.preview_reportf .col-6,
.preview_reportf .col-12 {
    border: 1px solid #BAD1F5;
    font-size: 24px;
    padding: 20px;
}

.preview_reportf strong {
    color: #3769B3;
    font-size: 24px;
}

.pr_bg {
    background: #EFF5FF;
}

/**/
.getreport .email-subsc {
    border: 0px;
    width: auto;
    background: #EAF2FF;
}

.getreport .email-subsc h2 {
    font-size: 3rem;
}

.check_report {
    font-size: 18px;
}

.check_report input {
    margin-right: 10px;
}

.gent_plan {
    background: #E0F8FF;
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
}

.gent_plan h3 {
    font-size: 3rem;
}

.gent_plan h3 span {
    background: #03B9EC;
    border-radius: 100px;
    width: 50px;
    height: 50px;
    display: inline-block;
}

.gent_plan p {
    background: #fff;
    font-size: 20px;
    color: #3769B3;
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
}

.multisteps-form__content .container {
    padding-left: 0px;
}

.multisteps-form__content .gent_title {
    color: #3769B3;
    font-size: 2.5rem;
}

/*success*/
.success_report {
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin-bottom: 60px;
}

.success_report h1 {
    color: #0BB4A6;
}

.success_report p {
    color: #3769B3;
    font-size: 1.8rem;
    margin: 20px 0px;
}

.success_report svg {
    margin-bottom: 30px;
}

.report-succ-gen {
    padding-top: 50px;
}


.report-sec {
    padding: 60px 0px;
    background-color: var(--bg-color);
}

.report-text {
    margin-bottom: 40px;
}

.report-text h1 {
    font-size: 3rem;
    font-family: var(--poppins-semibold);
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: left;
}

.report-text p {
    font-size: 2rem;
    line-height: 36px;
}

.plan-txt h1 {
    font-size: 2.2rem;
    font-family: var(--poppins-semibold);
    margin-bottom: 20px;
    text-align: left;
    line-height: 36px;
}

.plan-txt ul li {
    font-size: 2rem;
    line-height: 36px;
    position: relative;
    margin-bottom: 20px;
}

.plan-txt ul li:last-child {
    margin-bottom: 0px;
}



.plan-txt ol li {
    font-size: 2rem;
    line-height: 36px;
    position: relative;
    margin-bottom: 20px;
    list-style-type: decimal;
}

.plan-txt ol li:last-child {
    margin-bottom: 0px;
}

.para-txt {
    margin-top: 10px;
}

.para-txt p {
    font-size: 2rem;
    line-height: 36px;
}

.report_dec {
    border: 1px solid #D2E1F8;
    background: #FBFDFF;
    border-radius: 20px;
    padding: 30px 50px;
}

.report_dec li {
    list-style: circle;
}

.report_dec ul:first-child li {
    list-style: none;
}

.report_dec strong {
    color: #3769B3;
}

/*home page risk*/
.banner-text p.know_risk {
    clear: both;
    margin: 0px;
}

.risk-box li {
    background: #fff;
    border: 1px solid #26B9E2;
    padding: 10px 30px;
    border-radius: 20px;
}
/*
.risk-box li:marker {
    border: 1px solid red;
    left: 30px;
}*/

.risk-box li strong {
    color: #26B9E2;
}

.risk-box2 ul {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
}

/*forgot*/
.forgot_link {
    text-align: right;
    padding-top: 15px;
}

.forgot_link a {
    font-size: 20px;
    color: #3769B3;
    text-decoration: underline;
}

/**/
.form_outer.forgot-password-bg {
    background: url(../images/forgot-password-bg.jpg) center right no-repeat;
    background-size: 40%;
    padding: 80px 40px;
}

#more_n {
    display: none;
}

.team-member-bx .team_con {
    font-size: 1.7rem;
}

.team-member-bx button {
    border: 0px;
}

.team-member-bx button svg {
    width: 20px;
    height: 20px;
}

.read_m {
    font-size: 20px;
    margin-left: 10px;
    background: #fff;
    color: #000;
    padding: 0px 6px;
    border-radius: 100px;
}

.read_m-m {
    font-size: 20px;
    margin-left: 10px;
    background: #fff;
    color: #000;
    border-radius: 100px;
    padding: 0px 8px;
}

.plan-outter-bx .card {
    background: #fff;
}

/* .risk_list {
    display: table;
}

.risk_list li {
    display: table-cell;
} */

.our-story-banner.team-banner {
    background-image: url("../images/about_us/team_banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.overview-banner.travel-banner {
    background-image: url("../images/services/travel_banner.png");
}

.overview-banner.house-banner {
    background-image: url("../images/services/house_banner.png");
}

/*150125*/
.banner-text p.know_risk {
    margin-bottom: 20px;
}

.banner-text p.services_arr {
    margin-top: 30px;
}


.home-banner {
    padding: 90px 0px 50px 0px;
}

.banner-text p.services_arr span {
    font-size: 18px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    clear: both;
    background: #fff;
    color: #3769B3;
    padding: 20px 15px 20px 15px;
    border-radius: 200px 200px 200px 200px;
}

.scroll-button.home {
    top: 500px;
}

.scroll-button {
    width: auto;

    top: 240px;
    z-index: 100000;
    --e-transform-origin-x: right;
    right: 0px;
    position: fixed;


}

.banner-text h1 {
    font-size: 4rem;
    margin-bottom: 25px;
}


.overview-sec {
    padding: 30px 0px;
}

.risk-sec {
    padding: 30px 0px;
}

.our-story-sec {
    padding: 30px 0px;
}

.plan-outter-bx .card {
    border-radius: 15px;
    margin-bottom: 30px;
}

.services-box .col .card {
    margin-bottom: 30px;
}

.list_consec {
    padding-top: 10px;
}

.resource_box {
    padding: 40px 0px;
}

.resource_emailbox {
    padding: 30px 0px;
}

/*bottom menu*/
.bottom_link-sec {
    padding: 10px 0px;
    background: #f3f3f3;
}

.bottom_link {
    display: flex;
    justify-content: space-between;
    align-items: start;
}





.bottom_link a {
    font-size: 2rem;

    color: var(--text-black);
    cursor: pointer;
}

.bottom_link a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.bottom_link .col-6+.col-6 {
    text-align: right;
    padding-right: 40px;
}

.risk_list li {
    width: 48%;
}

.nutrition-banner {
    background-image: url("../images/services/nutrition_banner.png") !important;
}

.social-links li {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

/*27-1-25*/
header ul li .nav-link {
    padding-top: 35px;
}

.logo_svg {

    width: 368px;
    height: 90px;
}

.services-box.home_con .title-text p {
    margin-bottom: 0px !important;margin-top: 12px;
}

/*11-2-25*/


.m-tip {
    --bs-tooltip-max-width: 900px !important;
    --bs-tooltip-font-size: 1.5em !important;
    position: absolute !important;
}

.i_mss {
    border: 1px solid #ccc !important;
    width: 42px !important;
    padding: 0px 15px !important;
    border-radius: 200px !important;
    font-size: 26px !important;
    background: #EFF5FF !important;
    margin-left: 10px !important;
    color: #007bff !important;
}

/* .tooltip-inner{max-width: 67%!important;background-color:#fff!important; color:#000!important;font-size:1.5em!important;border:1px solid #ccc3!important;
text-align: left!important; 
}
.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before, .bs-tooltip-end .tooltip-arrow::before
{border-right-color:#eee!important;} */

.i_mss:hover {
    background: #fff;
    color: #007bff;
    border: 1px solid #eee;
}
.tooltip{ }
 
.tooltip-inner {
    max-width:68%;    
    background-color: #fff !important;
    color: #000 !important;
    font-size: 2em !important;
    border: 2px solid #007bff !important;
    text-align: left !important;
    padding: 5px 15px;
    margin-left:20%!important;
}
 
.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-inner { margin-left:0%!important;}
/*20-3-2025*/
.f-bold{font-weight:bold;}
.nav-link{font-size: 1.9rem;}
.services-box{padding-top:30px;}
.home-banner {
  padding:80px 0px 30px 0px;
}
.logo_svg {width: 396px;
height: 123px;}
header ul li .nav-link {
    padding-top: 49px;
    padding-bottom: 42px;
}
/*24-3-25*/
.mb-0{margin-bottom:0px;}
.our-story-sec.our-missionm{padding-bottom:0px;}
.our-story ul li:last-child{padding-bottom:0px;}
.our-story-sec.our-missionm .row .col{height:100%;padding-bottom:40px;}
/*testimonial page*/
.testimonial-view .image {
  height:200px;
  width: 200px;
  object-fit: cover;
border-radius:50%;}
.testimonial-view .box_our3, .testimonial-view .box_our2, .testimonial-view .box_our1{padding-top:40px;margin-bottom:20px;}
.testimonial-view .col-1{width:10.33%!important;}
.slide .details{padding-left:50px; }
	.testimonial .slide{border:0px;background:none;padding:0px;}
	.testimonial .slide .slideinner{padding:20px;text-align:center;background:#fff;border-radius:10px;margin:6px;}
.slide .details{text-align:left;font-size:20px;}
 .slide p{font-size:16px;}
.details .name {
  font-size:20px;
  font-weight: 600;
  color: #333;
}.testimonial .image {
  height:80px;
  width:80px;
  object-fit: cover;
  border-radius:
50%;}.slide .details, .slide p{margin-top:20px;}
.testimonials{padding-top:30px;padding-bottom:40px;}
.testimonial{padding-top:0px;}
.testimonials .title-text h3{font-size:2.8rem;}
/*Service medic*/
.accordion-button, .accordion-button:not(.collapsed){background-color:unset!important;box-shadow:none!important;}
	.accordion-header .accordion-button{font-size: 2.5rem;
  color: var(--text-white);
  font-family: var(--montserrat-semibold);
  text-align: center;}
  .accordion-button::after{width: 20px!important;background-size: 20px!important;
  height: 20px!important;   
        }
.services-box .accordion .plan-outter-bx .card{margin-right:0!important;}
/**/
.risk-sec{padding-top:50px;}
.risk_list.list_nstyle{margin-bottom:0px;}
.our-story ul li:last-child{padding-bottom:10px;}
.risk_list.list_nstyle li{border-radius:0px;background-size: 20px;background-position:0 5px;}
.risk_list li{border:0px;padding:0px;padding-left: 40px;
  padding-bottom: 15px;}
  .risk_list li .i_mss{padding: 0px 13px !important;font-size: 22px !important;}
  .risk_list li strong{color:#000;}
  .plan-outter-bx .card .card-header{padding:3px 10px 3px 10px;}
  .list_consec .list_nstyle {margin-bottom:30px;}
   .our-vision-banner.testimonials-banner{ background: #1F62A0 url("../images/testimonials/testimonials_banner.png");
}
/*15-4-2025*/
.mb-15{margin-bottom:15px!important;}
.our-story-sec.our-missionm .row .col{padding-bottom:0px;}
.services_listlink .col .service_link{border:1px solid #ccc; border-radius:10px; padding:10px;}
.services_listlink .col .service_link a{font-size:16px; text-decoration:underline;}
.services_listlink .col .service_link h3{margin-bottom:10px;}
.pb-0{padding-bottom:0px;}
/**/
.compare, .equipment{ 
  font-size: 1.7rem;
  line-height: 30px;}
  .compare h2{font-weight:bold; margin-bottom:10px;}
  .compare .com-button{border-radius:100px; border:1px solid #3769B3;padding:10px 20px;color:#3769B3;}
  .compare .com-button:hover{background:#3769B3;color:#fff;}
  .pt-20{padding-top:20px;}
  .borderc{border:1px solid #ccc;}
  .compare .col-xl-2, .compare .col-xl-6, .compare .col-xl-4{padding:15px;}
  .compare .col-xl-4{padding:30px;}
  /*25-4-25*/
  /*.pb-0{padding-top:0px;padding-bottom:0px;}  */
.m-0{margin:0px!important;}
.multiselect-dropdown .dropdown-btn, .multiselect-dropdown[_ngcontent-ng-c692748064] .dropdown-btn[_ngcontent-ng-c692748064]{border: 3px solid #ccc!important; 
padding:12px!important; font-size: 1.7rem!important; border-radius:10px!important;  width: 100%;  max-width: 100%;  }
.multiselect-item-checkbox[_ngcontent-ng-c692748064] input[type="checkbox"][_ngcontent-ng-c692748064] + div[_ngcontent-ng-c692748064]{font-size: 1.7rem !important;}

.dropdown-list[_ngcontent-ng-c692748064] li[_ngcontent-ng-c692748064] {
  padding:15px 12px !important;}
  .dropdown-list[_ngcontent-ng-c692748064] .filter-textbox[_ngcontent-ng-c692748064]{padding:12px 10px!important;font-size:16px!important;}
  .form-select option{ }
  .multiselect-dropdown[_ngcontent-ng-c692748064] .dropdown-btn[_ngcontent-ng-c692748064] .dropdown-multiselect__caret[_ngcontent-ng-c692748064]{top: 12px!important;}
  
  
  .multiselect-dropdown[_ngcontent-ng-c692748064] .dropdown-btn[_ngcontent-ng-c692748064] .dropdown-multiselect__caret[_ngcontent-ng-c692748064]::before {--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");}
  /**/
  .bg_grey_l{background:#f3f3f3;}
  .location_sec{padding:30px 0px; font-size:16px;}
    .location_sec h3{margin-bottom:20px;}
	 .ul_list li, .ul_list{padding:0px;margin:0px;}
 .ul_list li{list-style:square;padding:5px 0px 5px 0px; }
 .ul_list{padding:0px;margin:0px 0px 0px 40px;}
 .location_sec .custom-btn{ border:0px;}
  .loc_menu{margin-bottom:30px;background:#f3f3f3;}
  .loc_menu .col-xl-12{padding:10px 0px 4px 10px;}
 .loc_menu a{display:inline;width:auto; margin-right:20px;color:#000;}
 .loc_menu a:hover,  .loc_menu a.active{border-bottom:3px solid #03B9EC;}
 .borb_grey{border-bottom:1px solid #ccc;padding-bottom:10px;}
 
 /**/
 
/* Styling the msg-header container */
.chat_box_outer{margin-top:0px;}
.bi-send{color:#03B9EC;}
.msg-header {
    border: 1px solid #03B9EC;
    width: 100%;
 
    border-bottom: none;
    display: inline-block;
    background-color: #C0ECF8;
    margin: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;padding:10px;margin:0px;
}
/* Styling the profile picture */
.msg-inbox{margin:0px;margin-top: -5px;}
.chat_box_outer .input-group input[type='text']{border:1px solid #03B9EC!important;padding:20px 5px!important; font-size:16px;}
.chat_box_outer .input-group{padding-bottom:10px;}
.chat_box_outer .msgimg {
    margin-left: 2%;
    float: left;
}

.chat_box_outer .container1 {
 width:100%;
    height: auto; 
    float: left;
    margin: 0;
}
 
.received-chats-img img, .msgimg, .outgoing-chats-img img{width:50px;}
/* styling user-name */
.msgimg{float:left;}
.chat_box_outer .active {
 
    float: left;
    color: black;
    font-weight: bold;
    margin: 0 0 0 5px;
   margin-top:10px;font-size:16px;
 
}
/* Styling the inbox */

.chat-box {
    padding: 0 0 50px 0;
}

.chat_box_outer .msg-inbox {
    border: 1px solid #03B9EC;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;border-top:0px;margin-top:-9px;
}


.chat_box_outer .chats {
    padding: 20px 15px 0 15px;
}

.chat_box_outer .msg-page {
    max-height:400px;
    overflow-y: auto;
}

/* Styling the msg-bottom container */
.chat_box_outer .msg-bottom {
        border-top: 1px solid #03B9EC;
        position: relative;
        height: 11%;
        background-color: rgb(239 239 239);
    }
/* Styling the input field */
  .chat_box_outer .input-group {
        float: right;
        margin-top: 13px;
        margin-right: 20px;
        outline: none !important;
        border-radius: 20px;
        width:81% !important;
        background-color: #fff;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }
    
   .chat_box_outer .input-group>.form-control {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        margin-bottom: 0;
    }
    
  .chat_box_outer  .form-control {
        border: none !important;
        border-radius: 20px !important;
        display: block;
        height: calc(2.25rem + 2px);
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }
    
  .chat_box_outer  .input-group-text {
        background: transparent !important;
        border: none !important;
        display: flex;
        align-items: center;
        padding: 0.375rem 0.75rem;
        margin-bottom: 0;
        font-size: 2.5rem;
 
        line-height: 1.5;
        color: #495057;
        text-align: center;
        white-space: nowrap;
        background-color: #e9ecef;
        border: 1px solid #03B9EC;
        border-radius: 0.25rem;
        font-weight: bold !important;
        cursor: pointer;
    }
    
   .chat_box_outer input:focus {
        outline: none;
        border: none !important;
        box-shadow: none !important;
    }
    
  .chat_box_outer  .send-icon {
        font-weight: bold !important;
    }

/* Styling the avatar  */
.chat_box_outer .received-chats-img {
    display: inline-block;
    width: 50px;
    float: left;
}

.chat_box_outer .received-msg {
    display: inline-block;
    padding: 0 0 0 10px;
    vertical-align: top;
    width:88%;
}
.chat_box_outer .received-msg-inbox {
    width:94%;
}

.chat_box_outer .received-msg-inbox p {
    background: #efefef none repeat scroll 0 0;
    border-radius: 10px;
    color: #646464;
    font-size: 14px;
    margin-left: 1rem;
    padding: 1rem;
    width: 100%;
    box-shadow: rgb(0 0 0 / 25%) 0px 5px 5px 2px;
}
   .chat_box_outer p {
    overflow-wrap: break-word;
}
.chat_bb .modal-header{border:0px;}
.btn-close{width: 2em;background: transparent var(--bs-btn-close-bg) center/1.5em auto no-repeat!important;
  height: 2em;}

/* Styling the msg-sent time  */
.chat_box_outer .time {
    color: #777;
    display: block;
    font-size: 12px;
    margin: 8px 0 0;
}
.chat_box_outer .outgoing-chats {
    overflow: hidden;
    margin: 26px 20px;
}

.outgoing-chats-msg p {
    background-color: #C0ECF8;
    
    color: #000;
    border-radius: 10px;
    font-size: 14px;
   
    padding: 5px 10px 5px 12px;
    width: 100%;
    padding: 1rem;
    box-shadow: rgb(0 0 0 / 25%) 0px 2px 5px 2px;
}
.outgoing-chats-msg {
        float: right;
        width:84%;
    }

/* Styling the avatar */
.outgoing-chats-img {
    display: inline-block;
    width: 50px;
    float: right;
    margin-right: 1rem;
}
@media only screen and (min-width: 450px) and (max-width: 850px)  {
 
   .chat_box_outer .time {
        font-size: 16px;
    }
    .chat_box_outer img {
        width: 65px;
    }
    .chat_box_outer .msg-header {
        height: 5%;
    }
   .chat_box_outer .msg-page {
        max-height: none;
    }
   .chat_box_outer .received-msg-inbox p {
        font-size: 16px;
    }
    .outgoing-chats-msg p {
        font-size: 16px;
    }
}

@media only screen and (min-width:320px) and (max-width: 450px)  {
 
    .chat_box_outer .time {
        font-size:16px;
    }
   .chat_box_outer img {
        width: 65px;
    }
   .chat_box_outer .msg-header {
        height: 5%;
    }
    .chat_box_outer .msg-page {
        max-height: none;
    }
    .chat_box_outer .received-msg-inbox p {
        font-size: 16px;
    }
    .outgoing-chats-msg p {
        font-size: 16px;
    }
}

/*plan box*/
.loc_left h1 a{color:#03B9EC;}
.loc_left h1 a:hover{color:#666;}
.pt-6{padding-top:6px;}
.plan_sec{font-size:16px;margin-top:30px; }
.plan_sec .custom-btn{border:0px;margin:0px; font-size:16px;padding: 6px 20px;}
.plan_sec .container{ border:1px solid #03B9EC;margin-bottom:20px;padding:20px;}
.plan_sec .row {margin-bottom:20px;}
.plan_sec .plan_bg{background:#E3F9FF;}
.col-xl-4{padding:10px 20px;}
.plan_sec .col-xl-4 a{color:#000; border-bottom:1px solid #ccc;margin-bottom:10px;display:block;}
.plan_sec .col-xl-4 a:hover{color:#666;}
.plan-cost_list .plan-type-h, .plan-cost_list .plan-type-v{display:inline-block;}
.plan-cost_list .plan-type-v, .plan_sec .plan-type-v strong{color:#3769B3;}
.plan_sec .plan_last strong{color:#000;}
.plan_sec .plan_last a{color: #000;}
.plan_sec .plan_last a:hover{color:#666;}
/*ai_section*/
 .ai_sec{cursor: pointer;}
.ai_sec h3{font-size:20px;color:#fff;margin:30px 0px 0px 30px;}
 
.ai_sec img{ padding:10px;width:110px;height:110px; }
.ai_sec{border:1px solid #3769B3;padding:5px 10px;border-radius:40px;background:#03B9EC;}
/**/
.header-top{display:none;}
/**/
.modal{--bs-modal-width:700px;}
.modal .modal-title.fs-5{font-size: 2.25rem !important;}
.modal-body{font-size:16px;line-height:30px;}
.modal-footer .btn.btn-secondary{font-size:16px;}
  .swiper-slide .btn-primary{margin:10px 0px;padding:5px 15px;}
 .mt-0{margin-top:0px!important;}
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{bottom:0px!important;}

.services-box.home_con .title-text p{margin-top:0px;}
.home-banner {
    padding: 76px 0px 30px 0px;
}
.chat-outter .card{border:0px;}
/*over view*/
.services-box .plan-outter-bx .col-lg-12  .card{margin-bottom:0px;}
.our-story.overview-text p{margin-bottom:0px!important;}
.overview-sec{padding-bottom:0px;}
.our-story.overview-text.mt-5{margin-top:10px!important;}
.overview-sec.services_listlink.pb-0{padding: 10px 0px 0px 0px;}
.overview-sec.services_listlink{padding: 10px 0px 20px 0px;}
.ov_rhtimg{padding-bottom:15px;}
.services-box.pt-60.bg_blue{margin-top:20px;padding-top:30px!important;}
/*select box*/
select > option{    font-family: var(--poppins-regular); font-size:16px; -moz-font-family:"Lucida Console", Monaco, monospace;  font: -moz-pull-down-menu;      }
.d-flex p, .d-flex .invalid-feedback{font-size: 16px;}
/**/

.col-4.ques_title {  width: 26.333%;}
/*q2 page select*/

.multiselect-dropdown .dropdown-btn .selected-item-container {width: 100%!important;display: block!important;}
.multiselect-dropdown .dropdown-btn .selected-item-container .selected-item{width: 97%!important; margin-bottom: 2px;max-width: 100%!important;}
.selected-item a{ border-radius: 200px!important;  color: white; padding: 0px 8px!important;background:#fff!important;color:#000!important;}
  .selected-item a:hover,.selected-item a:focus{background:#fff!important;color:#000!important;}
  
  /*footer link*/
 .col-xl-4.foot_1m{padding-top:0px;padding-bottom:0px;}
 
