@charset "utf-8";


.msg-newslettersubscription {
    border-radius: 10px;
    max-width: 540px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
}

.alert-successnewsletter {
    color: yellow;
}

.invalid-feedback-newsletter {
    width: 65%;
    margin-top: 0.25rem;
    color: white;
}

#emailNewsLetter::placeholder {
    color: #858585;
}

body {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    margin: 0;
    padding: 0;
    background: #fff;
    font-size: 16px;
    color: #000;
    overflow-x: hidden;
}

div, section, figure {
    padding: 0;
    margin: 0;
}

a {
    border: 0;
    outline: none;
    -webkit-transition: all 200s ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    color: #000;
}

    a:hover, a:focus {
        text-decoration: none;
        color: #434C56;
        outline-style: none;
    }

img {
    max-width: 100%;
}

.clear {
    clear: both
}

.clearfix:before, .clearfix:after {
    display: table;
    content: " ";
}

.clearfix:after {
    clear: both;
}



/*CSS FOR SCREEN.CSS FILE*/
.top-menu li a.btn-loginsignup {
    border: solid 2px #2C66E4;
    border-radius: 10px;
    padding: 7px 15px;
    text-align: center;
    color: #2C66E4;
    line-height: 1.7;
    text-transform: capitalize;
    font-weight: 500;
}

@media only screen and (min-width:768px) and (max-width:1023px) {
    .top-menu li {
        margin: 0 0 0 6px;
    }

        .top-menu li a {
            font-size: 12px;
        }
}

@media only screen and (min-width:992px) and (max-width:1024px) {
    .top-menu li {
        margin: 0 0 0 12px;
    }

        .top-menu li a {
            font-size: 13px;
        }
}
/*CSS FOR SCREEN.CSS FILE*/



/*Banner*/
.hero-banner-img {
    position: relative;
    z-index: 2;
}

    .hero-banner-img .banner-img1 {
        position: absolute;
        top: 100px;
        left: -40px;
        -webkit-animation: float 2s ease-in-out infinite;
        animation: float 2s ease-in-out infinite;
    }

    .hero-banner-img .banner-img2 {
        position: absolute;
        top: 270px;
        left: 20px;
        -webkit-animation: mover 2s infinite alternate;
        animation: mover 2s infinite alternate;
    }

    .hero-banner-img .banner-img3 {
        position: absolute;
        top: 340px;
        left: -40px;
        -webkit-animation: mover2 1s infinite alternate;
        animation: mover2 1s infinite alternate;
    }

    .hero-banner-img .banner-img4 {
        position: absolute;
        top: 120px;
        right: 20px;
        -webkit-animation: mover2 1s infinite alternate;
        animation: mover2 1s infinite alternate;
    }

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

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

    100% {
        transform: translateY(-5px);
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero-banner-img .banner-img1 {
        top: 30px;
    }

    .hero-banner-img .banner-img2 {
        top: 160px;
        left: -20px;
    }

    .hero-banner-img .banner-img3 {
        top: 210px;
    }

    .hero-banner-img .banner-img4 {
        top: 100px;
    }
}

@media only screen and (min-width:992px) and (max-width:1024px) {
    .hero-banner-img .banner-img1 {
        top: 80px;
    }

    .hero-banner-img .banner-img2 {
        top: 210px;
        left: 0px;
    }

    .hero-banner-img .banner-img3 {
        top: 270px;
    }

    .hero-banner-img .banner-img4 {
        top: 140px;
    }
}




.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d2d32;
    padding: 0;
    margin: 0 0 20px;
}

/*Hero Banner*/
.hero-banner-new {
    background: #DEEEFF;
    padding-top: 30px;
    position: relative;
    overflow: hidden;
}

    .hero-banner-new:before {
        content: '';
        position: absolute;
        left: -10%;
        top: -100%;
        width: 800px;
        height: 800px;
        border-radius: 50%;
        background: #BCE4FF;
        z-index: 1;
    }

