@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/*================ Var ====================*/
:root {
    --blue_color: rgba(0,159,253,1);
    --dark_blue_color: rgba(0,140,240,1);
    --white_color: rgb(255, 255, 255, 1);
    --body_text_color: rgb(0, 0, 0, 1);
    --montserrat: 'Montserrat', sans-serif;
}

body{
    color: var(--body_text_color);
}
body,span {
    font-family: var(--montserrat);
    line-height: 1.5;
    margin: 0;
    padding: 0;
}
p {
    font-family: var(--montserrat);
    line-height: 1.5;
    padding: 0;
    margin: 0;
    font-size: 18px;
}
p:not(:last-child) {
    margin-bottom: 16px !important;
}
.section_title_inner p b{
    font-weight: 600;
}
li,a{
    font-family: var(--montserrat);
    line-height: 1.5;
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--montserrat);
    line-height: 1.5;
    margin: 0;
    padding: 0;
    color: var(--black_color);
    width: 100%;
    font-weight: 700;
}
img{
    max-width: 100%;
    height: auto;
}
ol,ul{
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}
h1,h2,h3,h4,h5,h6,p,a,span{
    display: inline-block;
}
a {
    text-decoration: none;
    color: var(--blue_color);
}
a:hover{
    text-decoration: none;
    color: var(--dark_blue_color);
}
h1{
    font-size: 40px;
    line-height: 1.3;
    color: var(--white_color);
}
h2{
    font-size: 28px;
    line-height: 1.3;
    
}
h2,h3,h5,h6,h4 {
    padding-bottom: 15px;
}
h4 {
    font-size: 25px;
    line-height: 1.4;
}
@media only screen and (max-width: 767px){

    p{
        font-size: 16px;
    }
}
/*===============================================
= container CSS
===============================================*/
body .container{
    max-width: 1200px;
}
@media only screen and (max-width: 600px) {
    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
        padding-right: 27px;
        padding-left: 27px;
    }
}
/*===============================================
= End container CSS
===============================================*/

/*===============================================
= section padding CSS
================================================*/
.section_padding{
    padding: 100px 0;
}
.section_small_padding {
    padding: 50px 0px;
}
.full_img img {
    width: 100%;
    object-fit: cover;
    height: auto;
    border-radius: 10px;
}
@media only screen and (max-width: 991px) {
    .section_padding{
        padding: 60px 0;
    }
    .section_small_padding {
        padding: 40px 0;
    }
}
@media only screen and (max-width: 767px) {
    .section_less_padding{
        padding: 40px 0;
    }
    .section_padding{
        padding: 50px 0;
    }
}
/*===============================================
= End section padding CSS
================================================*/

/*===============================================
= Default button CSS
============================================*/
.lp_default_btn {
    padding: 10px 24px;
    background: var(--blue_color);
    color: var(--white_color);
    font-weight: 500;
    font-size: 16px;
    border-radius: 50px;
    border: 2px solid transparent;
    line-height: 1.6;
    font-family: var(--montserrat);
    transition: all 0.4s;
    margin: 30px 0 0;
}
.lp_default_btn:hover{
    border-color: var(--blue_color);
    background: transparent;
    color: var(--blue_color);
}
.lp_default_btn:hover{
    transform: translateY(-4px);
    transition: all 0.4s ease;
}
.white_default_btn.lp_default_btn{
    background: var(--white_color);
    color: var(--blue_color);
}
.white_default_btn.lp_default_btn:hover{
    color: var(--white_color);
    border-color: var(--white_color);
    background: transparent;
}
@media only screen and (max-width:767px){
    .header_btn .lp_default_btn span,
    .footer_btn .lp_default_btn span,
    .meet-doctors-sec-two .lp_default_btn span,
    .lp_banner_section .lp_default_btn span{
        display: none;
    }
    .footer_btn .lp_default_btn,
    .meet-doctors-sec-two .meet-doctors-content-two .lp_default_btn,
    .lp_banner_section .lp_borderd_btn{
        width: 100%;
        max-width: 220px;
        text-align: center;
    }
}
@media only screen and (max-width: 575px){
    .lp_default_btn span{
        display: none;
    }
}
@media only screen and (max-width: 480px){
    .lp_default_btn{
        font-size: 16px !important;
        width: 100%;
        text-align: center;
        padding: 10px 10px;
    }
}
/*===============================================
= end Default button CSS
============================================*/


