* {
    padding: 0;
    margin: 0;
}

:root {
    --greyish-brown: #565656;
    --mid-green: #589b46;
    --vibrant-green-8: rgba(34, 216, 9, 0.08);
    --green: #3cb71b;
    --off-white: #f9fcf8;
    --yellowish-tan: #f6ef89;
    --text: #333;
}

@font-face {
    font-family: BebasNeue;
    src: url(../fonts/BebasNeue-Regular.ttf);
}

@font-face {
    font-family: BarlowCondensed;
    src: url(../fonts/BarlowCondensed-Regular.ttf);
}

body {
    font-family: BarlowCondensed, sans-serif;
}

.C-green {
    color: var(--mid-green) !important;
}

.F-head {
    font-family: BebasNeue, sans-serif;
}

.mt-n100 {
    margin-top: -100px !important;
}

@media (max-width: 786px) {
    .mt-n100 {
        margin-top: 0 !important;
    }
}

.divider {
    width: 90%;
    height: 1px;
    background-color: #eee;
    margin: 60px auto;
}

.navbar-brand img {
    width: 180px;
}

.navbar {
    padding-bottom: 0;
}

.navbar .nav-link {
    -webkit-transition: 500ms;
    transition: 500ms;
    font-size: 26px;
    color: var(--text);
    padding: 23px 10px;
    border-bottom: 6px solid transparent;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--mid-green) !important;
    border-bottom: 6px solid var(--mid-green);
}

.navbar-nav {
    margin-top: 35px;
}

.zn-1 {
    z-index: -1;
}

.abso-0-0 {
    left: -315px;
    top: -320px;
}

/* hero start */
.hero {
    background-image: url(../img/heal-banner.webp);
    background-color: rgba(0, 0, 0, 0.35);
    background-blend-mode: multiply;
    background-position: center center;
    background-size: cover;
    overflow-x: clip;
}

.hero .right-arch {
    top: -40px;
    right: 0px;
}

@media (max-width: 768px) {
    .hero .right-arch {
        top: 0;
    }
}

@-webkit-keyframes banner-icon-rotate {
    0% {
        -webkit-transform: rotateZ(100deg);
        transform: rotateZ(100deg);
        right: 0px;
        width: 210px;
    }

    50% {
        -webkit-transform: rotateZ(-50deg);
        transform: rotateZ(-50deg);
        right: -70px;
        width: 215px;
        top: 80px;
    }

    100% {
        -webkit-transform: rotateZ(100deg);
        transform: rotateZ(100deg);
        right: 0px;
        width: 210px;
    }
}

@keyframes banner-icon-rotate {
    0% {
        -webkit-transform: rotateZ(100deg);
        transform: rotateZ(100deg);
        right: 0px;
        width: 210px;
    }

    50% {
        -webkit-transform: rotateZ(-50deg);
        transform: rotateZ(-50deg);
        right: -70px;
        width: 215px;
        top: 80px;
    }

    100% {
        -webkit-transform: rotateZ(100deg);
        transform: rotateZ(100deg);
        right: 0px;
        width: 210px;
    }
}

.hero .banner-green-ball {
    top: 70px;
    right: 0;
    width: 210px;
    -webkit-animation: banner-icon-rotate 6s infinite ease-in-out;
    animation: banner-icon-rotate 6s infinite ease-in-out;
}

.hero .banner {
    min-height: 400px;
    padding-top: 185px;
    z-index: 99999;
}

.hero .title {
    font-family: BebasNeue;
    font-size: 56px;
    line-height: 1.29;
    z-index: 999;
}

.hero .breadcrumb-item {
    font-family: BebasNeue;
    font-size: 27px;
    line-height: 0.89;
    color: #bbb;
    z-index: 999;
}

.hero .breadcrumb-item a {
    text-decoration: none;
    color: #fff;
}

/* hero end */
.tabs {
    padding: 70px 0;
}

.tabs>img {
    z-index: -1;
}

.tabs .pattern {
    right: 5%;
    top: 5%;
}

.tabs .half-yellow-circle {
    top: 10%;
}

.tabs .nav-link {
    color: var(--mid-green);
    border: 2px solid var(--mid-green);
    border-radius: 5px;
    background-color: transparent;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    width: 180px;
    padding: 6px 0;
    margin-bottom: 20px;
}

.tabs .nav-link:hover {
    color: #fff;
    background-color: var(--mid-green);
}

.tabs .nav-link.active {
    color: #fff;
    background-color: var(--mid-green);
}

.tabs .tab-pane .row-book {
    margin: 40px 0 100px;
}

.tabs .tab-pane .title {
    margin-bottom: 40px;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: BebasNeue;
    font-size: 38px;
    line-height: 1;
    color: var(--mid-green);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
    display: block;
}

