@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: #003673;
    --dark_blue_color: #003673;
    --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 -3px 10px #003673; */
/*     background-color: #003673; */
}
.header_logo img {
    width: 100%;
    max-width: 148px;
}
.header_btn {
    text-align: right;
}

.header_btn .lp_default_btn {
    margin: 0px;
}

.lp_header .header_title h2 {
    font-size: 46px;
    text-align: center;
    color: #003673;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 0px;
}

@media only screen and (max-width: 1199px) {
    .lp_header .header_title h2 {
        font-size: 35px;
    }
}

@media only screen and (max-width: 1024px) {
    .lp_header .header_title h2 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .lp_header .header_title h2 {
        font-size: 22px;
    }
    .lp_header .schedule-call-info a{
        font-size: 13px;
    }
}
@media only screen and (max-width: 676px) and (min-width: 576px){
    .lp_header .schedule-call-info a{
        padding: 19px 13px;
    }
}
@media only screen and (max-width: 480px) {
    .lp_header {
        padding: 15px 10px;
    }

    .lp_header .container {
        padding: 0;
    }

    .lp_header .container .row {
        margin: 0;
    }
}

/* @media only screen and (min-width: 320px) and (max-width: 480px) {
    .header_logo img {
        width: 250px;
        height: auto;
        object-fit: cover;
        transition: 1s;
    }
}

@media only screen and (min-width: 481px) and (max-width: 575px) {
    .header_logo img {
        width: 280px;
        height: auto;
        object-fit: cover;
        transition: 1s;
    }
} */

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .header_logo img {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 980px) {
    .header_logo img {
        width: 80%;
    }
}

/* @media only screen and (min-width: 981px) and (max-width: 1024px) {
    .header_logo img {
        width: 60%;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1140px) {
    .header_logo img {
        width: 60%;
    }
}

@media only screen and (min-width: 1141px) and (max-width: 1199px) {
    .header_logo img {
        width: 60%;
    }
} */


/*===============================================
= End Header CSS
================================================*/

/*===============================================
= Start Banner CSS
================================================*/
/* .hero_banner_wrap {
    display: block;
    background: rgba(0, 0, 0, 0);
    background-image: url("/lp-asset/lp-images/dental_banner_img.jpg");
    background-repeat: no-repeat;
    background-position: center;
    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;
    z-index: 99;
}

.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;
    }
} */
/* @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 Banner CSS
===============================================*/
.hero-banner .vd-sec {
    position: relative;
    padding-top: 56.66%;
    overflow: hidden;
}
.hero-banner .vd-sec iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media only screen and (min-width: 576px){
    .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;
        z-index: 99;
    }
    .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 (min-width: 768px) {
    .hero-banner {
        position:relative;
        min-height: 650px;
        display: flex;
        overflow: hidden;
        z-index: 1;
    }
    .hero_bg_vd {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        bottom: 0;
    }
    .hero_bg_vd-sec {
        padding-bottom: 56%;
        position: relative;
    }
    .hero_bg_vd-sec iframe {
        position: absolute;
        z-index: 0;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        aspect-ratio: 1;
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
    }
    .hero-banner .banner-content {
        z-index: 1;
        position: relative;
    }
    .hero-banner .content_row {
        height: 100%;
    }
    .hero-banner::before {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        bottom: 0;
        background: var(--black_color);
        content: "";
        opacity: 0.4;
        z-index: 1;
    }
}
@media only screen and (min-width: 768px) and (max-width:1199px) {
    .hero-banner {
        min-height:450px;
    }
    .hero_bg_vd-sec iframe {
        min-width: 135%;
    }
}
@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;
    }
}
@media only screen and (max-width: 767px){
    .hero-banner .container, .banner-col {
        padding: 0;
    }
    .hero-banner .container .row {
        margin: 0;
    }
    .baqnner_text_wrap h1 {
        font-size: 18px;
    }
}
@media only screen and (max-width: 575px){
    .hero_banner_wrap .baqnner_text_wrap {
        display: none;
    }
}
/*===============================================
= End Banner CSS
===============================================*/
/*===============================================
= Start Video CSS
================================================*/

.help_sec_wrap {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    background-color: #003673;
    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 {
    text-align: center;
}
.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;
    text-transform: uppercase;
    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: 20px;
    padding-bottom: 40px;
}

p.text_info_wrap span {
    color: #003673;
    font-style: italic;
}