/*===============================================
= start Header CSS
================================================*/
.sticky-header{
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    background: var(--white_color);
    display: inline-block;
    width: 100%;
    z-index: 999;
}
.scroll-header{
    box-shadow: 0px 10px 17px rgb(34 81 168 / 9%);
}
.lp_header{
    padding: 15px 0;
    box-shadow: 0px 0px 11px #d4d1d4;
}
.header_btn{
    text-align: right;
}
.header_btn .lp_default_btn {
    margin: 0px;
}
.header_logo img{
    max-width: 260px;
}
@media only screen and (max-width: 480px){
    .lp_header {
        padding: 15px 10px;
    }
    .lp_header .container{
        padding: 0;
    }
    .lp_header .container .row{
        margin: 0;
    }
    .header_logo img {
        max-width: 130px;
    }
}
/*===============================================
= End Header CSS
================================================*/

/*===============================================
= Start Banner CSS
================================================*/
.hero_banner_wrap{
    display: block;
    background: rgba(0,0,0,0);
    background-image: url("/lp-asset/lp-images/banner_img.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    width: 100%;
    height: 632px;
    position: relative;
}
.hero_banner_wrap .baqnner_text_wrap {
    position: absolute;
    width: 100%;
    height: 72px;
    top: auto;
    bottom: 0px;
    left: 0px;
    right: auto;
    background: rgba(0,0,0,0.4);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}
.baqnner_text_wrap h1{
    font-size: 36px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    text-align: center;
}
.baqnner_text_wrap h1 span{
    font-weight: 700;
    font-style: italic;
}
@media only screen and (max-width: 1024px){
    .hero_banner_wrap .baqnner_text_wrap{
        height: 50px;
    }
    .baqnner_text_wrap h1{
        font-size: 30px;
    }
}
@media only screen and (max-width: 991px){
    .hero_banner_wrap .baqnner_text_wrap{
        height: 40px;
    }
    .baqnner_text_wrap h1{
        font-size: 23px;
    }
    .hero_banner_wrap{
        height: 440px;
    }
}
@media only screen and (max-width: 800px){
    .hero_banner_wrap{
        height: 340px;
    }
}
@media only screen and (max-width: 767px){
    .baqnner_text_wrap h1{
        font-size: 18px;
    }
}
@media only screen and (max-width: 600px){
    .hero_banner_wrap{
        display: none;
    }
}
/*===============================================
= End Banner CSS
================================================*/

/*===============================================
= Start Video CSS
================================================*/

.help_sec_wrap{
    width: 100%;
    display: inline-block;
    vertical-align: top;
    background-color: rgba(0,159,253,1);
    padding: 40px 0px;
}
.video_box {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%;
    border-radius: 10px;
}
.video_box iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    z-index: 9;
    object-fit: cover;
}
.help_sec_wrap .section_title p,
.help_sec_wrap .section_title h2{
    width: 100%;
    max-width: 410px;
    text-align: center;
    margin: 0px auto;
    color: #ffffff;
}
.help_sec_wrap .section_title h2{
    padding-bottom: 0px;
    margin-top: 40px;
}
h4.video_txt {
    position: absolute;
    z-index: 9;
    bottom: 60px;
    font-size: 36px;
    color: #FFFFFF;
    padding-left: 50px;
    padding-bottom: 0px;
    font-style: italic;
    font-weight: 600;
}
p.text_info_wrap {
    font-size: 28px;
    text-align: center;
    width: 100%;
    color: rgb(0, 0, 0);
    font-weight: 600;
    line-height: 1;
    margin-top: 30px;
}
p.text_info_wrap span {
    color: rgb(72, 172, 240);
    font-style: italic;
}
h4.text_info_wrap span{
    color: rgb(72, 172, 240);
}
h4.text_info_wrap {
    width: 100%;
    text-align: center;
    vertical-align: top;
    font-weight: 600;
    margin-bottom: 20px;
}
@media only screen and (max-width: 1024px){
    h4.video_txt{
        font-size: 30px;
    }
}
@media only screen and (max-width: 991px){
    .section_title p {
        font-size: 14px;
    }
    .help_sec_wrap .section_title h2 {
        padding-bottom: 0px;
        margin-top: 10px;
    }
}
@media only screen and (max-width: 767px){
    .help_sec_wrap{
        background-color: unset;
        padding-bottom: 0px;
    }
    .section_title {
      background: rgba(72,172,240,1);
      text-align: center;
      padding: 40px 25px;
      margin-top: 30px;
      margin-left: -27px;
      margin-right: -27px;
    }
    .help_sec_wrap .section_title h2{
        font-size: 20px;
    }
    h4.video_txt {
        font-size: 18px;
        bottom: 40px;
    }
}
@media only screen and (min-width: 600px){
    .text_info_wrap{
        display: none;
    }
}
@media only screen and (max-width: 475px){
    p.text_info_wrap {
        font-size: 24px;
    }
}
/*===============================================
= End Video CSS
================================================*/

