/* FONT IMPORT */


/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Local Font */

:root {
    --white: #fff;
    --black: #000;
    --primary: #0ABBB5;
    --secondary: #FFBB56;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins";
}

section {
    position: relative;
}

h1,
h2,
h3 {
    font-family: "Montserrat", sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}

.preLoader img {
    width: 100px;
}

/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 0.75rem 3.3em;
    border-radius: 50px;
    line-height: normal;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.themeBtn:hover {
    color: var(--white);
}

.themeBtn:before {
    content: "";
    position: absolute;
    background: var(--black);
    inset: 0;
    transform: scale(0);
    transition: 0.5s ease;
    z-index: -1;
    transform-origin: bottom;
}

.themeBtn:hover:before {
    transform: scale(1);
}


/* !GLOBAL CSS */


/* NAV HEADER CSS */

header {
    padding: 1.25rem 0;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

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

.navbar-nav {
    align-items: center;
    gap: 2.8rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 0.9375rem;
    color: #828282;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}

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


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.mainSlider {
    height: 950px;
}

.slideOne:before {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, #00000000, #000000);
    opacity: 39%;
    width: 100%;
    height: 50%;
    bottom: 0;
}

.mainSlider .swiper-container {
    width: 100%;
    height: 950px;
    overflow: hidden;
}

.mainSlider .swiper-slide {
    position: relative;
    width: 100%;
    height: 950px;
}

.slideOne {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    z-index: 222;
    justify-content: end;
    inset: 0;
    padding-bottom: 120px;
}

.slideOne span {
    color: var(--white);
    font-size: 1.625rem;
    font-weight: 500;
    transition: all .4s ease;
}

.slideOne h1 {
    color: var(--white);
    font-size: 4.375rem;
    font-weight: bold;
    transition: all .4s ease;
}

.slideOne p {
    color: var(--white);
    font-style: italic;
    margin-bottom: 1.25rem;
}

.themeBtn1 {
    font-size: 1rem;
    background: var(--secondary);
}

.mainSlider__logo {
    width: 200px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.mainSlider .swiper-slide-active .slideOne :is(h1, .mainSlider__logo) {
    animation: moveDown 0.8s ease-in forwards;
}

.mainSlider .swiper-slide-active .slideOne span {
    animation: moveDown 0.6s ease-in forwards;
}

.mainSlider .swiper-slide-active .slideOne p {
    animation: moveDown 1s ease-in forwards;
    animation-delay: 1s;
}

.mainSlider .swiper-slide-active .slideOne .themeBtn {
    animation: moveDown 1s ease-in forwards;
    animation-delay: 1s;
}

@keyframes moveDown {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/*.background[data-item="one"] {*/
/*    background: url(../images/mainBan.webp)center/cover;*/
/*}*/

/*.background[data-item="two"] {*/
/*    background: url(../images/mainBan.webp)center/cover;*/
/*}*/

/*.background[data-item="three"] {*/
/*    background: url(../images/mainBan.webp)center/cover;*/
/*}*/

.background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    clip-path: circle(5%);
    overflow: hidden;
    opacity: 0;
    z-index: 1;
}

.animation {
    animation: resizeClipPath 3s ease-in-out forwards;
}

@keyframes resizeClipPath {
    0% {
        clip-path: circle(5%);
        opacity: 0;
    }

    100% {
        clip-path: circle(71%);
        opacity: 1;
    }
}

.mainSlider .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: var(--primary);
    border-radius: 50%;
    transition: all 0.6s ease-in-out;
    opacity: 1;
}

.mainSlider .swiper-pagination-bullet-active {
    height: 32px;
    background: var(--secondary);
    border-radius: 14px;
}


/* !MAIN HERO SLIDER CSS */


/* About Sec Css Start */

.aboutSec {
    padding: 5.625rem 0;
}

.aboutImg img {
    border-radius: 10px;
}

.secHeading {
    font-size: 3.125rem;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
}

.aboutContent p {
    font-size: 1.25rem;
    color: #828282;
    line-height: 1.8;
}

.yearBox {
    background: var(--primary);
    width: 180px;
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.yearBox:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 100%;
    height: 100%;
    opacity: 50%;
    z-index: -1;
    border-radius: 10px;
    right: -10px;
    bottom: -10px;
}

.yearBox h3 {
    font-weight: 500;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.yearBox h4 {
    color: var(--white);
    font-size: 1.5625rem;
}

.yearWraps h5 {
    font-size: 1.625rem;
    color: var(--secondary);
}

.yearWraps p {
    font-size: 1rem;
    margin: 0;
}

.yearWraps {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.missionText {
    flex: 1;
}


/* About Sec Css End */


/* Service Sec Css Start */

.serviceSec {
    padding: 6.25rem 0;
    background: #EFEFEF url(../images/serviceBg.webp)center/cover;
}

.serviceWrap figure img {
    border-radius: 10px;
}

.serviceContent {
    margin-top: -11rem;
    position: relative;
}

.serviceIcon {
    background: var(--secondary);
    width: 148px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin: auto;
    margin-bottom: -5rem;
    z-index: 1;
    position: relative;
}

.serviceWrap:hover .srvBox {
    background: var(--primary);
}

.srvBox {
    background: var(--white);
    border-radius: 10px;
    text-align: center;
    position: relative;
    width: 95%;
    margin: auto;
    padding-top: 5rem;
    transition: 0.5s ease;
}

.serviceContent h3 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--black);
    padding: 0.625rem 0 0.75rem 0;
    transition: 0.5s ease;
}

.serviceContent p {
    color: #707070;
    line-height: 1.75;
    width: 88%;
    margin: auto;
    transition: 0.5s ease;
    margin-top: -1rem;
}

.serviceWrap:hover .serviceContent h3,
.serviceWrap:hover .serviceContent p {
    color: var(--white);
}

.serviceContent a {
    background: var(--white);
    border: 2px solid var(--secondary);
    width: 66px;
    height: auto;
    display: grid;
    place-items: center;
    border-radius: 50px;
    aspect-ratio: 1;
    color: var(--secondary);
    font-size: 2rem;
    margin: auto;
    transform: translateY(2rem);
}


/* Service Sec Css End */


/* Shine Sec Css Start */

.shineSec {
    padding: 6.25rem 0;
}

.shineWrap {
    position: relative;
}

.shineWrap figure img {
    border-radius: 10px;
}

.youtubeBtn {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    margin: auto;
    outline: unset;
}

.shineSlider {
    margin-top: 2rem;
}


/* Shine Sec Css End */


/* Pharmacy Sec Css Start */

.pharmacySec {
    padding: 2.5rem 0 5.625rem 0;
}

.pharmacyContent span {
    color: var(--secondary);
    font-weight: 500;
    font-size: 1.625rem;
}

.pharmacyContent p {
    font-size: 1.125rem;
    color: #707070;
}

.pharmacyBox h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--black);
}

