/********** Template CSS **********/
:root {
    --primary: #348E38;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
}

.back-to-top {
    position: fixed;
    display: none;
    /* right: 30px; */
    right: 12px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    /* top: -100px; */
    transition: .5s;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, .6);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        /* top: 84px; */
        object-fit: cover;
    }
}

.page-header1{
    background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../img/ig1.jpeg) center center no-repeat;
    background-size: cover;
}

.page-header2{
    background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../img/Physical1.jpg) center center no-repeat;
    background-size: cover;
}
.page-header {
    background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../img/ph2.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(15, 66, 41, .6);
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
    /* Enhancing image clarity */
    filter: brightness(1.1) contrast(1.1);
   
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(15, 66, 41, .6);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
    height: auto;
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
    width: 101%;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "›";
    font-family: "Open Sans",sans-serif;
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #072A19;
}

.copyright a {
    color: #FFFFFF;
}

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


.modal {
    /* display: none; */
    position: fixed;
    z-index: 3001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
}


.close {
    color: #aaa;
    float: left;
    font-size: 28px;
    font-weight: bold;
    margin-left: auto;
    cursor: pointer;
}

.logoimgg {
    width: 70px;
}

.typed-words {
    color: #212529;
    font-style: bold;
    text-shadow: white;
}



.testname {
    text-align: center;
    margin-top: -98px;
    font-size: 35px;
}

/* TESTIMONEL END */

.iastmimg {
    width: 34%;
    border-radius: 10%;
    margin-left: 650px;
}

.iastmimgtext {
    width: 52%;
    margin-top: -239px;
}

.physiogunimg {
    height: 309px;
    width: 40%;
    margin-top: -85px;
    /* border-radius: 30px; */
}

.drynidlingimg {
    height: 310px;
    margin-top: -85px;
    border-radius: 9px;
    margin-left: 81px;
}

.imgdry1 {
    height: 310px;
    margin-left: 81px;
    margin-top: -94px;
    border-radius: 0px;
}

.textdrynid {
    font-size: 21px;
    color: #000 !important;
    text-align: center;
    margin-left: 69px;
    font-weight: bold;
}

.textdrynnid {
    margin-top: 157px;
    margin-left: -122px;
    width: 62%;
    text-align: justify;
}

.drynimg {
    height: 308px;
    margin-left: 61%;
    margin-top: 0%;
}

.textsideofimgg {
    width: 52%;
    text-align: justify;
    position: absolute;
    margin-left: 566px;
    margin-top: 60px;
}

.textdrynid {
    font-size: 21px;
    color: #000 !important;
    margin-left: 301px;
    /* text-align: center; */
    font-weight: bold;
    margin-top: 68px;

}

.textdrynidiling {
    font-size: 21px;
    color: #000 !important;
    /* text-align: center; */
    font-weight: bold;
    margin-top: 31px;
    margin-left: 564px;
}

.textisdry {
    font-size: 21px;
    color: #000 !important;
    /* text-align: center; */
    /* margin-left: 92px; */
    font-weight: bold;

    /* margin-left: -117px; */
    margin-top: 160px;
}

.textsidecombinational {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: justify;
}

.itasmtexthed {
    font-size: 21px;
    color: #000 !important;
    text-align: center;
    font-weight: bold;
    margin-top: 33px;
    margin-left: -119px;

}

.physiotextim {

    margin-left: -10px;

}

.textsideofimgphgun {
    width: 54%;
    text-align: justify;
    position: absolute;
    margin-left: 556px;
}

.textdrynidilingg {
    font-size: 21px;
    color: #000 !important;
    /* text-align: center; */
    font-weight: bold;
    margin-top: 39px;
    margin-left: 564px;
}

.imgdry12 {
    height: 310px;
    margin-left: 81px;
    margin-top: -87px;
    border-radius: 9px;
}

.textofmanualth {
    text-align: justify;
    width: 84%;
    margin-left: 9%;

}

.nameap {
    width: 38%;
}

.emailsty {
    width: 35%;
}

.phoneinapoint {
    width: 21%;
}

.sessionc {
    margin-top: -79px;
    margin-left: 271px;
}

.seltctimeapoint {
    width: 34%;
    margin-top: -38px;
    margin-left: 20px;
}

.footeraling {
    margin-left: 225px;
}

.followussec {
    margin-left: 49px;
}