/*===============================================
= Start Step CSS
================================================*/
.step_wrap_info {
    width: 100%;
    max-width: 540px;
    margin: 0px auto;
}
.step_wrap_info p {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 400;
}
.step_wrap_info p span{
    color: rgb(0, 159, 253);
}
.step_wrap_info > span {
    font-size: 72px;
    color: rgb(0, 159, 253);
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    margin-bottom: 20px;
}
.step_sec_wrap .col-12:not(:last-child) .step_wrap_info {
    margin-bottom: 70px;
}
@media only screen and (max-width: 767px){
    .step_wrap_info p {
        font-size: 16px;
        line-height: 1.3;
    }
    .step_sec_wrap .col-12:not(:last-child) .step_wrap_info {
        margin-bottom: 30px;
    }
}
/*===============================================
= End Step CSS
================================================*/

/*===============================================
= Start Schedule CSS
================================================*/
.schedule-sec {
    padding: 60px 0;
}
.schedule-info h3{
    padding-bottom: 0; 
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgb(0, 0, 0);
    font-size: 22px;
    font-weight: 300;
    line-height: 1.2;
}
.schedule-info a{
    text-transform: uppercase;
    font-size: 36px;
    color: rgb(0, 159, 253);
    font-weight: 500;
    text-decoration: none;
}
.schedule-call-info h3{
    padding-bottom: 0; 
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 24px;
    color: rgb(0, 0, 0);
    font-weight: 300;
    line-height: 1.2;
}
.schedule-call-info a{
    text-transform: uppercase;
    padding: 19px 29px;
    background: rgba(0,159,253,1);
    color: #ffffff;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
}
.schedule-info .schedule_title {
    text-align: center;
    font-size: 28px;
}
@media only screen and (max-width: 991px){
    .schedule-info a{
        font-size: 26px;
    }
}
@media only screen and (max-width: 767px){
    .schedule-info h3 {
        margin-bottom: 10px;
        font-size: 20px;
    }
    .schedule-info {
        margin-bottom: 30px;
    }
    .schedule-call-info h3 {
        margin-bottom: 10px;
        font-size: 20px;
    }
    .schedule-sec{
        padding: 40px 0px;
    }
}
@media only screen and (max-width: 480px){
    .schedule-call-info a{
        padding: 15px 19px;
        font-size: 15px;
    }
}
/*===============================================
= End Schedule CSS
================================================*/