h4.text_info_wrap span {
    color: #003673;
}

h4.text_info_wrap {
    width: 100%;
    text-align: center;
    vertical-align: top;
    font-weight: 600;
    margin-top: 15px;
}

@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: 16px;
    }

    .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: #003673;
        text-align: center;
        padding: 40px 25px;
/*         margin-top: 30px; */
        margin-left: -15px;
        margin-right: -15px;
    }

    .help_sec_wrap .section_title h2 {
        font-size: 20px;
    }

    h4.video_txt {
        font-size: 18px;
        bottom: 40px;
    }
}

@media only screen and (min-width: 1025px) {
    .video_main {
        margin-right: 30px;
    }
}

@media only screen and (min-width: 576px) {
    .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: 646px;
    margin: 0px auto;
}

.step_wrap_info p {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 400;
}

.step_wrap_info p span {
    color: #003673;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.3;
    display: contents;
}

.step_wrap_info>span {
    font-size: 72px;
    color: #003673;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    margin-bottom: 20px;
}

/* .step_sec_wrap .col-12:not(:last-child) .step_wrap_info {
    margin-bottom: 40px;
} */
.step_sec_wrap .col-12 {
    margin-bottom: 40px;
}

.step_wrap_info.step_2 {
    max-width: 529px;
}

.step_wrap_info.step_3 {
    max-width: 586px;
}

@media only screen and (max-width: 767px) {
    .step_wrap_info p {
        font-size: 16px;
        line-height: 1.3;
    }

    .step_wrap_info p span {
        font-size: 16px;
    }

    .step_sec_wrap .col-12 {
        margin-bottom: 20px;
    }
}

/*===============================================
= 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: #003673; */
    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,
body .apply-now .dropdown-toggle {
    text-transform: uppercase;
    padding: 19px 29px;
    background: #003673;
    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: 1199px) {
    .schedule-info .schedule_title {
        font-size: 22px;
    }

    .schedule-call-info a,
    body .apply-now .dropdown-toggle {
        font-size: 16px;
    }
}

@media only screen and (max-width: 991px) {
    .schedule-info a {
        font-size: 26px;
    }

    .schedule-call-info h3,
    .schedule-info h3 {
        font-size: 16px;
    }

    .schedule-info .schedule_title {
        font-size: 15px;
    }
}

@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,
    body .apply-now .dropdown-toggle {
        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: top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.customized-sec::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.1;
    z-index: -1;
}

.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;
    text-align: center;
    width: 100%;
}

/* h2.customized-lifestyle {
    padding-left: 215px;
} */
.customized_small_title {
    max-width: 620px;
}

.customized_big_title {
    max-width: 1093px;
}

.customized_lit_small_title {
    max-width: 488px;
}

.what_should_title {
    max-width: 675px;
}

.customized_lit_small_title h2 span {
    padding-left: 100px;
    text-align: left;
}

/* h2.customized-lifestyle {
    text-align: end;
} */
@media only screen and (max-width: 1199px) {
    .customized_big_title {
        max-width: 800px;
    }

    .customized_big_title h2 {
        font-size: 55px;
    }
}

@media only screen and (max-width: 991px) {
    .customized-info h2 {
        font-size: 45px;
    }

    .customized_small_title {
        max-width: 400px;
    }

    .customized_lit_small_title {
        max-width: 330px;
    }

    .what_should_title {
        max-width: 400px;
    }

    .customized_big_title {
        max-width: 600px;
    }
}

@media only screen and (max-width: 767px) {
    .customized-info h2 {
        font-size: 30px;
    }

    /* h2.customized-lifestyle {
        padding-left: 115px;
    } */
    .customized-sec {
        padding: 0px;
    }

    .customized-sec {
        /* background-image: url("/lp-asset/lp-images/customized-sec-res_img.jpg"); */
        background-attachment: unset;
    }

    .customized_info_main {
        height: 100%;
        width: 100%;
        position: relative;
    }

    .customized-sec.img_width_Wrap .row {
        height: 100%;
    }

    .customized-sec.img_width_Wrap {
        align-items: inherit;
    }

    .customized_small_title,
    .what_should_title,
    .customized_big_title,
    .customized_lit_small_title {
        position: absolute;
        bottom: 5px;
    }

    .img_width_Wrap:before {
        position: absolute;
        content: "";
        left: 0;
        right: 0;
        bottom: 0px;
        width: 100%;
        height: 120px;
        background: #000;
        opacity: 0.29;
        top: auto;
    }

    .what_should_title {
        width: 50%;
        right: 0;
    }

    .customized_lit_small_title {
        width: 60%;
        right: 0;
    }

    .what_should_title h2 span {
        text-align: left;
    }

    .customized_lit_small_title h2 span {
        padding: 0px;
        width: auto;
    }

    .customized_lit_small_title h2 br {
        display: none;
    }
}