.corestrai {
    font-size: 21px;
    color: #000 !important;
    /* text-align: center; */
    font-weight: bold;
    margin-top: 9px;
    margin-left: 460px;
}

.corestraitext {
    width: 54%;
    text-align: justify;
    position: absolute;
    margin-left: 462px;
}

/* .corestraight{
    margin-left: -103px;
  } */
.footgap {
    margin-bottom: 139px;
}

.tratimgt {
    border-radius: 19px;
}

.wdithincres {
    width: 147%;
}

.quicklink {
    margin-left: 76px;
}

.textmanualth {
    margin-top: 0px;
}

.lineinfooter {

    margin-left: -121px;

}

.textsideofimgcombination {
    width: 50%;
    text-align: justify;
    margin-left: 566px;
}

.imgcombinational {
    margin-top: -788px;
    width: 374px;
    height: 395px;
    margin-left: 81px;
    border-radius: 27px;
}

.textsideofimgdifferent {
    width: 54%;
    text-align: justify;
    position: absolute;
    margin-left: 566px;
}

.diffrentstrai {
    font-size: 21px;
    color: #000 !important;
    /* text-align: center; */
    font-weight: bold;
    margin-top: 9px;
    margin-left: 563px;
}

.diffrentstraigt {
    font-size: 21px;
    color: #000 !important;
    /* text-align: center; */
    font-weight: bold;
    margin-top: 9px;
    margin-left: 92px;
}

.textsideofimgdifferennt {
    width: 54%;
    text-align: justify;
    position: absolute;
    margin-left: 500px;
}

.imgdiffrent {
    height: 310px;
    margin-left: 754px;
    margin-top: -41px;
    border-radius: 9px;
}

.textsizep12::after {
    content: "";
    width: 41px;
    height: 4px;
    display: inline-block;
    background: #348E38;
    margin-left: -115px;

}

.corestraightning {
    font-size: 21px;
    color: #000 !important;
    /* text-align: center; */
    font-weight: bold;
    margin-top: -312px;
    margin-left: 563px;
}

.corestraitextttt {
    width: 52%;
    text-align: justify;
    position: absolute;
    margin-left: 566px;
}

.copyrightsec {
    text-align: center;
    margin-left: -66px;
    color: #d2cfcf;
}

.textsize1122::after {
    content: "";
    width: 41px;
    height: 4px;
    display: inline-block;
    background: #348E38;
    margin-left: 500px;
}

.imageweight {
    height: 310px;
    margin-left: 81px;
    margin-top: -39px;
    border-radius: 9px;
}

.stationerycy {
    height: 310px;
    margin-left: 81px;
    margin-top: -35px;
    border-radius: 9px;
}

.heelexcer {
    height: 310px;
    margin-left: 754px;
    margin-top: -29px;
    border-radius: 9px;
}

.ankelexcer {
    height: 310px;
    margin-left: 81px;
    margin-top: -29px;
    border-radius: 9px;
}

.balancebord {
    height: 310px;
    margin-left: 754px;
    margin-top: -29px;
    border-radius: 9px;

}

.sholdeer {
    height: 310px;
    margin-left: 81px;
    margin-top: -29px;
    border-radius: 9px;
}

.nlogooname {
    color: black;
    margin-inline: -22px;
    margin-top: 3px;
    font-weight: bold;
}



.logomain {
    width: 75px;
    margin-left: 19px;
    align-content: start;
    margin-top: 50px;
}

.logomaintext {
    color: #3ae4ff !important;
    margin-inline: -22px;
    margin-top: 3px;
    font-weight: bold;
    margin-left: -7px;
}

.menucbuton {
    margin-right: 10px;
}

.menucbuton {
    margin-left: 344px;
}

.diffrneewsec {
    font-size: 21px;
    text-align: initial;
    font-weight: bolder;
    color: black;
    font-family: "Open Sans",sans-serif;
}

.regtext {
    width: 103%;
}

.appointalign {
    top: -15px;
    right: -60px;
}

.adresc {
    width: 35%;
}

.mapalign {
    margin-top: -315px;
    margin-left: 550px;
}

.endconinfo {
    margin-top: 63px;
}

.boxstyc {
    margin-left: 196px;
}

.mapalignc {
    margin-left: 134px;
    margin-top: 38px;
    width: 90%;
}

.textvacuumeth {
    font-size: 21px;
    color: #000 !important;
    /* text-align: center; */
    font-weight: bold;
    margin-top: 31px;
    margin-left: 564px;
}

