* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Public Sans' !important;
    background-color: #fff;
}

a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

li {
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Noto Serif TC' !important;
}


/*header*/

nav {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    padding: 0 5%;
    font-family: 'Public Sans' !important;

}

nav .logo {
    float: left;
}

.navbar-fixed-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .links {
    float: right;
    padding: 0;
    margin: 0;
    width: 70%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav .links li {
    list-style: none;
}

nav .links .li-ls a:hover {
    background-color: #ebebeb8c;
}

.links li:last-child a:before {
    display: none;
}

.las-s {
    margin-left: 20px;
}

nav .links a {
    display: block;
    padding: 13px 15px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    position: relative;
}

nav .links a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(0 166 81);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

nav .links a:hover::before {
    visibility: visible;
    transform: scaleX(1);
    color: rgb(0, 0, 0);
}

#nav-toggle {
    position: absolute;
    top: -100px;
}

nav .icon-burger {
    display: none;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

nav .icon-burger .line {
    width: 29px;
    height: 3px;
    background-color: #0a4b89;
    margin: 7px;
    border-radius: 3px;
    transition: all .5s ease-in-out;
}

@media screen and (max-width: 768px) {
    nav .logo {
        float: none;
        width: auto;
        justify-content: center;
    }



    nav .links {
        float: none;
        position: fixed;
        z-index: 9;
        left: 0;
        right: 0;
        top: 100px;
        bottom: 100%;
        width: auto;
        height: auto;
        flex-direction: column;
        justify-content: space-evenly;
        background-color: rgba(0, 0, 0, .8);
        overflow: hidden;
        transition: all .5s ease-in-out;
    }

    nav .links a {
        font-size: 20px;
    }

    nav :checked~.links {
        bottom: 0;
    }

    nav .icon-burger {
        display: block;
    }

    nav :checked~.icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }

    nav :checked~.icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }

    nav :checked~.icon-burger .line:nth-child(2) {
        opacity: 0;
    }
}

/*header*/

/*slider-swiper*/
.swiper-slide {
    background-position: center;
}

.swiper-slide:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: #0000005c;
}

.swiper-container {
    padding: 0;
    height: 850px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .swiper-container {
        height: 500px;
    }
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: none !important;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-prev {
    background-image: none !important;
}

.swiper-slide {
    width: 100%;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}


/* swiper arrows */
.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev {
    left: 30px;
}

.swiper-button-next {
    right: 30px;
}

.swiper-button-prev span,
.swiper-button-next span {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    position: absolute;
    border: solid 3px white;
    border-left: 0;
    border-bottom: 0;
    transition: all 0.3s ease;
}

.swiper-button-prev span {
    transform: rotate(-135deg);
    left: 50%;
}

.swiper-button-next span {
    transform: rotate(45deg);
    right: 50%;
}

.swiper-button-prev span:after,
.swiper-button-next span:after {
    content: "";
    position: absolute;
    background-color: white;
    width: 0px;
    height: 3px;
    transition: all 0.3s ease;
    transform: rotate(-45deg);
}

.swiper-button-prev:hover span {
    left: 30%;
}

.swiper-button-next:hover span {
    right: 30%;
}

.swiper-button-prev:hover span:after,
.swiper-button-next:hover span:after {
    width: calc(20px - 4px);
}

/* swiper arrows mobile */
@media screen and (max-width: 768px) {
    .swiper-button-prev {
        left: 0px;
    }

    .swiper-button-next {
        right: 0px;
    }

    .swiper-button-prev:hover span {
        left: 50%;
    }

    .swiper-button-next:hover span {
        right: 50%;
    }

    .swiper-button-prev:hover span:after,
    .swiper-button-next:hover span:after {
        display: none;
    }
}

.navbar-fixed-top {
    top: 0;
    background: #fff;
    padding-top: 6px;
    padding-bottom: 6px;
    box-shadow: 0px 0px 60px 0px rgba(32, 38, 91, 0.1);
}

/* swiper pagination */
.swiper-pagination {
    height: 40px;
}

.swiper-container.swiper-container-horizontal {
    margin-top: 5rem;
}

.social-links {
    border-bottom: 1px solid #ffffff6b;
    padding: 12px 0;
}

.navbar-nav a {
    color: #000;
    font-weight: 500;
}

.navbar-nav a:hover {
    color: #000000;
    background-color: transparent;
}

.default-btn {
    color: #fff !important;
}

div#myNavbar {
    width: 54%;
}

.div-fl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin: 0px 41px; */
}


.swiper-pagination-bullet {
    background-color: transparent;
    border: solid 2px white;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.swiper-pagination-bullet:hover {
    background-color: white;
}

.swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    left: 0;
    background-color: transparent;
    border: solid 1px white;
}

/* text content */
.slide-text {
    text-align: left;
    color: white;
    opacity: 1;
    z-index: 2;
    width: 65%;
}

.slide-text h1 {
    font-size: 50px;
    letter-spacing: 0.03em;
    font-weight: 600;
    color: #fff;
    font-family: 'Noto Serif TC' !important;
}


.slide-text p {
    font-size: 21px;
    width: 65%;
    line-height: 36px;
    font-weight: 500;
    margin: 2.8rem 0;
}

/* text mobile */
@media screen and (max-width: 768px) {
    .slide-text {
        width: 60%;
    }

    .slide-text h1 {
        font-size: 20px;
        letter-spacing: 0.02em;
    }

    .slide-text p {
        font-size: 14px;
    }
}


@media screen and (max-width: 768px) {
    .slide-text .btn:hover::after {
        left: 0px;
        top: 0px;
        background-color: rgba(255, 255, 255, 0.1);
    }
}


/*slider-swiper end*/

/*button*/

.default-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
    background-color: #0072bc;
    color: #fff;
    border-radius: 50px;
    padding: 15px 30px;
    position: relative;
    margin-right: 50px;
    transition: 0.6s;
    text-transform: capitalize;
}


.default-btn .btn-left-i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    height: 52px;
    width: 52px;
    line-height: 58px;
    text-align: center;
    border-radius: 50px;
    background-color: #0072bc;
    color: white;
    transition: 0.6s;
    font-size: 22px;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.default-btn .btn-right-i {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    height: 52px;
    width: 52px;
    line-height: 58px;
    text-align: center;
    border-radius: 50px;
    background-color: #0072bc;
    color: #fff;
    transition: 0.6s;
    font-size: 22px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.default-btn:hover {
    background-color: #00a651;
    color: #fff;
    margin-left: 50px;
    margin-right: 0;
}

.default-btn:hover .btn-right-i {
    background-color: #00a651;
    color: #fff;
    opacity: 0;
    right: 0;
}

.default-btn:hover .btn-left-i {
    opacity: 1;
    visibility: visible;
    background-color: #0072bc;
    color: #fff;
    left: -50px;
    opacity: 1;
}


.default-btn span.btn-left-i {
    background-color: #0072bc;
    color: #fff;
}

.default-btn:hover {
    background-color: #00a651;
    color: var(--whiteColor);
}

.default-btn:hover span.btn-right-i {
    background-color: #00a651;
    color: var(--whiteColor);
}

.default-btn:hover span.btn-left-i {
    background-color: #00a651;
    color: #fff;
}

/*header-button*/
.las-s .default-btn {
    background-color: #00a651;
}


.las-s .default-btn .btn-left-i {
    background-color: #00a651;
}

.las-s .default-btn .btn-right-i {
    background-color: #00a651;
}


.las-s .default-btn:hover {
    background-color: #0072bc;
}

.las-s .default-btn:hover .btn-right-i {
    background-color: #0072bc;
}

.las-s .default-btn:hover .btn-left-i {
    background-color: #00a651;
}


.las-s .default-btn span.btn-left-i {
    background-color: #00a651;
    color: #fff;
}

.las-s .default-btn:hover {
    background-color: #0072bc;
    color: #fff;
}

.las-s .default-btn:hover span.btn-right-i {
    background-color: #0072bc;
    color: #fff;
}

.las-s .default-btn:hover span.btn-left-i {
    background-color: #0072bc;
    color: #fff;
}

.nav li:last-child:after {
    display: none;
}



h2.headings {
    background: linear-gradient(to right, black, black, black, black, rgba(0, 0, 0, 0));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: h1anim 3s linear forwards;
    background-size: 505% auto;
    display: inline-block;
    background-position: 226% center;
    background-repeat: no-repeat;
    font-size: 41px;
    font-weight: 800;
    line-height: 58px;
    margin: 0;
    margin: 10px 0 15px;
    text-transform: capitalize;
}

@keyframes h1anim {
    from {
        background-position: 150% center;
    }

    to {
        background-position: 0 center;
    }
}

.paddingIn {
    padding: 100px 10px;
}

.about-us img {
    width: 100%;
    border-radius: 16px;
    height: 678px;
    object-fit: cover;
}

/*aboutus*/
.about-sec-left {
    padding-left: 2rem;
    padding-right: 0rem;
}

p.commons {
    font-size: 18px;
    color: #424242;
    line-height: 30px;
    margin: 10px 0;
    text-align: justify;
}

.counters {
    margin: 1rem 0;
    padding: 31px;
    background: #f0f9ff;
    border-radius: 12px;
}

.counters h3 {
    font-size: 30px;
    font-weight: 600;
    color: #0072bc;
}

.counters p {
    font-size: 17px;
    color: #0072bc;
    margin-bottom: 0;
}

.count {
    position: relative;
}

.count::before {
    position: absolute;
    content: "";
    right: 15px;
    top: 0;
    background-color: #00a651;
    width: 1px;
    height: 100%;
    transform: rotate(20deg);
}

.count.lasts::before {
    background-color: transparent;
}

/*apointment-booking*/
.apointment-bookings {
    background-image: url(../images/apointemtn-boonig.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.apointment-bookings:before {
    position: absolute;
    top: 0;
    content: "";
    width: 100%;
    left: 0;
    height: 100%;
    background-color: #000000a1;
}

.apointment-inners {
    position: relative;
}

.apointment-inners .iam {
    font-size: 42px;
    text-align: left;
    color: #fff;
    font-weight: 600;
    font-family: 'Public Sans' !important;
}

.apointment-inners .iam span {
    color: #00a651;
    border-bottom: 6px solid;
}

.typed-cursor {
    display: none;
}

/*our-clinic*/
ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    margin-top: 18px;
}

ul.tabs li {
    background: none;
    color: #222;
    display: inline-block;
    padding: 7px 19px;
    cursor: pointer;
    background: #ffffff;
    border-radius: 36px;
    font-size: 17px;
    margin: 10px 4px;
}

ul.tabs li.current {
    background: #0072bc;
    color: #ffffff;
    border-radius: 27px;
}

.tab-content {
    display: none;
    padding: 15px;
    margin-top: 7em;
}

.tab-content.current {
    display: inherit;
}

.inner_items {
    background: #ffffff;
    position: relative;
    padding: 40px 21px;
    margin: 0;
    box-shadow: 2px 1px 5px 0px rgba(2, 69, 122, 0.04), 9px 4px 10px 0px rgba(2, 69, 122, 0.03), 19px 10px 13px 0px rgba(2, 69, 122, 0.02), 35px 17px 15px 0px rgba(2, 69, 122, 0.01), 54px 27px 17px 0px rgba(2, 69, 122, 0);
    border-radius: 18px;
}

.our-clinics {
    background: #f4f5f5;
}

.location-icon-tabs {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fefcfb;
    border-radius: 50%;
    width: fit-content;
    padding: 25px;
    border: 5px solid rgba(10, 166, 215, 0.2);
    margin: -104px auto 26px;
    box-shadow: 2px 1px 5px 0px rgba(2, 69, 122, 0.04), 9px 4px 10px 0px rgba(2, 69, 122, 0.03), 19px 10px 13px 0px rgba(2, 69, 122, 0.02), 35px 17px 15px 0px rgba(2, 69, 122, 0.01), 54px 27px 17px 0px rgba(2, 69, 122, 0);
    transition: all 0.5s ease;
}

.location-icon-tabs i.bx.bxs-map {
    font-size: 39px;
    color: #0072bc;
}

.shape-image {
    position: absolute;
    width: 100%;
    height: 64px;
    bottom: 0px;
    right: 0px;
    border-radius: 0 0 18px 18px;
}

.content-locations h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 32px;
}

.content-locations p {
    margin-bottom: 0;
    font-size: 19px;
    padding: 3px 0;
}

.content-locations a {
    font-size: 17px;
    color: #2a2a2a;
    font-weight: 500;
}

.content-locations a:hover {
    color: #2a2a2a;
}

.content-locations .div-phone {
    margin: 3px 0;
}

a.btn-more-view {
    font-size: 16px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #0072bc;
    justify-content: center;
    margin-bottom: 22px;
}

a.btn-more-view:hover {
    color: #0072bc;
}

/*how we serve*/
.how-we-serve {
    background-color: #0072bc;
}

.how-we-serve h2.headings {
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255), #ffffff, #ffffff, rgba(255, 255, 255));
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text !important;
}