@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: 1000px;
    width: 100%;
    margin: 0 auto;
    font-weight: 500;
    font-size: 28px;
    color: #003673;
    line-height: 1.3;
    display: block;
    /* text-transform: uppercase; */
}

.customized-inner-info p span {
    font-size: 24px;
    font-weight: 400;
    display: unset;
}

.jasens-video-sec {
    padding: 50px 0;
    background-color: #003673;
}

.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: 480px;
    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;
    }

    .customized-inner-info p {
        text-align: left;
    }

    .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: 25px;
    }

    .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');
    min-height: 700px;
    background-position: top;
}

@media only screen and (max-width: 767px) {
    .permanent_solution_wrap_inner p {
        font-size: 20px;
    }

    /* .expect_wrap_info .customized-info h2 {
        color: #003673;
    } */

    .img_width_Wrap {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        height: 406px;
        display: flex;
        align-items: center;
    }

    .choose_wrap_info {
/*         width: 320px; */
        min-height: 276px;
        height: auto;
    }

    .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: #003673;
}

.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;
    line-height: 1.1;
}

.big_font {
    font-size: 1.3em;
    line-height: 1.3 !important;
}

.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: #003673;
    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: #003673;
    display: unset;
}

.dr_inner_text p {
    font-size: 16px;
    color: #1b1d24;
    /* text-transform: uppercase; */
}

.dr_inner_text h4 {
    font-size: 21px;
    font-weight: 500;
    color: #003673;
}

.dr_inner_text strong {
    font-size: 16px;
    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: 16px;
    /*  text-transform: uppercase; */
}

.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: 1024px) {
    .dr_2_sec {
        margin-top: -3%;
    }
}

@media only screen and (min-width: 768px) {
    .dr_img_wrap img {
        max-width: 340px;
    }

    .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: 1199px) {
    .expect_inner_wrap .expect_text_wrap p {
        font-size: 30px;
    }
}