.hero-banner-txt {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 80%;
    position: relative;
    z-index: 2;
}

    .hero-banner-txt h1 {
        font-size: 36px;
        font-weight: 700;
        color: #545454;
        padding: 0;
        margin: 0px 0 15px;
    }

        .hero-banner-txt h1 span {
            font-weight: 400;
            display: block;
        }

    .hero-banner-txt p {
        font-size: 16px;
        font-weight: 400;
        color: #545454;
        line-height: 1.8;
        padding: 0;
        margin: 0px 0 15px;
    }

    .hero-banner-txt .blue-btn-new {
        background: #2c66e4;
        font-size: 16px;
        padding: 10px 25px;
        border: none;
        cursor: pointer;
        color: #fff;
        border-radius: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-block;
        -webkit-transition: all 200s ease-in-out;
        -moz-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out;
    }

        .hero-banner-txt .blue-btn-new:hover, .hero-banner-txt .blue-btn-new:focus {
            background: #053291;
            -webkit-transition: all 200s ease-in-out;
            -moz-transition: all 200ms ease-in-out;
            transition: all 200ms ease-in-out;
            color: #fff;
        }

.meet-doc-mobile, .doc24-mobile, .checkup-mobile {
    display: none;
}




/*Specialities*/
.specialities-hld {
    background: #F5F5F5;
    padding-top: 30px;
}

    .specialities-hld .homepage-section-heading {
        font-size: 24px;
        font-weight: 700;
        color: #2d2d32;
    }

    .specialities-hld .homepage-section-paragraph {
        font-size: 16px;
        font-weight: 400;
        color: #545454;
    }

    .specialities-hld .top-speciality-card {
        -webkit-box-shadow: 0 1px 4px 0 rgb(45 45 51 / 10%);
        box-shadow: 0 1px 4px 0 rgb(45 45 51 / 10%);
        border-radius: 10px;
        background: #fff;
    }

        .specialities-hld .top-speciality-card .heading {
            font-weight: 400;
        }

    .specialities-hld .health-problem-card {
        width: 100%;
    }

    .specialities-hld .top-speciality-card img {
        transform: scale(1);
        -webkit-transition: all 100s ease-in-out;
        -moz-transition: all 100ms ease-in-out;
        transition: all 100ms ease-in-out;
    }

    .specialities-hld .top-speciality-card:hover img {
        transform: scale(1.1);
        -webkit-transition: all 200s ease-in-out;
        -moz-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out;
    }



/*CHC*/
.chc-hld {
    background: #F5F5F5;
    padding-bottom: 30px;
}

    .chc-hld .homepage-section-heading {
        font-size: 24px;
        font-weight: 700;
        color: #2d2d32;
    }

    .chc-hld .homepage-section-paragraph {
        font-size: 16px;
        font-weight: 400;
        color: #545454;
    }

    .chc-hld .health-problem-card .content .heading {
        font-size: 14px;
        font-weight: 500;
        color: #414146;
        line-height: 1.43;
        margin-bottom: 3px;
        text-align: center;
    }

    .chc-hld .health-problem-card {
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 0px solid #f0f0f5;
    }

        .chc-hld .health-problem-card img {
            height: 130px;
            border-radius: 10px;
        }



/*About New section*/
.about-new-hld {
    background: #E3F0FE;
    padding: 70px 0;
    margin: 0 0;
}

.about-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2d2d32;
    padding: 0;
    margin: 0px 0 15px;
}

.about-content p {
    font-size: 16px;
    font-weight: 400;
    color: #545454;
    line-height: 1.8;
    padding: 0;
    margin: 0px 0 15px;
}

.about-btn {
    background: #2c66e4;
    font-size: 16px;
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    color: #fff;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    -webkit-transition: all 200s ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

    .about-btn:hover, .about-btn:focus {
        background: #053291;
        -webkit-transition: all 200s ease-in-out;
        -moz-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out;
        color: #fff;
    }

.about-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-new-hld .card {
    border-radius: 10px;
    height: 100%;
}

.about-cards {
    margin-top: 40px;
}

.about-carousel .owl-stage {
    display: flex;
}

.about-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.about-cards .owl-carousel .owl-item .card-img-top {
    width: 75px;
    height: 75px;
    margin: 30px auto 15px;
}

.about-cards .card-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #545454;
    padding: 0;
    margin: 0px 0 15px;
}