/*===============================================
= Start Customized CSS
================================================*/
.customized-sec{
    padding: 135px 0;
    background-image: url('/lp-asset/lp-images/customized-sec-bg-image.jpg');
    width: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.customized-info h2{
    padding: 0;
    text-transform: uppercase;
    color: #fff;
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
}
.customized-info h2 span{
    padding-left: 105px;
    font-weight: 400;
}
h2.customized-lifestyle {
    padding-left: 215px;
}
@media only screen and (max-width: 991px){
    .customized-info h2{
        font-size: 60px;
    }
}
@media only screen and (max-width: 767px){
    .customized-info h2 {
        font-size: 30px;
    }
    h2.customized-lifestyle {
        padding-left: 115px;
    }
    .customized-sec{
        padding: 80px 0;
    }
    .customized-sec{
        background-image: url("/lp-asset/lp-images/customized-sec-res_img.jpg");
        background-attachment: unset;
    }
}
@media only screen and (max-width: 480px){
    .customized-info h2 span{
        padding-left: 45px;
    }
    h2.customized-lifestyle{
        padding-left: 95px;
    }
    .customized-info h2{
        font-size: 30px;
    }
}
/*===============================================
= End Customized CSS
================================================*/

/*===============================================
= Start Customized Inner CSS
================================================*/
.customized-inner-sec{
    padding: 60px 0;
}
.customized-inner-info p{
    max-width: 984px;
    width: 100%;
    margin: 0 auto;
    font-weight: 500;
    font-size: 28px;
    color: rgb(0, 159, 253);
    line-height: 1.3;
    display: block;
}
.customized-inner-info p span{
    font-size: 24px;
    font-weight: 400;
    display: unset;
}
.jasens-video-sec{
    padding: 50px 0;
    background-color: rgba(0,159,253,1);
}
.jasens-video-info h3{
    padding-bottom: 0;
    font-size: 28px;
    font-weight: 500;
    font-style: italic;
    color: rgb(255, 255, 255);
    line-height: 1.3;
}
.jasens-video-info {
    width: 100%;
    max-width: 470px;
    margin: 0px auto;
}
@media only screen and (max-width: 991px){
    .customized-inner-info p,
    .jasens-video-info h3{
        font-size: 24px;
    }
    .customized-inner-info p span{
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px){
    .jasens-video-info h3 {
        margin-bottom: 30px;
        text-align: center;
    }
    .customized-inner-info p {
        text-align: center;
    }
    .customized-inner-sec,
    .jasens-video-sec{
        padding: 40px 0;
    }
}
@media only screen and (max-width: 480px){
    .jasens-video-info h3,
    .customized-inner-info p{
        font-size: 20px;
    }
    .customized-inner-info p span{
        font-size: 18px;
    }
}
/*===============================================
= End Customized Inner CSS
================================================*/

/*===============================================
= Start Fixed Container Image CSS
================================================*/
.permanent_solution_wrap_inner p{
    font-size: 24px;
}
.permanent_solution_wrap{
    background-image: url("/lp-asset/lp-images/permanent_solution_img.jpg");
}
.expect_wrap_info{
    background-image: url("/lp-asset/lp-images/expect_sec_img.jpg");
}
.choose_wrap_info{
    background-image: url("/lp-asset/lp-images/why_choose_us_banner_img.jpg");
}
@media only screen and (max-width: 767px){
    .permanent_solution_wrap_inner p {
        font-size: 20px;
    }
    .expect_wrap_info .customized-info h2 {
        color: rgb(72, 172, 240);
    }
    .img_width_Wrap {
        margin-left: auto;
        margin-right: auto;
        width: 320px;
        height: 406px;
        display: flex;
        align-items: center;
    }
    .choose_wrap_info {
        width: 320px;
        height: 276px;
    }
    .permanent_solution_wrap{
        background-image: url("/lp-asset/lp-images/permanent_solution_rec_img.jpg");
        margin-top: 30px;
    }
    .expect_wrap_info{
        background-image: url("/lp-asset/lp-images/expect_sec_rec_img.jpg");
    }
    .choose_wrap_info{
        background-image: url("/lp-asset/lp-images/why_choose_us_banner_rec_img.jpg");
    }
}
/*===============================================
= End Fixed Container Image CSS
================================================*/

/*===============================================
= End Ecpect Inner CSS
================================================*/
.expect_inner_wrap{
    width: 100%;
    background-color: rgba(0,159,253,1);
}
.expect_text_wrap{
    display: flex;
    justify-content: center;
}
.expect_inner_wrap .expect_text_wrap p{
    font-size: 36px;
    line-height: 1.1;
    width: 100%;
    max-width: 840px;
    color: #FFFFFF;
}
.expect_inner_wrap .expect_text_wrap p span{
    display: unset;
    font-weight: 500;
    line-height: 1.1;
}
.choose_wrap_innner_info .choose_innner_text {
    width: 100%;
    text-align: center;
}

.choose_wrap_innner_info .choose_innner_text > span {
    width: 100%;
    max-width: 550px;
    font-size: 21px;
    color: rgb(0, 159, 253);
    font-weight: 500;
    margin-bottom: 50px;
}

.choose_wrap_innner_info .choose_innner_text p {
    text-align: left;
    width: 100%;
    max-width: 760px;
}
.choose_wrap_innner_info .choose_innner_text p > span{
     color: rgb(0, 159, 253);
     display: unset;
}
.dr_inner_text p {
    font-size: 14px;
    color: #1b1d24;
}
.dr_inner_text h4 {
    font-size: 21px;
    font-weight: 500;
    color: rgb(0, 159, 253);
}
.dr_inner_text strong {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1b1d24;
    width: 100%;
    display: inline-block;
    vertical-align: top;
}
.dr_inner_text ul:not(:last-of-type){
    margin-bottom: 16px;
}
.dr_inner_text ul li {
    font-size: 14px;
}
.dr_img_wrap {
    text-align: center;
}
.dr_img_wrap img {
    border: 1px solid #222E50;
    margin-bottom: 10px;
    width: 100%;
}
@media only screen and (min-width: 768px){
    .dr_img_wrap img{
        max-width: 305px;
    }
    .dr_img_left img {
        margin-right: auto;
        margin-left: 0;
    }
    .dr_img_right img {
        margin-left: auto;
        margin-right: 0;
    }
}
@media only screen and (max-width: 767px){
    .dr_youmans .jasens-video-info h3 {
        margin-bottom: 0px;
        margin-top: 30px;
    }
    .expect_inner_wrap .expect_text_wrap p{
        max-width: 300px;
        font-size: 26px;
    }
    .customized-info h2 span {
        padding-left: 40px;
    }
    .choose_wrap_info .customized-info h2 {
        font-size: 27px;
    }

    .choose_wrap_info .customized-info h2 span {
        padding-left: 20px;
    }

    .choose_wrap_info .customized-info .customized-lifestyle {
        padding-left: 15px;
    }
    .choose_wrap_innner_info .choose_innner_text p{
        text-align: center;
    }
    .dr_img_wrap {
        padding-bottom: 30px;
    }
}
/*===============================================
= End Ecpect Inner CSS
================================================*/