.vaccumeet {
    height: 310px;
    margin-left: 35px;
    margin-top: -81px;
    border-radius: 9px;
}

.textvaccumee {
    font-size: 21px;
    color: #000 !important;
    /* text-align: center; */
    font-weight: bold;
    margin-top: 31px;
    margin-left: 564px;
}

.combinationaltextt {
    font-size: 21px;
    color: #000 !important;
    /* text-align: center; */
    font-weight: bold;
    margin-top: 31px;
    margin-left: 564px;
}

.stapingtext {
    width: 55%;
    text-align: justify;
    position: absolute;
    margin-left: 566px;
}

.stappiingimg {
    height: 310px;
    width: 435PX;
    margin-left: 81px;
    margin-top: -229px;
    border-radius: 9px;

}


.textsizep1::after {
    content: "";
    width: 41px;
    height: 4px;
    display: inline-block;
    background: #348E38;
    /* margin: 4px 10px; */
    margin-left: 567px;
}

.textsizep12::after {
    content: "";
    width: 41px;
    height: 4px;
    display: inline-block;
    background: #348E38;
    margin-left: -116px;
    /* margin: 4px 10px; */
    /* margin-left: 462px; */
}


.textsideofimg {
    width: 54%;
    text-align: justify;

    position: absolute;
    margin-left: 566px;
}


.textsizep {
    font-size: 21px;
    color: #000 !important;
    text-align: center;
    font-weight: bold;
    margin-top: 33px;
    margin-left: -80px;

}

.gimargh{
 margin-left: 50px !important;
}

.textsizep2 {
    font-size: 21px;
    color: #000 !important;
    text-align: center;
    margin-left: 92px;
    font-weight: bold;
    margin-top: 35px;
    /* margin-left: -112px; */

}


.whatsapp {
    z-index: 99999;
    width: 65px;
    position: fixed;
    /* bottom: 30px;
    left: 30px; */
    bottom: 20px;
    left: 3px;
    /* padding: 10px 15px; */

    color: #000;
    /* border-radius: 5px;
    border-radius: 1px solid #fff; */
    cursor: pointer;
    /* transition: all 0.5s ease 0s; */
}


.neuroimg {
    height: 319px;
    margin-left: 62%;
    margin-top: -85px;
}

.textsideofimg18 {
    width: 52%;
    text-align: justify;
    position: absolute;
    margin-left: 37%;
}


.cloermech {
    color: #FFFFFF;
    padding: 27px;

}

.portfolio-text h4 {
    text-align: center;
}