.how-we-serve h4 {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    width: 60%;
    margin: auto;
    font-weight: 500;
    font-family: 'Public Sans' !important;
    letter-spacing: .3px;
}

.item-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 250px;
}

.content-Inners {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* .content-Inners p {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    letter-spacing: .3px;
    margin-bottom: 0;
    padding-right: 18px;
} */
.new-list-ns p {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0;
    margin-bottom: 2px;
}

.add-conts {
    color: #ddd;
}

.div_innner_one {
    margin: 30px;
}

.right-items {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}


.item-left {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

.right-items .content-Inners p {
    padding-right: 0;
}

.mta-4r {
    margin-top: 4rem !important;
}

.owl-carousel .owl-item img {
    width: 100%;
    border-radius: 38px;
    height: 350px;
    object-fit: cover;
}

.owl-carousel .item {
    margin: 20px 12px;
}

.content_doctor {
    background: #fff;
    margin: 12px 7px;
    text-align: left;
}

.content_doctor h3 {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Public Sans' !important;
    color: #0072bc;
}

.content_doctor a {
    color: #065283;
    font-weight: 600;
}

.content_doctor p {
    font-size: 18px;
    color: #242424;
    margin-bottom: 0;
}

button.owl-next,
button.owl-prev {
    width: 50px;
    height: 50px;
    background-color: #00a651 !important;
    color: #fff;
    border-radius: 50%;
    font-size: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 6px;
}


button.owl-next span,
button.owl-prev span {
    font-size: 42px;
    color: #fff;
}

.our-dotcps .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.4rem 0;
}

/*booking-steps*/
.step-sone {
    width: 172px;
    height: 172px;
    border: 7px solid #e6e6e6;
    border-radius: 50%;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.inner_steps {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 7px solid #00a651;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.steps-bookings {
    background-color: #f5f5f5;
}

.Two_innersteps {
    font-size: 22px;
    color: #4a4a4a;
}

.steps-Innersbf {
    position: relative;
}


.steps-Innersbf::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 117px;
    left: -70px;
    top: 36%;
    background: url(../images/step.png) no-repeat center bottom;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.steps-InnersCf {
    position: relative;
}


.steps-InnersCf::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 123px;
    left: -75px;
    top: 27%;
    background: url(../images/step.png) no-repeat center bottom;
}

.steps-mains .col-lg-3 {
    flex: 0 0 auto;
    width: 20%;
}

.inner_steps.blue-s {
    border: 7px solid #0072bc;
}

.steps-mains h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    margin: 18px;
    line-height: 30px;
}