.pharmacyBox {
    background: #E6F8F8;
    padding: 1.5625rem 1.5625rem;
    margin-bottom: 1rem;
}

.pharmacyBox p {
    line-height: 1.8;
    margin: 0;
}

.pharmacyContent .themeBtn {
    padding: 0.75rem 2.5em;
}


/* Pharmacy Sec Css End */


/* Blog Sec Css Start */

.blogSec {
    padding-bottom: 5.9375rem;
}

.blogWrap {
    position: relative;
    margin-top: 2rem;
}

.blogWrap figure img {
    border-radius: 10px 10px 0 0;
}

.blogBox {
    background: var(--white);
    box-shadow: 0 4px 9px rgb(126 126 126 / 10%);
    border-radius: 0 0 10px 10px;
}

.blogWrap:hover .blogDate {
    background: var(--secondary);
}

.blogDate {
    text-align: center;
    background: var(--primary);
    width: 95px;
    height: auto;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    bottom: 37%;
    right: 0;
    transition: 0.5s ease;
}

.blogDate h4 {
    font-size: 3.3125rem;
    font-weight: 600;
    margin: 0;
    line-height: 1;
    color: var(--white);
}

.blogDate span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}

.blogContent h3 {
    font-size: 1.5rem;
    color: var(--black);
}