.tabs .tab-pane .title::after {
    content: "";
    width: 90px;
    height: 3px;
    background-color: var(--mid-green);
    display: block;
    margin: 16px 0 0;
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.tabs .tab-pane .title:hover::after {
    width: 100%;
}

.tabs .tab-pane .desc {
    padding-left: 0;
    font-size: 19px;
    line-height: 1.47;
    color: var(--greyish-brown);
    text-align: justify;
    max-width: 90%;
}

.tabs .tab-pane .T-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 6px 6%;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    background-color: transparent;
    color: var(--mid-green);
    border: 2px solid var(--mid-green);
}

.tabs .tab-pane .T-btn:hover {
    border: 2px solid transparent;
    background-color: var(--mid-green);
    color: #fff;
}

.tabs .cover img {
    width: 100%;
}

.tabs .cover .event-title {
    font-family: BebasNeue;
    font-size: 32px;
    line-height: 1.34;
    width: 70%;
    color: #fff;
    text-align: left;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
}

@media (max-width: 786px) {
    .tabs .cover .event-title {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        color: #2d2d2d;
    }
}

.tabs .metrix-box {
    margin: 0 30px 30px 0;
    padding: 17px 47px 9px 48px;
    border-radius: 8px;
    -webkit-box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.06);
    border: solid 2px var(--mid-green);
    background-color: #fff;
    min-height: 182px;
    width: 100%;
}

.tabs .metrix-box p,
.tabs .metrix-box h4 {
    font-family: BebasNeue;
    font-size: 21px;
    line-height: 1.81;
    color: #2d2d2d;
}

.tabs .metrix-box p {
    font-size: 14px;
    line-height: normal;
}

.tabs .metrix-box .number::after {
    content: "";
    width: 90px;
    height: 2px;
    background-color: var(--mid-green);
    display: block;
    margin: auto;
}

.tabs .metrix-box .register {
    font-size: 14px;
}

.tabs .metrix-box .register::after {
    display: none;
}

.tabs .metrix-box a {
    color: var(--mid-green);
    font-weight: 500;
}

.tabs .awards-btn {
    font-size: 17px;
    width: 95%;
    font-weight: 500;
    margin: 0 30px 30px 0;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 6px 6%;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    background-color: var(--mid-green);
    color: #fff;
    border: 2px solid var(--mid-green);
}

.tabs .awards-btn:hover {
    border: 2px solid var(--mid-green);
    background-color: transparent;
    color: var(--mid-green);
}

.tabs .Blogs .nav {
    border-left: 1px solid #979797;
    padding-left: 20px;
    margin-bottom: 30px;
}

.tabs .Blogs .nav-link {
    color: #7d7d7d;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #eee;
    margin: 0 0 0 8px;
    font-family: BebasNeue;
    font-size: 18px;
    line-height: 1.56;
    text-align: left;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    position: relative;
}

.tabs .Blogs .nav-link:hover {
    color: var(--mid-green);
    text-decoration: underline;
}

.tabs .Blogs .nav-link:hover::before {
    background-color: var(--mid-green);
}

.tabs .Blogs .nav-link::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--mid-green);
    top: 12px;
    left: -35px;
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.tabs .Blogs .nav-link.active {
    color: var(--mid-green);
    text-decoration: underline;
}

.tabs .Blogs .nav-link.active::before {
    background-color: var(--mid-green);
}