/*footer*/
footer {
    background-image: url(../images/footer.jpg);
    padding: 100px 20px 20px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

footer::before {
    background-color: #0072bc75;
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.top-fotter-section {
    background-color: rgb(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

footer h4 {
    font-size: 32px;
    font-weight: 600;
    color: #e9e9e9;
    line-height: 50px;
}


footer .las-s .default-btn span.btn-left-i {
    background-color: #f0fff7 !important;
    color: #0a4986 !important;
}

footer .las-s .default-btn:hover {
    background-color: #f0fff7 !important;
    color: #0a4986 !important;
}

footer .inner-footers h5 {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
}

footer .inner-footers ul {
    padding-left: 0;
}

footer .inner-footers ul li {
    list-style-type: none;
    font-size: 18px;
    color: #ddd;
    font-weight: 500;
    border-bottom: .5px dotted #dddddde8;
    padding: 6px 0;
    line-height: 34px;
}

footer .inner-footers ul li a {
    color: #ffffff;
    display: flex;
    align-items: center;
}

footer .inner-footers ul li:last-child {
    border: none;
}

.inner-footers p {
    font-size: 17px;
    font-weight: 500;
    color: #ddd;
    margin-top: 14px;
}

footer .iner-socials {
    padding-left: 0;
}

footer .iner-socials li {
    display: inline;
}

footer .iner-socials li i {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    color: #ffffff;
}

footer .inner-footers .iner-socials li {
    display: inline-block;
    border-bottom: 0;
    padding: 2px;
}

footer .iner-socials li i:hover {
    background-color: #01a451;
    color: #fff;
    border: 2px solid #01a451;
}

.inner-footers {
    padding-right: 45px;
}

.connection-links i {
    font-size: 21px;
    background: #00a651;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 9px;
}

footer .inner-footers .connection-links li a {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 0;
}

footer .inner-footers .connection-links li {
    font-size: 17px;
    color: #fff;
    border-bottom: none;
    line-height: 27px;
}

footer .inner-footers ul li a:hover {
    color: #00a651;
}

footer .copyright {
    font-size: 15px;
    color: #e4e4e4;
}

footer .copyright a {
    color: #ddd;
}

.pricy-links {
    padding-left: 0;
    text-align: end;
}

.pricy-links li {
    display: inline-block;
    list-style-type: circle !important;
}

.pricy-links li a {
    font-size: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 3px;
}

.pricy-links li i {
    color: #00a651;
    font-size: 22px;
}

.pricy-links li {
    padding-right: 8px;
}

/* 
.inner-footers li i {
    padding-right: 7px;
    font-size: 20px;
    color: #00a651;
} */

i.bx.bx-check-circle {
    font-size: 20px;
    color: #00a651;
    padding-right: 7px;
}

/*testimonial-slider*/
.testimonial {
    position: relative;
    max-width: 100%;
    width: 100%;
    padding: 50px 0 80px;
    overflow: hidden;
}

.testimonial .image {
    height: 130px;
    width: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ddd;
    margin: 14px;
}

.testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 15px;
    height: 100%;
    width: 100%;
}

.slider-inner-content {
    margin: 0;
    width: 94%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 30px;
    border-radius: 10px;
}

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

.strat-rating {
    margin: 12px;
}

.slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.details .jobs {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* swiper button css */
.nav-btn {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transform: translateY(30px);
    background-color: rgba(0, 0, 0, 0.1);
    transition: 0.2s;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.nav-btn::after,
.nav-btn::before {
    font-size: 20px;
    color: #fff;
}

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

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

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

    .nav-btn {
        display: none;
    }
}

.testimonials .swiper-slide:after {
    display: none;
}


.testimonials i.bx.bxs-star {
    color: #ff9e0f;
    font-size: 19px;
    margin-bottom: 0;
}

.testimonials .swiper-button-prev.nav-btn,
.testimonials .swiper-button-next.nav-btn {
    display: none;
}

.testimonials .swiper-container-horizontal>.swiper-pagination-bullets,
.testimonials .swiper-pagination-custom,
.testimonials .swiper-pagination-fraction {
    bottom: -14px;
    cursor: pointer;
    z-index: 9;
}


.testimonials .swiper-pagination-bullet:hover {
    background-color: #0a4986;
}


/*locations-page*/

section.breadcrumb {
    background-image: url(../images/banner-breadcrumb.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 10px;
    position: relative;
}

section.breadcrumb::before {
    position: absolute;
    content: "";
    background-color: #000000d4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.inner-breadcrb {
    padding: 30px;
    text-align: center;
    border: 8px solid #fff;
    position: relative;
}

section.breadcrumb {
    margin-top: 5rem;
    margin-bottom: 0;
}

.inner-breadcrb h1 {
    font-family: 'Lobster' !important;
    font-size: 52px;
    font-weight: 500;
    color: #fff;
}

.inner-breadcrb ul {
    padding-left: 0;
}

.inner-breadcrb ul li {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    font-family: 'Noto Serif TC' !important;
    font-weight: 600;
    padding-left: 4px;
    padding-right: 4px;
}

.inner-breadcrb ul li a {
    color: #fff;
}

.inner-breadcrb ul {
    padding-left: 0;
    background: #00a651;
    display: inline-block;
    border-radius: 24px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 9px;
    padding: 4px 14px;
}

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

.content-clinics {
    padding: 0 3rem;
    background: #f7f7f7a6;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.content-clinics p {
    font-size: 18px;
    margin-bottom: 0;
    padding: 7px 0;
    line-height: 27px;
}

.content-clinics h4 {
    font-size: 17px;
    font-weight: 600;
}

/*photogallery*/
.mains {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
}

.our-dotcps .item img {
    border: 1px dashed #ddd;
}

.mains .card {
    color: #252a32;
    border-radius: 2px;
    background: #fff;
    position: relative;
}

.mains .card-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 90%;
    background: #fff;
}

.mains .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 600px) {
    .mains {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
}

.mains h4 {
    font-size: 19px;
    font-weight: 600;
    padding: 10px;
}

.our-dotcps .item img {
    width: 100%;
    border-radius: 15px;
}

.our-dotcps .item {
    margin: 30px 2px;
}

.form-contatc-sec {
    background: #fff;
    padding: 50px;
    margin: 3rem 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.form-contatc-sec input[type="text"],
.form-contatc-sec textarea {
    width: 100%;
    border: 1px solid #00a651;
    padding: 8px 12px;
    border-radius: 7px;
    color: #242424;
    font-family: 'Public Sans' !important;
    font-size: 16px;
}

.form-contatc-sec input[type="text"]:focus-visible,
.form-contatc-sec input[type="text"]:focus,
.form-contatc-sec input[type="text"]:hover,
.form-contatc-sec textarea:focus-visible,
.form-contatc-sec textarea:focus,
.form-contatc-sec textarea:hover {
    border: 1px solid #00a651;
    outline: none;
}

.form-contatc-sec label {
    font-size: 18px;
    text-align: left;
    width: 100%;
    margin-bottom: 4px;
    margin-top: 24px;
}

.form-contatc-sec .option-item {
    text-align: left;
}

.privacy-sec {
    background-image: url(../images/dotted-bg.jpg);
    background-size: 12%;
}

.inner-policy-sec {
    padding: 45px 30px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    text-align: left;
}

.inner-policy-sec h4 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 12px;
    font-family: 'Public Sans' !important;
}

.inner-policy-sec p {
    font-size: 16px;
    line-height: 26px;
    margin: 12px 0;
}

.services {
    position: relative;
    background-image: url(../images/footer.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.services::before {
    position: absolute;
    top: 0;
    content: "";
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0072bc7d;
}

.services h2.headings {
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255), #ffffff, #ffffff, rgba(255, 255, 255));
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text !important;
}

.services p {
    font-size: 17px;
    line-height: 25px;
    color: #ffffffd1;
    margin: 10px 0 20px;
}

.services .purpose-1 {
    padding: 30px;
    text-align: center;
}

.services .purpose-1 img {
    width: 97px;
    margin: auto;
}

.services .purpose-1 h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 15px 0;
    letter-spacing: .3px;
}

.benefits-sec1 img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 14px;
    border-bottom: 14px solid #00a651;
    border-right: 10px solid #00a651;
    padding-right: 9px;
    padding-bottom: 9px;
}

/* .benefits-inner .img-benfits img {
    width: 76px;
    border: 2px solid #d6d6d6;
    border-radius: 50%;
    height: 76px;
    object-fit: cover;
} */

.inner-benefitsss {
    padding: 0 3rem;
}

.benefits-inner {
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
}

.benefits-inner h4 {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Public Sans' !important;
}

.content {
    padding-left: 22px;
}

.benefits-inner .content p {
    font-size: 16px;
    line-height: 25px;
    text-align: justify;
}


@media (max-width:1450px) {
    .div-details-sec-2 p {
        letter-spacing: .1px;
    }

    .content-sec-box {
        margin: 1rem 0 !important;
    }

    .div-details-sec-2 p {
        letter-spacing: 0 !important;
    }

    .div-details-sec-2 {
        padding: 2rem !important;
    }

    .div-details-sec-2 p br {
        display: none;
    }

    .qualificatiosn h3 {
        font-size: 26px !important;
    }

    .clinic-follow-details h3 {
        font-size: 20px !important;
    }

    .doctr-details h1 {
        font-size: 27px !important;
    }

    .qualificatiosn h4 {
        font-size: 21px !important;
    }

    .inner-policy-sec p {
        font-size: 15px;
        line-height: 29px;
        text-align: justify;
    }

    .inner-policy-sec h4 {
        font-size: 21px;
        margin-bottom: 11px;
        margin-top: 14px;
    }

    .form-contatc-sec {
        padding: 35px;
    }

    nav .links {
        width: 80% !important;
    }

    .inner-breadcrb h1 {
        font-size: 42px !important;
    }

    .services .purpose-1 img {
        width: 84px !important;
        margin: auto;
    }
}

@media (max-width:1600px) {
    nav {
        padding: 0 2% !important;
    }

    .swiper-container {
        height: 750px !important;
    }

    .slide-text {
        width: 75% !important;
    }

    .slide-text h1 {
        font-size: 45px !important;
    }

    .about-sec-left {
        padding-left: 2rem !important;
        padding-right: 0rem !important;
    }

    h2.headings {
        font-size: 35px !important;
    }

    .about-us img {
        width: 100% !important;
        /* border-radius: 16px !important;
        height: 650px !important;
        object-fit: cover; */
    }

    p.commons {
        font-size: 17px !important;
        line-height: 28px !important;
        margin: 8px 0 !important;
        text-align: justify;
    }

    .counters {
        margin: 1rem 0 !important;
        padding: 30px 20px !important;
    }

    .counters p {
        font-size: 16px !important;
        color: #0072bc !important;
        margin-bottom: 0 !important;
    }

    .apointment-inners .iam {
        font-size: 46px !important;
    }

    .apointment-bookings .col-md-2 {
        width: 24.666667% !important;
    }

    .content-Inners p {
        font-size: 19px !important;
        padding-right: 0px !important;
    }

    .right-items .content-Inners p {
        padding-left: 0px !important;
        padding-right: 0 !important;
    }

    .content_doctor h3 {
        font-size: 20px !important;
    }

    .content_doctor {
        margin: 9px 0px !important;
    }

    .owl-carousel .owl-item img {
        height: 270px !important;
        object-fit: cover !important;
    }

    .content_doctor p {
        font-size: 17px !important;
    }

    .steps-Innersbf::before {
        width: 64px !important;
        left: -42px !important;
    }

    .steps-InnersCf::before {
        width: 58px !important;
        left: -41px !important;
    }

    .steps-mains h4 {
        font-size: 18px !important;
        line-height: 26px !important;
    }

    .inner_steps {
        width: 105px !important;
        height: 105px !important;
        padding: 12px !important;

    }

    .step-sone {
        width: 161px !important;
        height: 161px !important;
        padding: 9px !important;
    }

    .slide p {
        padding: 0 50px !important;
    }

    .paddingIn {
        padding: 70px 10px !important;
    }

    .div_innner_one {
        margin: 15px !important;
    }

    .counters h3 {
        font-size: 25px !important;
    }

    .content-locations h4 {
        font-size: 23px !important;
    }

    .apointment-bookings {
        padding: 120px 0 !important;
    }

    .how-we-serve h4 {
        font-size: 18px !important;
        width: 76% !important;
    }
}


@media(max-width:1368px) {
    .about-us .col-md-5 {
        width: 50%;
    }

    .services p {
        font-size: 16px !important;
    }

    .inner-benefitsss {
        padding: 0 1rem !important;
    }

    .content {
        padding-left: 17px !important;
    }

    .about-sec-left {
        padding-left: 1rem !important;
        padding-right: 0rem !important;
    }

    .counters h3 {
        font-size: 23px !important;
    }

    .apointment-inners .iam {
        font-size: 41px !important;
    }

    .slide-text h1 {
        font-size: 42px !important;
    }

    .slide-text p {
        font-size: 19px !important;
        width: 76% !important;
        line-height: 30px !important;
        margin: 1.3rem 0 2.1rem !important;
    }

    h2.headings {
        font-size: 32px !important;
        line-height: 45px !important;
    }

    p.commons {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .slide p {
        padding: 0 10px !important;
    }

    .inner-footers {
        padding-right: 12px !important;
    }

    footer h4 {
        font-size: 30px !important;
    }
}

@media (max-width:1280px) {
    .qualificatiosn {
        padding: 2rem !important;
    }

    .inner-clinic-featires .sec-1 {
        padding: 0px 19px !important;
    }

    .doctr-details {
        padding-left: 0rem !important;
    }

    .swiper-container {
        height: 700px !important;
    }

    nav .links a {
        font-size: 17px !important;
    }

    .las-s .default-btn {
        font-size: 17px !important;

    }

    .counters p {
        font-size: 15px !important;
    }

    button.owl-next span,
    button.owl-prev span {
        font-size: 31px !important;
    }

    button.owl-next,
    button.owl-prev {
        width: 45px !important;
        height: 45px !important;
    }

    .Two_innersteps {
        font-size: 19px !important;
    }
}


@media(max-width:1100px) {

    .br-nonez br {
        display: none;
    }

    .clinic-follow-details h3 {
        font-size: 17px !important;
    }

    .doctr-details img {
        width: auto !important;
    }

    .qualificatiosn {
        padding: 21px !important;
    }

    .doctr-details img {
        width: 100%;
    }

    .qualificatiosn ul li {
        font-size: 16px !important;
    }

    .contatc-us .col-md-10 {
        width: 100%;
    }

    .doctr-details h5 {
        font-size: 16px;
        line-height: 28px;
    }

    .doctr-details p {
        font-size: 15px !important;
    }

    .inner-clinic-featires i {
        font-size: 45px !important;
    }

    .inner-clinic-featires h4 {
        font-size: 21px !important;
    }

    .inner-clinic-featires {
        padding: 15px 8px !important;
        min-height: 353px !important;
        margin-bottom: 40px !important;
    }

    .clinic-follow-details {
        padding: 9px !important;
    }

    .doctr-details h1 {
        font-size: 24px !important;
    }

    .qualificatiosn h4 {
        font-size: 20px !important;
    }

    .form-contatc-sec {
        padding: 30px;
    }

    .qualificatiosn h3 {
        font-size: 24px !important;
    }

    .mains h4 {
        font-size: 17px !important;
    }

    .content-clinics h3 {
        font-size: 22px !important;
    }

    .content-clinics p {
        font-size: 18px !important;
    }

    .content-clinics h4 {
        font-size: 16px !important;
    }

    .owl-carousel .owl-item img {
        height: auto !important;
        object-fit: cover !important;
    }

    .our-dotcps .col-md-3 {
        width: 33.33%;
    }

    .logo img {
        width: 209px !important;
    }

    nav .links a {
        padding: 13px 9px !important;
    }

    nav .links {
        width: 75% !important;
    }

    .las-s .default-btn {
        font-size: 15px !important;
        padding: 10px 12px !important;
    }

    nav {
        padding: 14px 2% !important;
    }

    .las-s .default-btn .btn-left-i {
        height: 44px !important;
        width: 44px !important;
        line-height: 55px !important;
        left: -43px !important;
        font-size: 20px !important;
    }

    .las-s .default-btn .btn-right-i {
        height: 44px;
        height: 44px !important;
        width: 44px !important;
        line-height: 55px !important;
        right: -43px !important;
        font-size: 20px !important;
    }

    .slide-text h1 {
        font-size: 35px !important;
    }

    .apointment-bookings {
        padding: 100px 0 !important;
    }

    .apointment-inners .iam {
        font-size: 35px !important;
    }

    .apointment-bookings .col-md-2 {
        width: 31.666667% !important;
    }

    .width-100 {
        width: 100% !important;
    }

    .content-Inners p {
        font-size: 17px !important;
        padding-right: 9px !important;
        text-align: right !important;
    }

    .right-items .content-Inners p {
        padding-left: 8px !important;
        padding-right: 0 !important;
        text-align: left;
    }

    .div_innner_one {
        margin: 10px !important;
    }

    .div_innner_one img {
        width: 60px !important;
    }

    .content-locations h4 {
        font-size: 22px !important;
    }

    .how-we-serve h4 {
        font-size: 17px !important;
        width: 79% !important;
    }

    .our-dotcps .owl-dots {
        display: none !important;
    }

    .steps-mains h4 {
        font-size: 16px !important;
        line-height: 24px !important;
        margin: 8px !important;

    }

    .steps-mains .col-lg-3 {
        flex: 0 0 auto !important;
        width: 32% !important;
    }

    .inner_steps {
        width: 115px !important;
        height: 115px !important;
        padding: 0 !important;
    }

    .step-sone {
        width: 171px !important;
        height: 171px !important;
        padding: 0 !important;
    }

    .steps-Innersbf {
        margin-bottom: 31px !important;
    }

    .steps-Innersbf::before {
        display: none;
    }

    .steps-InnersCf::before {
        display: none;
    }

    footer .inner-footers img {
        width: 178px !important;

    }
}

@media (max-width:998px) {
    .logo img {
        width: 189px !important;
    }

    nav .links a {
        padding: 13px 7px !important;
        font-size: 16px !important;
    }

    .slide-text {
        width: 85% !important;
    }

    .about-sec-left {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .counters {
        margin: 1rem 0 !important;
        padding: 21px 18px !important;
    }

    .counters .col-lg-4.col-md-6.col-sm-12 {
        padding: 0 !important;
    }

    .count {
        padding: 7px !important;
    }

    .apointment-bookings {
        padding: 76px 0 !important;

    }

    .apointment-inners .iam {
        font-size: 32px !important;
    }

    .content-locations h4 {
        font-size: 20px !important;
    }

    .content-locations a {
        font-size: 16px !important;
    }

    .location-icon-tabs i.bx.bxs-map {
        font-size: 30px !important;
    }


    .location-icon-tabs {
        padding: 23px !important;
        margin: -88px auto 26px !important;
    }

    .paddingIn {
        padding: 51px 10px !important;
    }

    .inner-footers p {
        font-size: 16px !important;
    }

    footer .inner-footers ul li {
        font-size: 16px !important;
        line-height: 30px !important;
    }

    i.bx.bx-check-circle {
        font-size: 17px !important;
    }

    footer .iner-socials li i {
        font-size: 18px !important;
        width: 45px !important;
        height: 45px !important;
    }

    footer .inner-footers .iner-socials li {
        padding: 0 4px !important;
    }

    footer .inner-footers .connection-links li {
        font-size: 16px !important;
    }

    h2.headings {
        font-size: 30px !important;
        line-height: 45px !important;
    }

    footer h4 {
        font-size: 24px !important;
    }

    .default-btn {
        font-size: 16px !important;
    }
}



@media (max-width:768px) {
    .div-details-sec-2 {
        padding: 24px !important;
    }

    .inner-breadcrb {
        padding: 20px;
        border: 4px solid #fff;
    }

    .width-100Sec {
        width: 100% !important;
    }

    .paddingIns {
        padding: 50px 0 !important;
    }

    .qualificatiosn {
        margin-bottom: 30px !important;
    }

    .clinic-follow-details {
        margin-bottom: 15px !important;
    }

    .mains {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-clinics h4 {
        font-size: 15px !important;
        line-height: 25px;
    }

    .content-clinics p {
        font-size: 15px !important;
        line-height: 24px;
    }

    .content-clinics h3 {
        font-size: 21px !important;
    }

    .content-clinics {
        padding: 0 0rem;
    }

    .our-dotcps .col-md-3 {
        width: 50%;
    }

    .inner-breadcrb h1 {
        font-size: 37px !important;
        letter-spacing: .9px;
    }

    .services .purpose-1 img {
        width: 67px !important;
        margin: auto !important;
    }

    .services .purpose-1 h4 {
        font-size: 17px !important;
        letter-spacing: .9px !important;
    }

    .inner-benefitsss {
        padding: 0 0rem !important;
    }

    .services .purpose-1 {
        padding: 10px !important;
    }

    .services p {
        font-size: 15px !important;
    }

    nav .links {
        width: 100% !important;
    }

    nav .links {
        border-top: 2px solid #00a651 !important;
        background: #fff !important;
        top: 82px !important;
        padding-left: 0 !important;
        justify-content: flex-start;
    }

    nav .links {
        align-items: flex-start;
    }

    nav .links li {
        width: 100% !important;
        border-bottom: 1px solid #00a651 !important;
    }

    nav .links li.las-s {
        width: auto !important;
        border-bottom: 0 !important;
        margin-top: 15px !important;

    }

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

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .swiper-container {
        height: 650px !important;
    }

    .slide-text h1 {
        font-size: 30px !important;
    }

    .slide-text p {
        font-size: 18px !important;
        width: 80% !important;
        line-height: 30px !important;
        margin: 1.3rem 0 2.1rem !important;
    }

    .about-us .col-md-5 {
        width: 100% !important;
    }

    .about-us .col-lg-4 {
        width: 33.33% !important;
    }

    .about-sec-left {
        margin-top: 2rem !important;
    }

    h2.headings {
        font-size: 27px !important;
        line-height: 38px !important;
    }

    .apointment-bookings .col-md-7 {
        width: 100% !important;
    }

    .apointment-bookings .col-md-2 {
        width: 100% !important;
        margin-top: 20px !important;
    }

    .width-100 br {
        display: none;
    }

    .tab-content {
        margin-top: 5em !important;
    }

    .inner_items {
        margin-bottom: 74px !important;
    }

    .how-we-serve h4 {
        font-size: 16px !important;
        width: 100% !important;
    }

    .mta-4r {
        margin-top: 2rem !important;
    }

    .order-31 {
        order: 3;
        margin: auto !important;
    }

    .order-21 {
        order: 2;
    }

    .steps-Innersbf {
        margin-bottom: 41px !important;
        margin-top: 2rem !important;
    }

    .steps-InnersCf {
        margin-bottom: 41px !important;
        margin-top: 2rem;
    }

    .steps-Inners {
        margin-bottom: 41px !important;
        margin-top: 2rem !important;
    }

    .slide p {
        padding: 0 14px !important;
    }

    .details .name {
        font-size: 18px !important;
    }

    .details .job {
        font-size: 15px !important;
    }

    footer .col-md-4 {
        width: 50% !important;
    }

    .benefits-sec1 {
        margin-top: 30px;
    }

    .inner-benefitsss {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .br-two {
        border-left: 0px dashed #001c2e !important;
        border-right: 0px dashed #001c2e !important;
        border-top: 1px dashed #001c2e;
        padding-top: 28px !important;
        border-bottom: 1px dashed #001c2e;
    }

    .top-fotter-section {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        flex-direction: column !important;
    }
}


@media (max-width:578px) {
    .div-details-sec-1 img {
        border-radius: 0 !important;
    }

    .doctr-details img {
        width: 100% !important;
    }

    .bg-new-clinics {
        border-bottom-right-radius: 0px !important;
        border-top-right-radius: 0px !important;
    }

    section.breadcrumb {
        padding: 40px 10px !important;
    }

    .div-details-sec-1 img {
        height: auto !important;
    }

    .div-details-sec-2 h2 {
        font-size: 24px !important;
    }

    .bg-new-clinics::before {
        border-bottom-right-radius: 0px !important;
        border-top-right-radius: 0px !important;
    }

    .doctr-details p {
        text-align: justify !important;
    }

    .clinic-img {
        margin-bottom: 15px;
        margin-top: 2rem;
    }

    .new-tabbing-sec-details .tabs>ul li {
        width: 34% !important;
    }

    .new-tabbing-sec-details .tabs>ul li a {
        font-size: 17px !important;
    }

    .inner-clinic-featires h4 {
        font-size: 20px !important;
    }

    .inner-clinic-featires i {
        font-size: 40px !important;
    }

    .clinic-follow-details h3 {
        font-size: 18px !important;
    }

    .inner-clinic-featires .sec-1 {
        padding: 0px 14px !important;
    }

    .form-contatc-sec {
        padding: 18px;
    }

    .content-clinics {
        padding: 15px 5px 30px !important;
    }

    .tab-content {
        padding: 0px;
    }

    .order-1-n {
        order: 1;
    }

    .clinic-img img {
        height: 300px;
    }

    .order-2-n {
        order: 2;
    }

    .inner-breadcrb {
        padding: 25px;
        border: 4px solid #fff;
    }

    .content-clinics {
        padding: 0 2rem !important;
        height: 306px !important;
    }

    .content-clinics a {
        font-size: 19px !important;
    }

    .content-clinics p {
        font-size: 15px !important;
        line-height: 24px;
    }

    .content-Inners p {
        font-size: 17px !important;
        padding-right: 0px !important;
        text-align: left !important;
        padding-left: 5px !important;
    }

    .content-Inners {
        flex-direction: row-reverse;
    }

    .div_innner_one {
        margin: 10px 0 !important;
    }

    .slide-text {
        width: 94% !important;
    }

    .slide-text h1 {
        font-size: 26px !important;
    }

    .slide-text p {
        font-size: 16px !important;
        width: 90% !important;
        line-height: 27px !important;
        margin: 1.1rem 0 1.8rem !important;
    }

    .default-btn {
        font-size: 15px !important;
    }

    .default-btn .btn-right-i {
        font-size: 19px !important;
    }

    .default-btn .btn-left-i {
        font-size: 19px !important;
    }

    .swiper-pagination-bullet {
        height: 11px !important;
        width: 11px !important;
    }

    .about-us img {
        height: auto !important;
    }

    h2.headings {
        font-size: 26px !important;
        line-height: 36px !important;
    }

    .count {
        padding: 1px !important;
    }

    .apointment-inners .iam {
        font-size: 29px !important;
    }

    .apointment-bookings {
        padding: 54px 0 !important;
    }

    ul.tabs li {
        padding: 7px 14px !important;
        font-size: 14px !important;
        margin: 10px 2px !important;
    }

    .item-left {
        align-items: flex-start;
    }

    .right-items .content-Inners p {
        order: initial !important;
    }

    .div_innner_one img {
        order: 1;
    }

    .right-items {
        align-items: baseline;
    }

    .item-center img {
        margin-top: 2rem !important;
    }

    .right-items .content-Inners p {
        text-align: right;
        padding-left: 5px !important;
        padding-right: 0px !important;
    }

    .how-we-serve .col-lg-4.col-md-6.col-sm-12 {
        width: 50% !important;
    }

    .content_doctor h3 {
        font-size: 18px !important;
    }

    .content_doctor p {
        font-size: 17px !important;
    }

    .steps-mains .col-lg-3 {
        width: 50% !important;
    }

    .why-genome-homeopathys {
        padding: 40px 0px !important;
    }

    .why-genome-homeopathys h2.headings br {
        display: none !important;
    }

    .why-homeopathy-sec2 .box-chose-homeopathy img {
        margin-bottom: 20px !important;
    }

    .box-chose-homeopathy p {
        text-align: justify !important;
        font-size: 15px !important;
    }

    .purpose-1 h4 {
        font-size: 17px !important;
    }

    .img-check {
        width: 26px !important;
        height: 26px !important;
        margin-right: 7px !important;
    }

    .purpose-1 img {
        width: 12px !important;
    }

    .benefits-inner {
        padding: 11px !important;
    }
}

@media(max-width:450px) {
    .qualificatiosn h3 {
        font-size: 22px !important;
    }

    .div-details-sec-2 {
        padding: 25px 15px !important;
    }

    .div-details-sec-2 h2 {
        font-size: 19px !important;
    }

    .paddingIns {
        padding: 24px 0 0 !important;
    }

    .div-details-sec-2 i {
        font-size: 19px !important;
        width: 37px !important;
        height: 37px !important;
    }

    .div-details-sec-2 p {
        font-size: 16px !important;
    }

    .div-person ul li {
        font-size: 17px !important;
    }

    .privacy-sec {
        background-size: 44%;
    }

    .form-contatc-sec input[type="text"],
    .form-contatc-sec textarea {
        font-size: 14px;
    }

    .inner-policy-sec {
        padding: 29px 18px;
    }

    .qualificatiosn span {
        line-height: 25px !important;
        font-size: 15px !important;
    }

    .qualificatiosn {
        padding: 16px !important;
    }

    .qualificatiosn h4 {
        font-size: 18px !important;
    }

    .doctr-details h1 {
        font-size: 22px !important;
        padding: 18px 0 5px !important;
    }

    .clinic-follow-details h3 {
        font-size: 17px !important;
    }

    .new-tabbing-sec-details .tabs>ul li a {
        font-size: 16px !important;
    }

    .sec-1.borders {
        border-bottom: 1px dashed #dddd !important;
        padding-bottom: 38px !important;
    }

    .new-tabbing-sec-details .tabs>ul li {
        width: auto !important;
    }

    .inner-clinic-featires {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .inner-clinic-featires .sec-1 {
        padding: 0px 0px !important;
    }

    .new-tabbing-sec-details .tabs>ul li a {
        padding: 10px 15px !important;
    }

    .inner-clinic-featires {
        padding: 15px 15px !important;
    }

    .inner-clinic-featires .sec-1 {
        margin-bottom: 35px !important;
    }

    .inner-clinic-featires .sec-1.borders {
        padding-bottom: 40px !important;
    }

    .inner-clinic-featires .sec-1 ul {
        min-height: auto !important;
    }

    .borders {
        border-right: 1px dashed #ffffff !important;
    }

    .doctr-details h5 {
        font-size: 14px !important;
        line-height: 25px !important;
    }

    a.book-now-btns {
        font-size: 15px !important;
    }

    .inner-policy-sec p {
        font-size: 14px;
        line-height: 27px;
        text-align: justify;
    }

    .inner-policy-sec h4 {
        font-size: 18px;
    }

    .form-contatc-sec {
        margin: 1rem 0;
    }

    .form-contatc-sec label {
        font-size: 15px;
        margin-bottom: 4px;
        margin-top: 20px;
    }

    .mains {
        grid-template-columns: repeat(1, 1fr);
    }

    .mains h4 {
        font-size: 16px !important;
    }

    .our-dotcps .col-md-3 {
        width: 100%;
    }

    .our-dotcps .item {
        margin: 17px 2px !important;
    }

    .services p {
        font-size: 15px !important;
        text-align: justify;
    }

    .services .row .col-md-4 {
        width: 50% !important;
    }

    .swiper-container {
        height: 500px !important;
    }

    .slide-text h1 {
        font-size: 24px !important;
    }

    .slide-text p {
        font-size: 15px !important;
        width: 99% !important;
        line-height: 25px !important;
        margin: .7rem 0 1rem !important;
    }

    .default-btn {
        padding: 14px 22px !important;
    }

    .default-btn .btn-right-i {
        right: -46px !important;
        height: 48px !important;
        width: 48px !important;
    }

    .default-btn .btn-left-i {
        left: -46px !important;
        height: 48px !important;
        width: 48px !important;
    }

    h2.headings {
        font-size: 24px !important;
        line-height: 35px !important;
    }

    .about-us .col-lg-4 {
        width: 100% !important;
        padding: 14px 2px !important;
        border-bottom: 1px solid #13ad5e;
    }



    .apointment-inners .iam {
        font-size: 31px !important;
    }

    .navbar-fixed-top {
        z-index: 99;
    }

    .iam br {
        display: none;
    }

    .count::before {
        display: none !important;
    }

    ul.tabs {
        margin-top: 6px !important;
        display: flex;
        overflow-x: auto;
    }

    .tabs br {
        display: none;
    }

    .how-we-serve h4 {
        font-size: 15px !important;
        width: 100% !important;
        line-height: 23px !important;

    }

    .how-we-serve .col-lg-4.col-md-6.col-sm-12 {
        width: 100% !important;
    }

    .Two_innersteps {
        font-size: 17px !important;
    }

    .inner_steps {
        width: 97px !important;
        height: 97px !important;
    }

    .step-sone {
        width: 140px !important;
        height: 140px !important;
        padding: 0;
    }

    .steps-mains h4 {
        font-size: 15px !important;
        line-height: 23px !important;
        margin: 8px 0 !important;
    }

    .steps-Inners {
        margin-bottom: 18px !important;
        margin-top: 1rem !important;
    }

    .slide p {
        padding: 0 1px !important;
    }

    .top-fotter-section {
        padding: 15px !important;
        border-radius: 20px !important;
        flex-direction: column;
    }

    .las-s .default-btn {
        font-size: 15px !important;
        padding: 8px 15px !important;
        margin-top: 9px !important;
    }

    footer h4 {
        font-size: 20px !important;
        margin-top: 15px !important;
        margin-bottom: 11px !important;
    }

    .top-fotter-section {
        padding: 15px 15px 35px !important;
    }

    .las-s .default-btn .btn-right-i {
        height: 41px !important;
        width: 41px !important;
        line-height: 55px !important;
        right: -39px !important;
        font-size: 19px !important;
    }

    .las-s .default-btn .btn-left-i {
        height: 41px !important;
        width: 41px !important;
        line-height: 55px !important;
        left: -39px !important;
        font-size: 19px !important;
    }

    footer .col-md-4 {
        width: 100% !important;
    }

    .inner-breadcrb ul li {
        padding-left: 2px;
        padding-right: 2px;
    }

    nav .links {
        padding-right: 8px !important;
        padding-left: 8px !important;
    }

    .inner-breadcrb {
        padding: 19px 10px !important;
    }

    .inner-breadcrb h1 {
        font-size: 31px !important;
    }

    .inner-breadcrb ul li {
        font-size: 15px !important;
    }

    .services .purpose-1 h4 {
        font-size: 15px !important;
        letter-spacing: .9px !important;
    }

    .benefits-inner {
        margin: 10px 0;
    }

    .content {
        padding-left: 12px !important;
    }

    .benefits-inner .content p {
        font-size: 15px !important;
        line-height: 23px !important;
        text-align: justify;
    }

    .benefits-sec1 img {
        width: 100%;
        height: 350px !important;
    }

    footer {
        padding: 50px 7px 14px;
    }

    .pricy-links {
        text-align: left;
    }

    .pricy-links li a {
        font-size: 14px;
        padding-left: 0;
    }
}



/*clinic -details*/
.div-details-cliics {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    justify-content: center;
}

.div-details-sec-1 img {
    width: 100%;
    border-bottom-left-radius: 24px;
    border-top-left-radius: 24px;
    height: 450px;
    object-fit: cover;
}


.div-details-sec-2 {
    text-align: left;
    padding: 3.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.div-details-sec-2 h2 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    line-height: 31px;
}

.content-clinics a:hover {
    color: #06a753;
}

.div-details-sec-2 p {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: .8px;
    display: flex;
    align-items: self-start;
    justify-content: flex-start;
    line-height: 24px;
}

.div-details-sec-2 {
    position: relative;
}

.bg-new-clinics {
    background-image: url(../images/dotted-bg.jpg);
    position: relative;
    border-bottom-right-radius: 24px;
    border-top-right-radius: 24px;
    background-position: center;
    background-size: 36%;
}

.bg-new-clinics::before {
    content: "";
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    position: absolute;
    background: #0071bce6;
    border-bottom-right-radius: 24px;
    border-top-right-radius: 24px;
}

.div-person ul {
    padding-left: 0;
}

.div-person ul li {
    font-size: 19px;
    color: #fff;
    line-height: 29px;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.div-details-sec-2 i {
    font-size: 23px;
    font-weight: 500;
    color: #fff;
    background: #00a651;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    margin-right: 8px;
    justify-content: center;
}

.qualificatiosn {
    padding: 2.4rem;
    background: #f3faff;
    border: 2px solid #00a651;
}

.qualificatiosn h3 {
    font-size: 25px;
    font-weight: 600;
    color: #0072bc;
    margin-bottom: 10px;
    line-height: 29px;
}

.qualificatiosn p {
    font-size: 19px;
}

.qualificatiosn h4 {
    font-size: 21px;
    font-weight: 600;
    padding-bottom: 9px;
    margin-bottom: 0;
    color: #000;
}

.qualificatiosn ul {
    padding-left: 0;
}

.qualificatiosn ul li {
    font-size: 17px;
    text-align: left;
    padding: 4px 0;
    display: flex;
    align-items: center;
}

.qualificatiosn ul li a {
    color: #2a2a2a;
}

.qualificatiosn ul li i {
    padding-right: 5px;
    font-size: 20px;
    color: #00a651;
}

.qualificatiosn span {
    line-height: 28px;
}

.doctr-details h1 {
    font-size: 30px;
    font-weight: 600;
    padding: 22px 0 16px;
    margin-bottom: 0;
}

.doctr-details h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
}

.doctr-details p {
    font-size: 16px;
    line-height: 25px;
    margin: 10px 0;
}

.doctr-details {
    padding-left: 1rem;
}




/*tabbing-detail-page*/
.inner-clinic-featires {
    box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
    padding: 21px;
    background-color: #fff;
    min-height: 320px;
    margin-bottom: 31px;
}

.borders {
    border-right: 1px dashed #ddd;
}

.clinic-follow-details img {
    width: 100%;
    border: 1px solid #ddd;
    padding: 5px;
    height: 280px;
    object-fit: cover;
    object-position: center;
}

.clinic-follow-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #004571;
    text-align: center;
    margin: 12px 0 8px;
    letter-spacing: .4px;
    line-height: 27px;
}

.clinic-follow-details {
    box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
    padding: 15px;
    background-color: #fff;
    margin-bottom: 35px;
}

.new-tabbing-sec-details .tabs>ul {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #ccc;
    font-size: 0;
}

.new-tabbing-sec-details .tabs>ul .indicator {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 20%;
    background: #1e88e5;
    transform: translateZ(0) translateX(0);
    transition: all 0.3s ease;
}

.new-tabbing-sec-details .tabs>ul li {
    display: inline-block;
    font-size: 14px;
    width: 20%;
}

.new-tabbing-sec-details .tabs>ul li a {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 10px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease 0.4s;
    font-size: 19px;
    color: #2a2a2a;
}

.new-tabbing-sec-details .tabs>ul li a:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #0072bc;
    transform: translateZ(0) translateY(100%);
    transition: all 0.3s ease 0.3s;
    z-index: -1;
}

.new-tabbing-sec-details .tabs>ul li a[aria-selected] {
    color: white;
}

.new-tabbing-sec-details .tabs>ul li a[aria-selected]:before {
    transform: translateZ(0) translateY(0);
}

.new-tabbing-sec-details .tabs>section[aria-hidden="true"] {
    display: none;
}

.paddingIns {
    padding: 45px 0;
}

.inner-clinic-featires i {
    font-size: 44px;
    text-align: left;
    padding: 0;
    color: #0072bc;
}

.inner-clinic-featires h4 {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: .3px;
    color: #090909;
    margin-bottom: 10px;
    margin-top: 3px;
}

.inner-clinic-featires .sec-1 ul {
    padding: 0;
    min-height: 134px;
}

.inner-clinic-featires .sec-1 ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 16px;
}

.inner-clinic-featires .sec-1 {
    padding: 0px 25px;
}

.inner-clinic-featires {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.inner-clinic-featires .sec-1 ul li:last-of-type {
    border: none;
}

.inner-clinic-featires p {
    margin-bottom: 0;
    padding-bottom: 1px;
}

a.book-now-btns:hover {
    color: #fff;
    background: #0172bb;
}

a.book-now-btns {
    background: #00a651;
    padding: 5px 14px;
    border-radius: 28px;
    color: #fff;
    font-weight: 400;
}

.new-list-ns {
    text-align: right;
    margin-right: 14px;
}

.new-list-ns.new-list-ns2 {
    text-align: left;
    margin-left: 14px;
}

/* about us */



/*new-sec
*/
.pos-rel {
    position: relative;
}

.iconbox-icon-wrap {
    margin-right: 20px;
}

/* 
.iconbox-icon-wrap:before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 245%;
    position: absolute;
    top: 0;
    left: 30px;
    z-index: 1;
    background-color: #c8c8c8;
    overflow: hidden;
} */

.iconbox-icon-container {
    background-color: #FFFFFF;
    font-size: 22px;
    width: 60px;
    height: 60px;
    font-weight: 600;
    border-radius: 50%;
    color: #0a4986;
    box-shadow: 0px 10px 24px 0px rgb(0 0 0 / 9%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9;
}

.content-sec-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 2rem 0;
}

.content-sec-box p {
    font-size: 16px;
    color: #424242;
    line-height: 28px;
    margin: 0px 0;
}

.iconbox-icon-wrap:last-of-type:before {
    height: 0;
}

.img-sec-home-news img {
    height: 750px;
    object-fit: cover;
    border: 5px solid #0072bc;
    padding: 11px;
    border-radius: 49%;
    width: 600px;
    margin-left: auto;
}

.img-sec-home-news {
    text-align: end;
}

.why-homeopathy-sec p.commons {
    font-size: 15px;
    color: #424242;
    line-height: 26px;
    margin: 8px 0;
    text-align: justify;
}

.new-points ul {
    padding: 0;
}

.new-points i {
    color: #00a651;
    font-size: 17px;
    font-weight: 600;
    padding-right: 4px;
    padding-top: 7px;
}

.new-points li {
    list-style-type: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 30px;
    font-size: 16px;
    text-align: justify;
}

.about-sec-left p.commons {
    font-size: 16px;
    color: #424242;
    line-height: 28px;
    margin: 10px 0;
    text-align: justify;
}

.why-homeopathy-sec2 {
    background: #0072bc;
}

.why-homeopathy-sec2 img {
    width: 100%;
    border-radius: 31px;
}

.why-homeopathy-sec2 h2.headings {
    background: linear-gradient(to right, #ffffff, #ffffff, #ffffff, #ffffff, rgba(0, 0, 0, 0));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: h1anim 3s linear forwards;
    background-size: 505% auto;
    display: inline-block;
    background-position: 226% center;
    background-repeat: no-repeat;
    font-size: 41px;
    font-weight: 800;
    line-height: 58px;
    margin: 0;
    margin: 10px 0 15px;
    text-transform: capitalize;
}

.why-homeopathy-sec2 p.commons {
    font-size: 16px;
    color: #ffffff;
    line-height: 28px;
    text-align: justify;
}


/*appointment-page*/
.appointment-dr .appointment-container {
    max-width: 85%;
    margin: 50px auto;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    padding: 0;
    flex-wrap: wrap;
}

.new-apoint {
    padding: 17px;
    border: 2px solid #c0c0c0;
    border-radius: 7px;
}

.appointment-dr .image-section {
    flex: 1 1 40%;
    /* background: #e0f2fe; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 16px;
}

.appointment-dr .form-section {
    flex: 1 1 60%;
    padding: 1.5rem;
}

.appointment-dr .image-section img {
    height: 500px;
    object-fit: cover;
}

.appointment-dr .form-section h2 {
    margin-bottom: 1.5rem;
}

.appointment-dr .btn-primary {
    background-color: #2563eb;
    border: none;
}

.appointment-dr .btn-primary:hover {
    background-color: #1e40af;
}

.appointment-dr .form-check-inline {
    margin-right: 1rem;
}

.fee-item span {
    font-size: 19px;
}

.new-apont .left,
.new-apont .right {
    padding: 30px;
    width: 50%;
}

.new-apont h2 {
    margin-bottom: 20px;
    color: #333;
}

.new-apont label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.new-apont input,
.new-apont textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.new-apont button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.new-apont button:hover {
    background-color: #0056b3;
}

.new-apont .right {
    background-color: #0072bc;
}

.new-apont .fee-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
}

.new-apont .pay-button {
    background-color: #28a745;
    margin-top: 30px;
    width: 100%;
    font-size: 16px;
}

.new-apont .pay-button:hover {
    background-color: #218838;
}

.new-checkout .checkout-inners {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 40px 20px;
    gap: 30px;
}

.new-checkout .left,
.new-checkout .right {
    flex: 1 1 450px;
}

.new-checkout .section-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #005a9c;
    border-bottom: 2px solid #005a9c;
    padding-bottom: 5px;
}

.new-checkout .form-group {
    margin-bottom: 20px;
}

.new-checkout .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.new-checkout .form-group input,
.new-checkout .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.new-checkout .summary-box,
.new-checkout .cart-box,
.new-checkout .payment-methods {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.new-checkout .summary-row {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.new-checkout .summary-row.total {
    font-weight: 700;
    font-size: 18px;
    color: #00a651;
}

.new-checkout .cart-item {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.new-checkout .cart-item img {
    width: 80px;
    height: auto;
    border-radius: 6px;
}

.new-checkout .cart-details {
    flex: 1;
    font-size: 14px;
}

.new-checkout .cart-details strong {
    font-size: 16px;
}

.new-checkout .edit-cart {
    text-align: right;
    margin-top: 10px;
}

.new-checkout .edit-cart a {
    text-decoration: none;
    color: #00a651;
    font-size: 14px;
}

.new-checkout .payment-methods label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.new-checkout .submit-button {
    width: 100%;
    padding: 14px;
    background: #00a651;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.new-checkout .submit-button:hover {
    background: #009245;
}

@media (max-width: 900px) {
    .new-checkout .checkout-inners {
        flex-direction: column;
        padding: 20px 15px;
    }

    .new-checkout .left,
    .new-checkout .right {
        flex: 1 1 100%;
    }
}

.new-checkout {
    padding: 80px 0;
}

.new-checkout table {
    width: 100%;
}

.new-checkout table tr {
    border: 1px dashed #a4a4a4;
}

.new-checkout th {
    padding: 17px;
}

.new-checkout td {
    padding: 17px;
}

.div-flex img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    padding: 4px;
    border: 1px dashed #6e6e6e;
    border-radius: 4px;
}

.div-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cart-sec .right {
    flex: 1 1 100%;
}

.min-widths {
    width: 50%;
    margin-left: auto;
}

.new-checkout i.fa.fa-trash-o {
    font-size: 30px;
    text-align: center;
    color: #be0000;
}

.new-checkout td {
    text-align: left;
}

.cart-sec th {
    padding: 17px;
    border-right: 1px dashed #615f5f;
}

.cart-sec td {
    border-right: 1px dashed #615f5f;
}

.min-widths td {
    border-right: 0px dashed #615f5f;
}

.min-widths th {
    border-right: 0px dashed #615f5f;
}

.apointmnet-sucess {
    background-image: url(../images/doctor-bg.jpg);
}

.vo {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.vo-container {
    text-align: center;
    padding: 1rem;
}

.vo-card {
    background-color: #ffffff;
    border-top: 8px solid #00a651;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
}

.vo-img {
    max-width: 50%;
    margin-bottom: 0;
}

.vo-title {
    color: #00a651;
    font-size: 27px;
    margin-bottom: 0.5rem;
}

.vo-text {
    color: #3f3f3f;
    font-size: 18px;
    margin-bottom: 1.5rem;
}

.vo-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #005a9c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.vo-btn:hover {
    color: #fff;
    background-color: #003f70;
}

.vo-title {
    margin: 1.2rem 0;
}








/*new today*/

.inner-homeo-traeta {
    background-image: url(../images/homeo-treatment.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 100px 20px;
    border-radius: 16px;
    margin: 0px 70px 80px;
}

.div-inners-90 {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.div-inners-90 img {
    width: 70px;
    filter: invert(1);
}

.las-s .option-item a.default-btn {
    text-decoration: none !important;
}

.las-s .option-item a.default-btn:hover {
    text-decoration: none !important;
}

.nav-item a.nav-link {
    font-size: 19px;
    font-weight: 500;
    color: #025c97;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #025c97;
    border-radius: 79px;
}

.nav-item a.nav-link i {
    font-size: 22px;
    font-weight: 500;
    color: #025c97;
    padding-right: 4px;
}

.nav-item a.nav-link:hover {
    background-color: #025c97;
    color: #fff;
}

.nav-item a.nav-link:hover i {
    color: #fff;
}

.las-s .option-item {
    margin-right: 12px;
}


@media only screen and (max-width:1650px) and (min-width:1430px) {
    nav .links {
        width: 75% !important;
    }

    nav .links a {
        padding: 13px 10px !important;
        font-size: 17px !important;
    }

    .nav-item a.nav-link {
        font-size: 16px !important;
    }

    .las-s .option-item {
        margin-right: 12px !important;
        ;
    }

    .nav-item a.nav-link i {
        font-size: 22px !important;
    }

    .why-homeopathy-sec img {
        width: 100%;
    }

    .content-locations h4 {
        font-size: 18px !important;
        margin: 0 9px;
        line-height: 25px !important;
        margin-bottom: 11px;
    }

    .steps-Innersbf p {
        font-size: 15px !important;
    }
}

@media (max-width:1370px) {
    .nav-item a.nav-link {
        font-size: 16px !important;
    }

    nav .links a {
        font-size: 16px !important;
        padding: 13px 9px !important;
    }

    .las-s {
        margin-left: 10px !important;
    }

    .why-homeopathy-sec .col-md-5 {
        flex: 0 0 auto;
        width: 49% !important;
    }

    .why-homeopathy-sec img {
        width: 100%;
    }

    .content-locations h4 {
        font-size: 18px !important;
        line-height: 29px !important;
    }

    .content-Inners p {
        font-size: 19px !important;
        padding-right: 0 !important;
    }

    .right-items .content-Inners p {
        padding-left: 0px !important;
        padding-right: 0 !important;
    }

    .steps-bookings .col-md-10 {
        flex: 0 0 auto;
        width: 92% !important;
    }
}

@media (max-width:768px) {
    .nav-item a.nav-link {
        font-size: 15px !important;
        width: 21% !important;
        margin-top: 13px !important;
        margin-left: 10px !important;
        padding: 5px 10px !important;
    }

    nav .links li:last-of-type {
        border-bottom: 0 !important;
    }

    .why-homeopathy-sec .col-md-5 {
        flex: 0 0 auto;
        width: 100% !important;
    }

    .inner-homeo-traeta {
        padding: 78px 20px !important;
        margin: 0px 35px 64px !important;
    }

    .inner-homeo-traeta .col-md-6 {
        width: 100% !important;
    }

    .inner-homeo-traeta:before {
        position: absolute;
        top: 0;
        content: "";
        width: 100%;
        left: 0;
        height: 100%;
        background-color: #0072bbbd;
    }

    .why-homeopathy-sec2 .col-md-5 {
        width: 100% !important;
    }

    .item-left {
        display: flex;
        align-items: flex-end !important;
        justify-content: flex-start !important;
        flex-direction: column;
    }

    .right-items {
        display: flex;
        align-items: flex-end !important;
        justify-content: flex-start !important;
        flex-direction: column;
    }

    .item-center img {
        width: auto !important;
        margin-top: 20px !important;
    }

    .top-fotter-section h4 br {
        display: none !important;
    }
}

@media (max-width:540px) {
    .inner-homeo-traeta {
        padding: 40px 0px !important;
        margin: 0px 16px 64px !important;
    }

    .item-center img {
        width: 100% !important;
        margin-top: 20px !important;
    }

    .about-sec-left {
        margin-top: 0 !important;
    }

    p.commons {
        font-size: 15px !important;
        line-height: 25px !important;
    }

    .inner-homeo-traeta:before {
        border-radius: 15px;
    }

    .inner-homeo-traeta .col-md-6 {
        position: relative;
    }

    .content-locations h4 {
        font-size: 17px !important;
        line-height: 27px !important;
    }

    .why-homeopathy-sec2 h2.headings {
        margin: 0 !important;
    }

    .why-homeopathy-sec2 img {
        margin-bottom: 30px !important;
    }

    .how-we-serve h4 {
        text-align: justify !important;
    }

    .new-list-ns {
        padding-left: 8px !important;
        text-align: left !important;
        margin-right: 0 !important;
    }

    .content-Inners p {
        padding-right: 0px !important;
        text-align: left !important;
        padding-left: 0px !important;
    }

    .div-inners-90 {
        order: 2;
    }

    .steps-mains .col-lg-3 {
        width: 100% !important;
    }

    .nav-item a.nav-link {
        font-size: 15px !important;
        width: 50% !important;
        margin-top: 13px !important;
        margin-left: 10px !important;
        padding: 9px 10px !important;
    }

    .slide p {
        font-size: 14px !important;
    }

    .new-list-ns.new-list-ns2 {
        margin-left: 0 !important;
    }
}

@media (max-width: 450px) {
    .steps-mains h4 {
        font-size: 19px !important;
        line-height: 23px !important;
        margin: 10px 0 !important;
    }

    .slide p {
        font-size: 14px !important;
    }

    footer h4 {
        font-size: 20px !important;
        margin-top: 15px !important;
        margin-bottom: 6px !important;
        line-height: 28px;
    }

    footer .inner-footers h5 {
        font-size: 21px;
        font-weight: 600;
        color: #fff;
        margin-bottom: -12px;
        margin-top: 14px;
    }

    .new-list-ns.new-list-ns2 {
        margin-left: 0 !important;
    }

    .content_doctor {
        margin: 9px 0px !important;
    }

    .book-now {
        margin-top: 19px;
    }
}

.las-s .option-item a.default-btn:hover:before {
    display: none;
}

.why-genome-homeopathys {
    background-image: url(../images/1.webp);
    background-size: cover;
    padding: 100px 10px;
    position: relative;
}

.why-genome-homeopathys::before {
    position: absolute;
    content: "";
    background-color: #023c61ed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.box-chose-homeopathy:hover {
    transform: translateY(-20px);
}

.box-chose-homeopathy {
    border-radius: 20px;
    padding: 20px;
    background-color: #ffffff1a;
    backdrop-filter: blur(96px);
    margin-bottom: 31px;
    min-height: 260px;
    transition: 0.3s;
}

.box-chose-homeopathy img {
    width: 42px;
    margin-bottom: 25px;
    filter: drop-shadow(2px 4px 6px black);
}

.box-chose-homeopathy p {
    color: #fff;
    font-weight: 300;
    font-size: 16px;
}

.checkup-sec h3 {
    font-size: 25px;
    margin-bottom: 13px;
    border-bottom: 2px solid #c5c5c5;
    padding-bottom: 6px;
    display: inline-block;
    font-weight: 600;
    color: #001c2e;
    margin-top: 7px;
}

.purpose-1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 12px;
}

.img-check {
    background: #023c61;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.purpose-1 img {
    width: 16px;
}

.purpose-1 h4 {
    font-size: 20px;
    margin-bottom: 0;
    font-family: 'Heebo' !important;
    font-weight: 500;
}

.inner-benefitsss {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    padding: 35px;
}

.benefits-inner {
    display: flex;
    align-items: center;
    margin: 15px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 25px;
}

.img-benfits {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #001c2e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-inner .img-benfits img {
    width: 64px;
    /* border-radius: 50%; */
    /* object-fit: cover; */
    margin: auto;
}

.content {
    padding-left: 0;
    margin-top: 17px;
}

.benefits-inner h4 {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Public Sans' !important;
    color: #001c2e;
}

.benefits-inner .content p {
    font-size: 16px;
    line-height: 27px;
    text-align: center;
}

.br-two {
    border-left: 1px dashed #001c2e;
    border-right: 1px dashed #001c2e;
}

.our-dotcps .content_doctor a:hover {
    color: #0e5283;
}

.content-clinics a {
    font-size: 22px;
    color: #0172bb;
    font-weight: 600;
}

.our-dotcps .content_doctor a.book-now-btns:hover {
    color: #fff;
}

.doctr-details img {
    border: 1px dashed #ddd;
    padding: 4px;
    border-radius: 12px;
}

h5#succcess {
    background: #00860014;
    color: green;
    font-weight: 500;
    line-height: 55px;
    margin-bottom: 0;
    font-size: 20px;
    font-family: 'Heebo' !important;
    border-radius: 4px;
}

@media(max-width:768px) {
    h5#succcess {
        background: none;
        color: green;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0.1px;
        border: 0;
    }
}

.div-shifts {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: -5px;
}

.inner-clinic-featires h4 {
    margin-left: 5px;
}



.div-details-cliics .card {
    border: 0;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 24px 3px 4px;
    font-size: 25px;
    width: 16px;
    height: 16px;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #0172bb;
}


.inner-clinic-featires p {
    margin-bottom: 0;
    padding-bottom: 1px;
    margin-top: 14px;
    text-align: left;
    margin-left: 11px;
}



















/*today css*/

 
 
@media (max-width:1440px) {
    .form-section h3 {
        font-size: 21px;
        line-height: 36px;
    }
 
    .appointment-dr .appointment-container {
        max-width: 100%;
    }
 
    .right h2 {
        font-size: 25px;
        margin-bottom: 11px;
 
    }
}
 
@media(max-width:768px) {
    .appointment-dr .appointment-container {
        flex-direction: column;
    }
 
    .appointment-dr .form-section {
        padding: 1.5rem 22px;
    }
 
    .form-section h3 {
        font-size: 19px;
        line-height: 36px;
    }
 
    .appointment-dr .image-section img {
        height: 300px;
    }
 
    .min-widths {
        width: 100%;
        margin-left: 0;
    }
 
    .new-checkout .checkout-inners {
        overflow: auto;
    }
 
    .new-checkout .checkout-inners {
        padding: 0px 15px 20px;
    }
 
    .new-checkout .summary-box,
    .new-checkout .cart-box,
    
    /*
    .new-checkout .payment-methods {
        width: 100vw;
        overflow-x: scroll;
    }*/
}
 
@media (max-width:450px) {
    .appointment-dr .form-section {
        padding: .5rem 14px;
    }
 
    .form-section h3 {
        font-size: 18px;
        line-height: 30px;
    }
 
    .appointment-dr .appointment-container {
        max-width: 100%;
        margin: 9px auto;
    }
 
    .new-checkout .submit-button {
        padding: 9px;
        font-weight: 500;
    }
 
    .right h2 {
        font-size: 20px;
        margin-bottom: 11px;
    }
 
    .new-checkout th {
        padding: 14px 7px;
    }
 
    /*.new-checkout td {
        border: 1px solid #dcd6d6;
    }*/
    
    .sr-tbody {
        overflow-x: auto;
        width: 100%;
    }
 
    .fee-item span {
        font-size: 17px;
    }
 
    .new-checkout td {
        padding: 10px;
    }
 
    .new-apoint {
        padding: 9px;
        border: 1px solid #c0c0c0;
        border-radius: 7px;
    }
 
    .new-checkout .submit-button {
        padding: 9px;
        font-weight: 600;
    }
}
 
.div-flex a {
    color: #141414;
}
 
.new-checkout .submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
}
 