@media screen and (max-width: 768px) {

    html,
    body {
        width: 100%;
        height: 100%;
        margin: 0;
        overflow-x: hidden;
        overflow-y: scroll;
        position: absolute;
        font-family: "Open Sans", sans-serif;
        top: 0;
        left: 0;
        right: 0;
    }

    body {
        padding-right: 0px;
        padding-left: 0px;
    }

    .response1 {
        height: 175px;
        margin-top: 65px;
        max-width: 100%;
        /* margin-left: 100px; */
    }

    #ft-form .btns {
        margin-left: 5px;
    }

    .footeraling {
        margin-left: 0px !important;
    }

    .navmarg {
        margin-right: 0px
    }

    .logomain {
        width: 68px;
        margin-top: -86px;
    }



    /* #myBtn {
        position: absolute;
        z-index: 9999;
        border: none; */
        /* right: 47px; */
        /* top: 23px; */
        /* padding: 0px 15px; */
        /* height: 38px; */
        /* font-size: 15px;
    } */

    .sessionc {
        margin-top: 0px;
        margin-left: 0px;
    }

    .modal-content {
        background-color: #fefefe;
        margin: 18% 5%;
        padding: 20px;
        border: 1px solid #888;
        width: 90%;
    }

    .emailsty {
        width: 48%;
    }

    .nameap {
        width: 46%;
    }

    .phoneinapoint {
        width: 46%;
    }

    .seltctimeapoint {
        width: 82%;
        margin-top: 0px;
        margin-left: 0px;
    }

    .button1 {
        margin-left: -135px;
    }

    .sendmesseg {
        margin-left: 0px;
    }

    .half-wrap>.half .text {
        padding: 6px;
    }

    .copyrightsec {
        /* text-align: center; */
        margin-left: 0px;
        /* color: #d2cfcf; */
    }

    .quicklink {
        margin-left: 0px;
    }

    .stapingtext {
        width: 98%;
        position: initial;
        margin-left: 0px;
        /* height: 230px; */
        margin-left: 14px;
        border-radius: 9px;
    }

    .textdrynidiling {

        margin-top: 0px;
        margin-left: 0px;
    }

    .stappiingimg {
        height: 224px;
        margin-left: 4%;
        border-radius: 9px;
        margin-bottom: 25px;
        width: 90%;
        margin-top: -150px;

    }

    .orthoimg {
        width: 47%;
        height: auto;
        margin-top: -130px;
        border-radius: 30px;
    }

    .textsizep {
        font-size: 27px;
        color: #000 !important;
        text-align: start;
        margin-left: 14px !important;
        font-weight: bold;
    }

    .textsizep1::after {
        content: "";
        width: 49px;
        height: 4px;
        /* display: inline-block; */
        background: #348E38;
        /* margin: 4px 10px; */
        margin-left: 199px;
        margin-bottom: 15px;
    }

    .textsideofimg {
        width: 95%;
        position: unset;
        margin-left: 9px;
        margin-top: 15px;
    }

    .textsizep2 {
        font-size: 27px;
        margin-bottom: -14px;
        margin-left: 0px;
        color: #000 !important;
        font-weight: bold;
    }

    .neuroimg {
        height: 310px;
        margin-left: -86%;
        margin-top: -12px;
        border-radius: 0px;
    }

    .textsizep12::after {
        content: "";
        margin-top: 25px;
        width: 49px;
        height: 4px;
        /* display: inline-block; */
        margin-left: -139px;
        background: #348E38;
    }

    .textsideofimg1 {
        margin-top: 0px;
        margin-left: 0px;
        text-align: justify;
        width: 95%;
        position: unset;

    }

    .cardioimg {
        width: 49%;
        height: 116px;
        margin-top: -126px;
        border-radius: 30px;
    }

    .textsizeps {
        font-size: 27px;
        color: #000 !important;
        margin-left: 196px;
        margin-top: 115px;
        font-weight: bold;
    }

    .antenatalimg {
        height: 115px;
        width: 48%;
        margin-left: 52%;
        margin-top: -85px;
        border-radius: 30px;

    }

    .postnatalimg {
        width: 49%;
        height: 116px;
        margin-top: -126px;
        border-radius: 30px;
    }


    .postnatalname {
        font-size: 27px;
        color: #000 !important;
        margin-left: 168px;
        margin-top: 115px;
        font-weight: bold;
    }

    .imgdry12 {
        height: 207px;
        margin-left: 1%;
        width: 100%;
        margin-top: 10px;
    }

    .textdrynidilingg {
        margin-top: 0px;
        margin-left: 0px;
    }

    .textmanualth {
        margin-top: 0px;
        width: 84%;
        margin-left: 7%;
    }

    .corestraitextttt {
        margin-left: 10px;
        width: 76%;
        /* margin-top: 200px; */
    }

    .corestraightning {
        margin-left: 0px;
        margin-top: 0px;
    }

    .esimagea {
        margin-left: 11px;
        height: 181px;
        margin-top: 0px;
    }

    .imgdry1 {
        height: 28vh;
        width: 100%;
        margin-left: 1% !important;
        margin-top: 1%;
        border-radius: 0px;
    }


    .textvacuumeth {
        margin-left: 0px;
    }

    .physiogunimg {
        height: 235px;
        width: 100%;
        margin-top: 0px
    }

    .physiotextim {
        margin-left: 23px;
    }

    .textsideofimgphgun {
        margin-top: 0px;
        margin-left: 0px;
        text-align: justify;
        position: unset;
        width: 95%;

    }

    .textsizep1::after {
        content: "";
        width: 49px;
        height: 4px;
        /* display: inline-block; */
        background: #348E38;
        /* margin: 4px 10px; */
        margin-left: 199px;
        margin-bottom: 15px;
        margin-left: 16px;
    }

    .drynidlingimg {
        height: 310px;
        margin-top: -12px;
        border-radius: 9px;
        margin-left: 6px;
        width: 100%;

    }

    .textisdry {
        font-size: 21px;
        color: #000 !important;
        margin-top: 0px;
        margin-left: 1%;
    }

    .textsizep12::after {
        content: "";
        margin-top: 25px;
        width: 49px;
        height: 4px;
        /* display: inline-block; */
        margin-left: -139px;
        background: #348E38;
    }

    .drynimg {
        height: 310px;
        margin-top: -12px;
        margin-left: 0px;
        width: 100%;
    }

    .textdrynnid {
        margin-top: 382px;
        margin-left: -159px;
        text-align: justify;
        width: 95%;

    }

    .textdrynid {
        margin-left: 0px;
    }

    .textsideofimgg {
        width: 95%;
        position: unset;
        margin-left: 9px;
        margin-top: 15px;
    }

    .drynidther {
        height: 310px;
        width: 100%;
        margin-left: 0px;
        margin-top: -12px;
        border-radius: 0px;

    }

    .neuroimg5 {
        height: 310px;
        margin-left: 0%;
        margin-top: -12px;
        border-radius: 0px;
        width: 100%;
    }

    .textsideofimg18 {
        width: 95%;
        position: unset;
        margin-left: 9px;
        margin-top: 15px;
    }

    .textvaccumee {
        margin-top: 0px;
        margin-left: 13px;
    }

    .vaccumeet {
        height: 209px;
        margin-left: 0px;
        margin-top: 0px;
        border-radius: 9px;
        width: 100%;
    }

    .combinationaltextt {
        margin-top: 0px;
        margin-left: 13px;
    }

    .textsideofimgcombination {
        width: 100%;
        text-align: justify;
        margin-left: 0px;
    }

    .imgcombinational {
        margin-top: 0px;
        width: 99%;
        margin-left: 0px;
        border-radius: 27px;

    }

    .boxstyc {
        margin-left: 0px;
        width: 100%;
    }

    .moreinfocon {
        width: 100%;
        text-align: justify;
        margin-left: 00px;
    }

    .mobmapal {
        margin-left: -11px;
    }

    .p-435 {
        padding: 2.5rem !important;
    }

    .mobmapvi {
        margin: auto;
    }

    .mobmapal {
        margin-left: 5px;
    }

    .gmap {
        width: 100%;
        margin-left: 0px;
        margin-top: 49px;
    }

    .dryniddiv {
        margin-left: 0px;
    }

    .drynimarleft {
        margin-left: 0px;
    }

    .respoimg {
        width: 100%;
        margin-top: 0px !important;
        margin-bottom: 40px;
    }

    .textatcen {
        text-align: center;
    }

    .logomaintext {

        margin-inline: 0px;
        margin-top: -13px;

        font-size: 15px;
        margin-left: -8px;
    }

    .textofmanualth {
        text-align: justify;
        width: 85%;
        margin-left: 7%;
    }

    .conset {
        margin-left: 0px;
        margin-right: 0px;
    }

    .wow {
        visibility: unset !important;
    }

    .setnab{
        margin-top: -87px;
    }
    .video-overlay iframe{
        width: 90% !important;
    }
}