@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: 600px;
        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;
    }

    .dr_stuart {
        height: 450px;
        max-width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .choose_wrap_innner_info .choose_innner_text>span,
    .choose_wrap_innner_info .choose_innner_text p,
    .dr_inner_text ul li,
    .dr_inner_text p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 567px) {
    .dr_stuart {
        height: 330px;
        max-width: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/*===============================================
= End Ecpect Inner CSS
================================================*/
/*===============================================
= Start Dental Text CSS
================================================*/
.dental_text_wrap {
    text-align: center;
}

.dental_text_wrap p {
    max-width: 100% !important;
}

/*===============================================
= End Dental Text CSS
================================================*/
.first_step-sec {
    background-image: url('/lp-asset/lp-images/first_step-img.jpg');
}

@media only screen and (max-width: 767px) {
    .first_step-sec {
/*         width: 320px; */
        min-height: 276px;
        height: auto;
    }
}

/*===============================================
= Start Pom Text CSS
================================================*/
.lp_pom-text p {
    color: #003673;
}

.lp_pom-text ul li {
    padding-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.lp_pom-text ul li::before {
    position: absolute;
    content: "";
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #000000;
    border-radius: 100%;
}

.lp_pom-text ul {
    padding-bottom: 5px;
}

.dark_list {
    font-weight: 500;
}

.pom-text-right {
    padding-bottom: 60px;
}

@media only screen and (max-width: 1199px) {
    .pom-text-right {
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .pom-text-right {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .pom-text-right {
        padding-bottom: 0px;
        padding-top: 30px;
    }
}

/*===============================================
= End Pom Text CSS
================================================*/
/*===============================================
= Start Footer CSS
================================================*/
.footer-text img {
    width: 100%;
    max-width: 148px;
    display: block;
    margin: 0 auto 15px;
}

.footer-text p {
    display: block;
    padding: 0;
    margin: 0 !important;
    font-size: 14px;
}

.copy-right {
    background-color: #003673;
    padding: 30px 0;
    margin-top: 20px;
}

.copy-right p {
    color: #fff;
    font-size: 14px;
    padding: 0 15px;
}

/*===============================================
= End Footer CSS
================================================*/
/*===============================================
= Start Pricing CSS
================================================*/
.special_offer_sec{
    padding-top: 60px;
    padding-bottom: 60px;
}
.new_patient_box {
        padding: 34px 20px 100px 20px;
        box-shadow: 0px 9px 24px rgb(0 0 0 / 6%);
        background-color: #fff;
        width: 100%;
        height: calc(100% - 20px);
        position: relative;
        box-sizing: border-box;
        overflow: hidden;
        display: inline-block;
    }
    .new_patient_box_title {
        border-bottom: 2px solid #ECF4FA;
        margin: 0 0 25px;
        padding: 0 0 10px;
    }
    .new_patient_box_title img {
        margin: 0 auto;
    }
    .new_patient_box_title h3:first-of-type{
        padding-top: 24px;
        padding-bottom: 0px;
    }
    .new_patient_box_title h3 {
        font-size: 20px;
        font-weight: 400;
        color: rgb(0, 0, 0);
    }
    .new_patient_box_title h2 {
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        color: #003673;
    }
    .new_patient_box_title h2 span {
        font-size: 18px;
    }
    .denture_first_section {
        overflow-x: hidden;
    }
    .new_patient_box .denture_btn {
        position: absolute;
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
    .new_patient_box .denture_btn a {
        width: 100%;
        text-align: center;
    }
@media only screen and (min-width: 650px){
    .patient_offer_slider.slick-slider {
        height: 100%;
    }
    .patient_offer_slider .slick-list.draggable , .patient_offer_slider .slick-track {
        height: inherit;
        z-index: 10;
        position: relative;
    }
}
@media only screen and (max-width: 767px){
    .new_patient_box_title{
        margin: 0 0 10px;
    }
}
/*===============================================
= End Pricing CSS
================================================*/
.video-btn {
    text-align: center;
    margin-top: 30px;
}
.video-btn a {
    background-color: var(--white_color);
    color: #326171;
    border: 1px solid var(--white_color);
}
.video-btn a:hover {
    background-color: transparent;
    color: var(--white_color);
}
.center_txt_btn {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    margin-top: 30px;
}
.default_btn {
    margin-top: 25px;
}
.default_btn a {
    text-transform: uppercase;
    padding: 19px 29px;
    background: var(--blue_color);
    color: var(--white_color);
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    border: 1px solid var(--blue_color);
    text-align: center;
    transition: all 0.3s ease 0s;
}
.default_btn a:hover {
    background: transparent;
    color: var(--blue_color);
}
@media only screen and (max-width: 767px) {
    .video-btn {
        text-align: center;
        margin-top: 20px;
    }
}
@media only screen and (max-width: 575px) {
    .default_btn a {
        padding: 15px;
        font-size: 15px;
        width: 100%;
    }
}
@media only screen and (max-width: 480px) {
    .default_btn a {
        padding: 15px;
        font-size: 15px;
    }
}
.footer-text p span {
    color: #003673;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 500;
}
/* btn-dropdown */
.schedule-call-cta.schedule-info h3 {
    margin-bottom: 15px;
}
body .apply-now .dropdown-toggle,
.apply-now ul.dropdown-menu {
    width: 100%;
}
ul.apply-now {
    position: relative;
    max-width: 328px;
    width: 100%;
    margin: 0 auto;
}
.schedule-info .apply-now .dropdown-menu a {
    font-size: 16px;
}
.schedule-info .apply-now .dropdown-menu li {
    padding: 0 15px;
}
.schedule-info .apply-now .dropdown-menu li:not(:last-of-type) {
    padding-bottom: 12px;
}
@media only screen and (max-width: 1199px){
    ul.apply-now {
        max-width: 300px;
    }
}
@media only screen and (max-width: 767px){
    .schedule-info .apply-now .dropdown-menu a {
        font-size: 15px;
        font-weight: 400;
    }
}
@media only screen and (max-width: 575px){
    .schedule-info .apply-now .dropdown-menu a span {
        display: none;
    }
}
@media only screen and (max-width: 480px){
    ul.apply-now {
        max-width: 264px;
    }
}