.blogContent p {
    color: #828282;
    font-size: 0.875rem;
    line-height: 2;
    margin: 0;
}

.blogContent {
    padding: 1.4375rem 1.4375rem;
}

.blogIcons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgb(26 106 172 / 50%);
    padding: 0.9375rem 1.25rem;
}

.blogIcons ul {
    display: flex;
    gap: 0.8125rem;
}

.blogIcons ul li a {
    background: #EFEFEF;
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--black);
}

.blogIcons ul li a:hover {
    background: var(--primary);
    color: var(--white);
}

.blogIcons a {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary);
}


/* Blog Sec Css End */


/* Newsletter Sec Css Start */

.newsSec {
    background: var(--primary);
    padding: 1.875rem 0;
}

.newsHeading {
    margin-left: 3rem;
}

.newsForm {
    display: flex;
    align-items: center;
    position: relative;
}

.newsForm input {
    border: unset;
    border-radius: 50px;
    height: 62px;
    outline: unset;
    box-shadow: unset;
    padding-left: 1.75rem;
}

.newsForm input::placeholder {
    color: #707070;
}

.newsForm .themeBtn {
    background: var(--secondary);
    border: unset;
    outline: unset;
    position: absolute;
    right: 0;
    padding: 1.125rem 1.5em;
    border-radius: 0 50px 50px 0;
}


/* Newsletter Sec Css End */


/* Footer Css Start */

footer {
    background: var(--black);
    padding-top: 6.25rem;
}

.footLogo p {
    color: var(--white);
    line-height: 2;
    font-size: 0.875rem;
    margin: 0.625rem 0 0 0;
}

footer h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
}

footer ul li a {
    color: var(--white);
}

footer ul li a:hover {
    color: var(--primary);
}

.links li+li {
    margin-top: 1rem;
}

.links li a {
    text-transform: uppercase;
}

.contactLinks li div {
    color: var(--white);
    font-size: 1.375rem;
}

.contactLinks li {
    display: flex;
    gap: 0.8125rem;
}

.contactLinks li a {
    display: grid;
}

.contactLinks li a span {
    font-weight: 500;
    text-transform: uppercase;
}

.contactLinks li+li {
    margin-top: 3rem;
}

.footForm input {
    height: 53px;
    width: 100%;
    border-radius: 50px;
    padding-left: 1.5rem;
    border: unset;
    outline: unset;
    box-shadow: unset;
    font-size: 0.875rem;
}

.footForm .themeBtn {
    font-size: 1rem;
    text-transform: capitalize;
    outline: unset;
    border: unset;
    width: 100%;
    margin-top: 1.25rem;
}

.copyRight {
    border-top: 2px solid rgb(255 255 255 / 20%);
    margin-top: 3.125rem;
    padding: 1.5rem 0;
}


/* Footer Css End */

.reveal {
    visibility: hidden;
    position: relative;
    overflow: hidden;
}

/* inner pages css start */

.inner-banner:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 523.06px;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%), #000000);
    opacity: 39%;
}

.inner-banner h2 {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 3.125rem;
    color: var(--white);
    font-weight: bold;
}

.aboutContent .mision-para {
    font-size: 1rem;
    margin: 2.5rem 0 0;
    line-height: 1.875rem;
}

.aboutContent.programpg-content .secHeading {
    font-weight: 600;
}

.aboutContent.programpg-content p {
    font-size: 1rem;
    line-height: 1.6875rem;
    margin: 0 0 1.3rem;
}

.praogram-page {
    padding: 5rem 0;
}

.praogram-page .row+.row {
    margin-top: 6rem;
}

.praogram-page.consulting-page .row+.row {
    margin-top: 4rem;
}

.membership-card {
    border: 1px solid #707070;
    text-align: center;
    border-radius: 30px;
    padding: 2.5rem 3rem;
}

.membership-card h4 {
    font-size: 1.25rem;
    color: #707070;
    font-weight: bold;
    margin: 0 0 1rem;
    line-height: 1.875rem;
}