.about-cards .card-text {
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: #545454;
    line-height: 1.8;
    padding: 0;
    margin: 0px 0 0px;
}

.about-new-hld .card {
    -webkit-transition: all 200s ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

    .about-new-hld .card:hover {
        background: #2c66e4;
        color: #fff;
        -webkit-transition: all 200s ease-in-out;
        -moz-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out;
    }

        .about-new-hld .card:hover .card-title, .about-new-hld .card:hover .card-text {
            color: #fff;
            -webkit-transition: all 200s ease-in-out;
            -moz-transition: all 200ms ease-in-out;
            transition: all 200ms ease-in-out;
        }



/*How Work*/
.how-work-hld {
    background: #F5F5F5;
    padding: 100px 0;
}

.how-work-txt {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

    .how-work-txt:after {
        box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
        border: solid 1px #f1f1f1;
        background: #fff;
        content: '';
        position: absolute;
        width: 200%;
        height: 120%;
        border-radius: 10px;
        z-index: 0;
    }

    .how-work-txt h2 {
        font-size: 24px;
        font-weight: 600;
        color: #2d2d32;
        padding: 0;
        margin: 0px 0 15px 50px;
        position: relative;
        z-index: 2;
    }

    .how-work-txt p {
        font-size: 16px;
        font-weight: 400;
        color: #545454;
        padding: 0;
        margin: 0px 0 0px 50px;
        line-height: 1.6;
        position: relative;
        z-index: 2;
    }

.how-work-hld .custom-video {
    border-radius: 10px;
}



/*Testimonial*/
.testimonial-hld {
    background: #E3F0FE;
    padding: 50px 0;
    margin: 0 0;
}

.testimonial-carousel .owl-stage {
    display: flex;
}

.testimonial-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}

    .testimonial-carousel .owl-item .item {
        margin: 0 3px;
    }

.testimonial-list-card {
    padding-bottom: 15px;
    height: 100%;
}

.testimonial-card {
    box-shadow: 0 1px 3px rgb(0 0 0 / 20%);
    border: solid 1px #cdcdcd;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    height: 100%;
    background: #fff;
    padding: 20px;
}

.owl-carousel .owl-item .testimonial-card img.comma {
    width: 38px;
}

.testimonial-content {
    font-size: 16px;
    font-weight: 400;
    color: #545454;
    padding: 0;
    margin: 15px 0 15px;
    line-height: 1.8;
}

.testimonial-footer {
    display: flex;
}

.owl-carousel .owl-item .testimonial-footer .profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-footer .profile {
    margin-left: 0px;
}

.testimonial-footer .cust-name {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d32;
    padding: 0;
    margin: 3px 0 3px;
}

.testimonial-footer .cust-profession {
    font-size: 16px;
    font-weight: 400;
    color: #969696;
    padding: 0;
    margin: 0 0 0px;
}



/*home blog*/
.blog-hld {
    padding: 50px 0;
    background: #F5F5F5;
}

.blog-carousel .owl-stage {
    display: flex;
}

.blog-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}

    .blog-carousel .owl-item .item {
        margin: 0 3px;
    }

.blog-list-card {
    padding-bottom: 15px;
    height: 100%;
}

.blog-card {
    box-shadow: 0 1px 4px #00000059;
    border: solid 1px #cdcdcd;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    height: 100%;
    background: #fff;
}

.blog-card-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: block;
    overflow: hidden;
    border-bottom: 0;
}