.tabs .Blogs .book-btn {
    color: var(--mid-green);
    border: 2px solid var(--mid-green);
    border-radius: 4px;
    bottom: -100px;
    width: 95%;
    left: 5%;
    text-decoration: none;
    font-family: BebasNeue;
    font-size: 18px;
    letter-spacing: 1.06px;
    padding: 8px 0;
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.tabs .Blogs .book-btn:hover {
    background-color: var(--mid-green);
    color: #fff;
}

.tabs .Blogs .col-md-4 {
    margin-bottom: 20px;
}

.tabs .Blogs a {
    text-decoration: none;
}

.tabs .Blogs .post {
    border-radius: 5px;
    border: 1px solid #eee;
}

.tabs .Blogs .post img {
    width: 100%;
}

.tabs .Blogs .post .content {
    padding: 18px 18px 0;
}

.tabs .Blogs .post .post-title {
    font-family: BebasNeue;
    font-size: 18px;
    line-height: 1.39;
    color: #2d2d2d;
}

.tabs .Blogs .post .post-excerpt {
    font-size: 12px;
    line-height: 1.67;
    color: var(--greyish-brown);
}

.tabs .Blogs .post .post-hover-layer {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    padding: 0 20px;
    background-image: url(../img/blog/post1-layer.webp);
    background-size: cover;
    background-color: #589b46;
    background-blend-mode: multiply;
    opacity: 0;
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.tabs .Blogs .post .post-hover-layer .post-title {
    font-family: BebasNeue;
    font-size: 18px;
    line-height: 1.39;
}

.tabs .Blogs .post .post-hover-layer .post-meta {
    font-size: 14px;
    line-height: 2.14;
}

.tabs .Blogs .post:hover .post-hover-layer {
    opacity: 1;
}

.tabs .testimonial {
    border: 1px solid var(--mid-green);
    border-radius: 5px;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    -webkit-box-shadow: 0px 5px 10px 8px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 5px 10px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 50px;
}

.tabs .testimonial:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.tabs .testimonial img {
    width: 60px;
    margin-top: -30px;
    border: 1px solid var(--mid-green);
    border-radius: 50%;
}

.tabs .testimonial .T-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 6px 6%;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    background-color: transparent;
    color: var(--mid-green);
    border: 2px solid var(--mid-green);
}

.tabs .testimonial .T-btn:hover {
    border: 2px solid transparent;
    background-color: var(--mid-green);
    color: #fff;
}

.locations {
    margin: 40px 0 60px;
    min-height: 640px;
}

.locations .pattern {
    bottom: 25%;
    right: 22%;
}

.locations .infinity {
    bottom: -5%;
    right: 0;
}

.locations .title {
    font-family: BebasNeue;
    font-size: 51px;
    line-height: 0.47;
    color: var(--mid-green);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.locations .title::after {
    content: "";
    width: 90px;
    height: 3px;
    background-color: var(--mid-green);
    display: block;
    margin: 16px 0 40px;
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.locations .title:hover::after {
    width: 100%;
}

.locations .cards {
    height: 100%;
}

.locations .cards a {
    display: block;
    text-decoration: none;
}

.locations .address {
    padding: 5px 25px 0;
    width: 50%;
    border: 2px solid var(--mid-green);
    border-radius: 10px;
    background: #fff;
    z-index: 9;
    color: var(--mid-green);
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.locations .address:hover {
    background-color: var(--mid-green);
    color: #fff;
}

.locations .address h4 {
    font-family: BebasNeue;
    font-size: 22px;
    line-height: 1.23;
    margin: 0;
    text-decoration: none;
}

.locations .address h4::after {
    content: "";
    width: 80%;
    height: 1px;
    background-color: var(--mid-green);
    display: block;
    margin: 3px auto 0;
}

.locations .address h5 {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    text-decoration: none;
}

footer {
    background-color: var(--mid-green);
    padding-top: 100px;
}

footer .info {
    font-size: 18px;
    line-height: 1.5;
    margin: 30px 0 40px;
}

footer .time {
    font-size: 14px;
}

footer h5 {
    font-family: BebasNeue;
    font-size: 24px;
    line-height: 1.33;
    margin-bottom: 30px;
    text-transform: uppercase;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer li {
    font-size: 14px;
    line-height: 1.29;
    margin-bottom: 7px;
}

footer li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
}

footer li a::after {
    content: "";
    width: 0px;
    height: 1px;
    background-color: #fff;
    display: block;
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

footer li a:hover {
    color: #fff;
}

footer li a:hover::after {
    width: 30px;
}

footer .social-h {
    font-size: 24px;
    line-height: 1.17;
    margin-bottom: 15px;
}

footer .social img {
    padding-right: 40px;
    height: 23px;
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

footer .social img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

footer .Subscribe {
    font-size: 16px;
    line-height: 1.75;
}

footer .form-control {
    color: #fff;
    background-color: transparent;
    border-color: #fff;
}

footer .form-control:focus {
    border-color: #fff;
    -webkit-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
    background-color: transparent;
    color: #fff;
}

footer ::-webkit-input-placeholder {
    color: #fff !important;
    opacity: .8;
}

footer :-ms-input-placeholder {
    color: #fff !important;
    opacity: .8;
}

footer ::-ms-input-placeholder {
    color: #fff !important;
    opacity: .8;
}

footer ::placeholder {
    color: #fff !important;
    opacity: .8;
}

footer :-ms-input-placeholder {
    color: #fff !important;
}

footer ::-ms-input-placeholder {
    color: #fff !important;
}

footer .btn {
    background-color: #fff;
    color: #000;
    font-family: BebasNeue;
}

footer .copyright {
    background-color: #2d671d;
    padding: 10px 0 2px;
    color: rgba(255, 255, 255, 0.6);
}

/*# sourceMappingURL=health.css.map */

#pills-video img {
    border-radius: 8% !important;
}

#pills-publication img {
    border-radius: 8% !important;
}

#pills-conferences img {
    border-radius: 3% !important;
}

#pills-publication .publication-title {
    margin-bottom: 0px !important;
}

#pills-publication .publication-title a {
    font-weight: 10px !important;
    text-decoration: none;
    color: #000;
}

#pills-publication .publication-title a:hover {
    color: var(--mid-green);
    text-decoration: none;
}