.bg-light {
    background: #ccc;
}

.icon-menu:before {
    content: "☰";
}

.icon-menu{
    z-index: 9999;
}

/* .collapse:not(.show) {
    display: none;
}

.collapse {
    display: none;
}

.collapse.in {
    display: block;
} */


.givebg{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, .6);
    z-index: 1;
}


/* icon */
.messenger {
    display: block;
    position: fixed;
    /* right: 50%; */
    /* left: 40px;
    bottom: 9px; */
    left: 8px;
    bottom: 10px;
    /* width: 50px; */
    width: 60px;
    height: 60px;

    /* margin-left:50px; */
    /* overflow: hidden; */
    z-index: 99;
}

.messenger-btn {
    /* padding: 14px; */
    /* padding: 4px; */
    /* display: block; */
    /* width: 49px; */
    /* height: 49px; */
    border-radius: 60px;
    /* background-color: #9fbce0; */
    position: absolute;

    right: 0;
    /* top: -13px; */
    top: -16px;
    cursor: pointer;
    z-index: 1;
    float: left;
}

/* .messenger-btn img {
    width: 24px;
    height: 24px;
    padding:-5px;
    font-size:95px;
  } */
.messenger-links {
    position: absolute;
    left: -2px;
    /* top: -122px; */
    top: -135px;
    width: 40px;
    transform: scale(0);
    transform-origin: 100% 50%;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 0;
}

.messenger-links.show {
    right: 50px;
    transform: scale(1.2);

}

.messenger-links a {
    width: 40px;
    margin-left: 4px;

}

.messenger-links img {
    max-width: 40px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.messenger-links a:hover img {
    transform: scale(1.1);
    text-decoration: none;
}