.blog-content {
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

    .blog-content .blog-title {
        font-size: 20px;
        font-weight: 700;
        color: #2d2d32;
        padding: 0;
        margin: 0 0 20px;
    }

    .blog-content .blog-date {
        font-size: 14px;
        font-weight: 400;
        color: #969696;
        text-transform: uppercase;
        padding: 0;
        margin: 0 0 20px;
    }

    .blog-content .blog-description {
        font-size: 16px;
        font-weight: 400;
        color: #545454;
        padding: 0;
        margin: 0 0 20px;
        line-height: 1.6;
    }

    .blog-content .blog-btn {
        border-radius: 10px;
        border: solid 1px #545454;
        text-align: center;
        padding: 10px 20px;
        color: #545454;
        font-size: 14px;
        margin: 0 0 15px;
        display: inline-block;
        -webkit-transition: all 200s ease-in-out;
        -moz-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out;
    }

        .blog-content .blog-btn:hover {
            background: #2c66e4;
            color: #fff;
            border: solid 1px #2c66e4;
            -webkit-transition: all 200s ease-in-out;
            -moz-transition: all 200ms ease-in-out;
            transition: all 200ms ease-in-out;
        }

    .blog-content .blog-title a:hover {
        color: #2c66e4;
        -webkit-transition: all 200s ease-in-out;
        -moz-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out;
    }

.blog-card:hover .blog-card-img img {
    transform: scale(1.1);
    -webkit-transition: all 200s ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.blog-card .blog-card-img img {
    transform: scale(1);
    -webkit-transition: all 400s ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}

/*carousel btn .health-problem-carousel  specialities*/
.owl-carousel.specialities-carousel .owl-nav button.owl-next, .owl-carousel.specialities-carousel .owl-nav button.owl-prev,
.owl-carousel.health-problem-carousel .owl-nav button.owl-next, .owl-carousel.health-problem-carousel .owl-nav button.owl-prev,
.owl-carousel.blog-carousel .owl-nav button.owl-next, .owl-carousel.blog-carousel .owl-nav button.owl-prev,
.owl-carousel.testimonial-carousel .owl-nav button.owl-next, .owl-carousel.testimonial-carousel .owl-nav button.owl-prev,
.owl-carousel.about-carousel .owl-nav button.owl-next, .owl-carousel.about-carousel .owl-nav button.owl-prev {
    width: 36px;
    height: 36px;
    border: solid 2px #2c66e4;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255 255 255 / 59%);
}

    .owl-carousel.specialities-carousel .owl-nav button.owl-next span, .owl-carousel.specialities-carousel .owl-nav button.owl-prev span, .owl-carousel.health-problem-carousel .owl-nav button.owl-next span, .owl-carousel.health-problem-carousel .owl-nav button.owl-prev span, .owl-carousel.blog-carousel .owl-nav button.owl-next span, .owl-carousel.blog-carousel .owl-nav button.owl-prev span, .owl-carousel.testimonial-carousel .owl-nav button.owl-next span, .owl-carousel.testimonial-carousel .owl-nav button.owl-prev span, .owl-carousel.about-carousel .owl-nav button.owl-next span, .owl-carousel.about-carousel .owl-nav button.owl-prev span {
        font-size: 36px;
        line-height: 30px;
        color: #2c66e4;
        top: 0;
    }

.owl-carousel.specialities-carousel .owl-nav button.owl-next, .owl-carousel.health-problem-carousel .owl-nav button.owl-next, .owl-carousel.blog-carousel .owl-nav button.owl-next, .owl-carousel.testimonial-carousel .owl-nav button.owl-next, .owl-carousel.about-carousel .owl-nav button.owl-next {
    right: -20px;
}


.owl-carousel.specialities-carousel .owl-nav button.owl-prev, .owl-carousel.health-problem-carousel .owl-nav button.owl-prev, .owl-carousel.blog-carousel .owl-nav button.owl-prev, .owl-carousel.testimonial-carousel .owl-nav button.owl-prev, .owl-carousel.about-carousel .owl-nav button.owl-prev {
    left: -20px;
}

    .owl-carousel.specialities-carousel .owl-nav button.owl-next:focus, .owl-carousel.specialities-carousel .owl-nav button.owl-prev:focus, .owl-carousel.health-problem-carousel .owl-nav button.owl-next:focus, .owl-carousel.health-problem-carousel .owl-nav button.owl-prev:focus, .owl-carousel.blog-carousel .owl-nav button.owl-next:focus, .owl-carousel.blog-carousel .owl-nav button.owl-prev:focus, .owl-carousel.testimonial-carousel .owl-nav button.owl-next:focus, .owl-carousel.testimonial-carousel .owl-nav button.owl-prev:focus, .owl-carousel.about-carousel .owl-nav button.owl-next:focus, .owl-carousel.about-carousel .owl-nav button.owl-prev:focus {
        outline: none;
    }

    .owl-carousel.specialities-carousel .owl-nav button.owl-prev.disabled, .owl-carousel.health-problem-carousel .owl-nav button.owl-prev.disabled, .owl-carousel.blog-carousel .owl-nav button.owl-prev.disabled, .owl-carousel.testimonial-carousel .owl-nav button.owl-prev.disabled, .owl-carousel.blog-carousel .owl-nav button.owl-next.disabled, .owl-carousel.testimonial-carousel .owl-nav button.owl-next.disabled, .owl-carousel.about-carousel .owl-nav button.owl-next.disabled, .owl-carousel.about-carousel .owl-nav button.owl-prev.disabled, .owl-carousel.health-problem-carousel .owl-nav button.owl-next.disabled, .owl-carousel.specialities-carousel .owl-nav button.owl-next.disabled {
        opacity: 0.4;
    }



/*Newsletter Hld*/
.newsletter-hld {
    margin: 60px 0;
}

.newsletter-hld-inn {
    background: #D94927;
    border-radius: 10px;
    padding: 50px 0;
    text-align: center;
}

    .newsletter-hld-inn h2 {
        font-size: 30px;
        color: #fff;
        padding: 0 0 10px 0;
        margin: 0;
        font-weight: 700;
    }

    .newsletter-hld-inn p {
        font-size: 16px;
        color: #fff;
        padding: 0 0 30px 0;
        margin: 0;
        font-weight: 400;
    }

.newsletter-form {
    background: #fff;
    border-radius: 10px;
    max-width: 540px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
}

    .newsletter-form .newsletter-input {
        border: 0;
        background: #fff;
        width: 75%;
        padding: 7px 10px;
        outline: none;
    }

    .newsletter-form .newsletter-button {
        border-radius: 10px;
        background: #2c66e4;
        text-align: center;
        font-size: 16px;
        font-weight: 400;
        /*padding: 7px 25px;*/
        margin: 0;
        border: 0;
        width: 25%;
        color: #fff;
        outline: none;
    }

        .newsletter-form .newsletter-button:hover {
            background: #053291;
        }


/*Footer*/
.footer-new-list.footer-txt ul {
    width: 100%;
    margin: 0;
    margin-top: 12px;
}

    .footer-new-list.footer-txt ul li a {
        padding: 0 0 5px 0px;
        color: #8C8C8C;
    }
        /*.footer-new-list.footer-txt ul li a:hover  {color: #075CC9;}*/

        .footer-new-list.footer-txt ul li a:hover, .menu-list ul li a.active {
            color: #075CC9;
        }

    .footer-new-list.footer-txt ul.footer-social-lists {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

        .footer-new-list.footer-txt ul.footer-social-lists li {
            display: flex;
            width: 50%;
        }

.footer-new-text {
    width: 90%;
}

    .footer-new-text.footer-txt h3 {
        margin-bottom: 9px;
    }

.footer-social .social_icons {
    display: none;
}

@media (max-width: 767px) {
    .footer-new-list.footer-txt ul {
        margin-top: 0px;
    }

    .footer-new-list.footer-txt {
        padding-top: 20px;
        padding-bottom: 5px;
    }

        .footer-new-list.footer-txt p {
            margin-bottom: 5px;
        }

    .footer-social {
        border-top: 0;
    }

        .footer-social h3 {
            display: none;
        }

        .footer-social .footer-links {
            display: none;
        }

    .footer-new-list.footer-txt ul.footer-social-list {
        display: flex;
        flex-direction: row;
        justify-content: flex-start !important;
    }

    .footer-social .social_icons {
        display: block;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .footer-txt ul li a {
        font-size: 13px;
    }
}

@media (min-width: 1024px) {
    .top-speciality-cards .owl-carousel.specialities-carousel .owl-item img {
        width: 98px;
    }
}


@media (min-width: 1024px) {
    .top-speciality-cards .owl-carousel.specialities-carousel .owl-item img {
        width: 98px;
    }
}







/*Big iPad*/

@media only screen and (min-width:992px) and (max-width:1279px) {
}

/*Small iPad*/
@media only screen and (min-width:768px) and (max-width:992px) {
    /*Hero Banner*/
    .hero-banner-txt {
        width: 95%:
    }

        .hero-banner-txt h1 {
            font-size: 26px;
            margin: 0px 0 10px;
        }

        .hero-banner-txt p {
            line-height: 1.4;
            margin: 0px 0 10px;
        }

    .hero-banner:before {
        left: -30%;
        top: -110%;
        width: 600px;
        height: 600px;
    }

    .specialities-hld {
        padding-top: 10px;
    }

    .chc-hld .health-problem-card {
        width: 100%;
    }

    .chc-hld {
        padding-bottom: 0px;
    }

    .how-work-hld {
        padding: 30px 0;
    }

    .how-work-txt:after {
        display: none;
    }

    .how-work-txt {
        margin-bottom: 20px;
    }

        .how-work-txt h2 {
            margin: 0px 0 15px 0px;
        }

        .how-work-txt p {
            margin: 0px 0 0px 0px;
        }

    .blog-hld {
        padding: 20px 0;
    }

    .testimonial-hld {
        padding: 20px 0;
    }

    .owl-carousel.specialities-carousel .owl-nav button.owl-next, .owl-carousel.health-problem-carousel .owl-nav button.owl-next, .owl-carousel.blog-carousel .owl-nav button.owl-next, .owl-carousel.testimonial-carousel .owl-nav button.owl-next, .owl-carousel.about-carousel .owl-nav button.owl-next {
        right: -10px;
    }


    .owl-carousel.specialities-carousel .owl-nav button.owl-prev, .owl-carousel.health-problem-carousel .owl-nav button.owl-prev, .owl-carousel.blog-carousel .owl-nav button.owl-prev, .owl-carousel.testimonial-carousel .owl-nav button.owl-prev, .owl-carousel.about-carousel .owl-nav button.owl-prev {
        left: -10px;
    }
}

/*Only Mobile*/
@media (max-width: 767px) {
    /*@media (max-width: 600px) {*/
    .owl-nav {
        display: none;
    }
    /*}*/

    /*Hero Banner*/
    .hero-banner-new {
        padding-top: 80px;
    }

    .hero-banner-txt {
        max-width: 100%;
        padding: 15px 0 30px;
    }

        .hero-banner-txt h1 {
            font-size: 30px;
        }

    .banner-img1, .banner-img2, .banner-img3, .banner-img4 {
        display: none;
    }

    .meet-doc-mobile, .checkup-mobile, .doc24-mobile {
        display: block;
    }

        .meet-doc-mobile img, .checkup-mobile, .doc24-mobile {
            width: 100%;
        }

    .meet-doc-mobile {
        margin: 8px 0;
    }

    .specialities-hld {
        padding-top: 10px;
    }

    /*CHA*/
    .chc-hld .health-problem-card {
        width: 100%;
    }

        .chc-hld .health-problem-card img {
            height: 160px;
        }

    .chc-hld {
        padding-bottom: 0px;
    }

    /*About*/
    .about-new-hld .embed-responsive {
        margin: 0 0 20px;
    }

    /*How Work*/
    .how-work-hld {
        background: #f3f3f3;
        padding: 30px 0;
    }

    .how-work-txt {
        margin-bottom: 20px;
    }

        .how-work-txt:after {
            display: none;
        }

        .how-work-txt h2, .how-work-txt p {
            margin-left: 0;
        }

    .how-work-hld .embed-responsive {
        margin-top: 10px;
    }



    /*All section carousel button */
    .owl-carousel.blog-carousel .owl-nav button.owl-next, .owl-carousel.blog-carousel .owl-nav button.owl-prev, .owl-carousel.testimonial-carousel .owl-nav button.owl-next, .owl-carousel.testimonial-carousel .owl-nav button.owl-prev {
        top: inherit;
        bottom: -30px;
        transform: inherit;
        /*top: 50%;
		bottom: inherit;
		transform: translateY(-50%);*/
    }

    .owl-carousel.about-carousel .owl-nav button.owl-next, .owl-carousel.about-carousel .owl-nav button.owl-prev {
        top: inherit;
        bottom: -40px;
        transform: inherit;
        /* top: 50%;
        bottom: inherit;
        transform: translateY(-50%);*/
    }

    .owl-carousel.blog-carousel .owl-nav button.owl-next, .owl-carousel.testimonial-carousel .owl-nav button.owl-next, .owl-carousel.about-carousel .owl-nav button.owl-next {
        right: 0px;
    }

    .owl-carousel.blog-carousel .owl-nav button.owl-prev, .owl-carousel.testimonial-carousel .owl-nav button.owl-prev, .owl-carousel.about-carousel .owl-nav button.owl-prev {
        left: 0px;
    }


    .owl-carousel.specialities-carousel .owl-nav button.owl-next, .owl-carousel.health-problem-carousel .owl-nav button.owl-next {
        right: -10px;
    }


    .owl-carousel.specialities-carousel .owl-nav button.owl-prev, .owl-carousel.health-problem-carousel .owl-nav button.owl-prev {
        left: -10px;
    }


    /*Newsletter*/
    .newsletter-hld-inn {
        padding: 20px 15px;
    }

        .newsletter-hld-inn h2 {
            font-size: 24px;
        }

    .newsletter-form .newsletter-input {
        width: 70%;
    }

    .newsletter-form .newsletter-button {
        width: 46%;
        padding: 7px 10px;
    }



    /*Footer*/
    .footer-social .footer-links {
        display: none;
    }

    .footer-social .social_icons {
        display: block;
    }

    .footer-new-list.footer-txt ul.footer-social-list {
        display: flex;
        flex-direction: row;
        justify-content: flex-start !important;
    }

    .footer-txt {
        border-top: solid 1px #e6e6e6;
        padding-top: 20px;
        padding-bottom: 5px;
    }

    .footer-new-list.footer-txt ul {
        margin-top: 0px;
    }

    .footer-social h3 {
        display: none;
    }

    .footer-social {
        border-top: 0;
    }

    .specialities-carousel .top-speciality-card img {
        height: 100px;
        width:  100px;
    }
    .top-speciality-cards .owl-carousel.specialities-carousel .owl-item img {
        width: 100px;
    }

    .top-speciality-cards .owl-carousel.specialities-carousel .owl-item img {
        width: 100px;
    }

    .blog-carousel.owl-carousel .owl-dots, .testimonial-carousel.owl-carousel .owl-dots, .about-carousel.owl-carousel .owl-dots {
        text-align: center;
    }

    .blog-carousel.owl-carousel button.owl-dot, .testimonial-carousel.owl-carousel button.owl-dot, .about-carousel.owl-carousel button.owl-dot {
        background: #fff;
        width: 12px;
        height: 12px;
        margin: 0 8px;
        border-radius: 50%;
        border: solid 1px #2D66E4;
        outline: none;
    }

        .blog-carousel.owl-carousel button.owl-dot.active, .testimonial-carousel.owl-carousel button.owl-dot.active, .about-carousel.owl-carousel button.owl-dot.active {
            background: #2D66E4;
            outline: none;
        }
}