.membership-card h5 {
    font-size: 2.875rem;
    color: #707070;
    font-weight: bold;
    margin: 0 0 2rem;
}

.membership-card h5 small {
    font-size: 0.9375rem;
    display: block;
    font-weight: 500;
    margin: 10px 0 0;
}

.membership-card p {
    font-size: 14px;
    color: #707070;
    line-height: 1.3125rem;
    margin: 0 0 1.3rem;
}

.membership-card ul li {
    font-size: 1rem;
    color: #707070;
    font-weight: 400;
    list-style: disc;
    line-height: 1.5625rem;
}

.membership-card ul li+li {
    margin-top: 1.2rem;
}

.membership-card ul {
    margin-bottom: 2rem;
}

p.feature-para {
    text-align: center;
    margin: 2.5rem 0 0;
    font-size: 1.5625rem;
    color: #707070;
}

.membership-page {
    padding: 5rem 0;
}

.shine-box {
    box-shadow: 15px 15px 48px rgb(119 119 119 / 9%);
    background: var(--white);
    border-radius: 50px;
    padding: 2rem 7rem;
}

.newsletter-page {
    padding: 6rem 0;
}

.newsletter-content h2 {
    font-size: 1.5rem;
    color: var(--black);
    margin: 0 0 2rem;
}

.newsleter-form input {
    width: 85%;
    height: 60px;
    background: rgb(174 165 165 / 10%);
    border: 0;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    padding: 0 1.5rem;
    margin-bottom: 1.3rem;
}

.newsleter-form .themeBtn {
    width: 85%;
    border: 0;
    text-transform: capitalize;
}

.contact-page {
    padding: 5rem 0;
}

.contact-form input {
    border: 0;
    border-bottom: 1px solid #707070;
    font-size: 1.5625rem;
    color: #000000;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    padding-bottom: 2rem;
    width: 100%;
    margin-bottom: 6rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--black);
}

.contact-form textarea {
    border: 0;
    border-bottom: 1px solid #707070;
    font-size: 1.5625rem;
    color: #000000;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    padding-bottom: 4rem;
    width: 100%;
    margin-bottom: 3rem;
}

.contact-form .themeBtn {
    border: 0;
    margin: auto;
    display: table;
}

.blogSec.blog-inner {
    padding: 5rem 0 5rem;
}

.blogSec.blog-inner .blogWrap {
    margin-top: 3.5rem;
}

/* Calender */
.calender-section {
    padding: 5rem 0;
}

.evo-calendar,
.calendar-inner,
.calendar-events {
    background-color: var(--secondary);
    border-radius: 25px;
    border: 0;
}

.calendar-sidebar {
    background-color: var(--primary);
    box-shadow: 15px 0 20px 0 rgba(0, 0, 0, 0.12);
}

.calendar-sidebar>span#sidebarToggler {
    box-shadow: 0px 3px 10px 0 rgba(0, 0, 0, 0.12);
}

.sidebar-hide .calendar-inner {
    width: calc(100% - 0px);
}

.calender-section button.icon-button>span.bars::before,
.calender-section button.icon-button>span.bars::after {
    width: 60%;
    height: 4px;
    border-radius: 4px;
}

.calender-section button.icon-button>span.bars {
    width: 100%;
    height: 4px;
    border-radius: 4px;
}

.calendar-sidebar>.calendar-months>li.active-month {
    background: var(--secondary) !important;
}

.day.calendar-active.calendar-today,
tr.calendar-body .calendar-day .day.calendar-active,
tr.calendar-body .calendar-day .day.calendar-active:hover {
    background: #f7910e !important;
    border: unset !important;
    color: var(--black) !important;
}

tr.calendar-body .calendar-day .day {
    color: var(--black);
    font-size: 22px;
}

tr.calendar-header .calendar-header-day {
    font-size: 30px;
    color: var(--black);
    font-family: "Bright";
}

tr.calendar-body .calendar-day .day.calendar-today:hover {
    background: var(--primary);
}

/* inner pages css end */