#pills-publication .publication-sub-title {
    margin-bottom: 0px !important;
    color: rgba(108, 122, 137, 1) !important;
}

#pills-publication .publication-year {
    color: rgba(108, 122, 137, 1) !important;
}

#pills-publication td {
    padding: 15px !important;
    padding-left: 15px;
}

#pills-publication thead {
    background-color: var(--mid-green);
    color: #fff;
}

#pills-publication th {
    padding: 15px !important;
}

#pills-publication th span {
    padding: 15px !important;
}

#pills-publication tr {
    padding-left: 10px;
}

#pills-publication .row {
    --bs-gutter-x: 0px !important;
    display: table-row;
}

#pills-tabContent img {
    border-radius: 30px !important;
}

.page-item.active .page-link {
    background-color: var(--mid-green);
    border-color: var(--mid-green);
    color: #fff !important;
}

.page-link {
    color: var(--mid-green) !important;
}


#pills-form .row-book {
    margin: 0px !important;
}

#pills-form .row-book .desc {
    padding-bottom: 0px !important;
}

#Contact {
    padding-top: 1rem !important;
}

#pills-testimonials img {
    border-radius: 3% !important;
}

#pills-tab li {
    margin-right: 1vw;
}

/* medical scheduler start */

body {
    margin-top: 20px;
}

.bg-light-gray {
    background-color: #f7f7f7;
}

.table-bordered thead td,
.table-bordered thead th {
    border-bottom-width: 2px;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #dee2e6;
}


.bg-sky.box-shadow {
    box-shadow: 0px 5px 0px 0px #00a2a7
}

.bg-orange.box-shadow {
    box-shadow: 0px 5px 0px 0px #af4305
}

.bg-green.box-shadow {
    box-shadow: 0px 5px 0px 0px #4ca520
}

.bg-yellow.box-shadow {
    box-shadow: 0px 5px 0px 0px #dcbf02
}

.bg-pink.box-shadow {
    box-shadow: 0px 5px 0px 0px #e82d8b
}

.bg-purple.box-shadow {
    box-shadow: 0px 5px 0px 0px #8343e8
}

.bg-lightred.box-shadow {
    box-shadow: 0px 5px 0px 0px #d84213
}


.bg-sky {
    background-color: #02c2c7
}

.bg-orange {
    background-color: #e95601
}

.bg-green {
    background-color: #5bbd2a
}

.bg-yellow {
    background-color: #f0d001
}

.bg-pink {
    background-color: #ff48a4
}

.bg-purple {
    background-color: #9d60ff
}

.bg-lightred {
    background-color: #ff5722
}

.padding-15px-lr {
    padding-left: 15px;
    padding-right: 15px;
}

.padding-5px-tb {
    padding-top: 5px;
    padding-bottom: 5px;
}

.margin-10px-bottom {
    margin-bottom: 10px;
}

.border-radius-5 {
    border-radius: 5px;
}

.margin-10px-top {
    margin-top: 10px;
}

.font-size14 {
    font-size: 14px;
}

.text-light-gray {
    color: #d6d5d5;
}

.font-size13 {
    font-size: 13px;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #dee2e6;
}

.table td,
.table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

/* medical scheduler end */

#pills-tabContent {
    padding-top: 0px !important;
}

/* schedule */
#calendar a {
    text-decoration: none !important;
    color: var(--mid-green) !important;
}

#calendar button {
    background-color: var(--mid-green) !important;
}

.fc .fc-button-primary {
    border-color: var(--mid-green) !important;
}

.fc-header-toolbar h2 {
    color: var(--mid-green) !important;
}

.fc-daygrid-event {
    white-space: normal !important;
    align-items: normal !important;
}

/* .fc-event-time,
.fc-event-title {

    width: 100% !important;
}

.fc-title {
} */


.fc-event {
    display: grid;

}

.desc .title {
    margin-bottom: 40px;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: BebasNeue;
    font-size: 38px;
    line-height: 1;
    color: var(--mid-green);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
    display: block;
}

.desc .title::after {
    content: "";
    width: 90px;
    height: 3px;
    background-color: var(--mid-green);
    display: block;
    margin: 16px 0 0;
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.desc .title:hover::after {
    width: 100%;
}

.tabs .tab-pane .desc {
    padding-left: 0;
    font-size: 19px;
    line-height: 1.47;
    color: var(--greyish-brown);
    text-align: justify;
    max-width: 90%;
}

.desc p {
    font-family: var(--bs-font-sans-serif);
}
